Skip to content

Commit 6a52bed

Browse files
committed
test(NODE-6944): unskip ldap and kerberos tests
1 parent 966a4e4 commit 6a52bed

File tree

2 files changed

+45
-17
lines changed

2 files changed

+45
-17
lines changed

.evergreen/config.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1681,6 +1681,25 @@ tasks:
16811681
- func: start-load-balancer
16821682
- func: run-lb-tests
16831683
- func: stop-load-balancer
1684+
- name: test-auth-kerberos
1685+
tags:
1686+
- auth
1687+
- kerberos
1688+
commands:
1689+
- command: expansions.update
1690+
type: setup
1691+
params:
1692+
updates:
1693+
- {key: NATIVE, value: 'true'}
1694+
- func: install dependencies
1695+
- func: run kerberos tests
1696+
- name: test-auth-ldap
1697+
tags:
1698+
- auth
1699+
- ldap
1700+
commands:
1701+
- func: install dependencies
1702+
- func: run ldap tests
16841703
- name: test-socks5
16851704
tags: []
16861705
commands:
@@ -3058,6 +3077,8 @@ buildvariants:
30583077
- test-8.0-load-balanced
30593078
- test-rapid-load-balanced
30603079
- test-latest-load-balanced
3080+
- test-auth-kerberos
3081+
- test-auth-ldap
30613082
- test-socks5
30623083
- test-socks5-csfle
30633084
- test-socks5-tls
@@ -3113,6 +3134,8 @@ buildvariants:
31133134
- test-8.0-load-balanced
31143135
- test-rapid-load-balanced
31153136
- test-latest-load-balanced
3137+
- test-auth-kerberos
3138+
- test-auth-ldap
31163139
- test-socks5
31173140
- test-socks5-csfle
31183141
- test-socks5-tls
@@ -3168,6 +3191,8 @@ buildvariants:
31683191
- test-8.0-load-balanced
31693192
- test-rapid-load-balanced
31703193
- test-latest-load-balanced
3194+
- test-auth-kerberos
3195+
- test-auth-ldap
31713196
- test-socks5
31723197
- test-socks5-csfle
31733198
- test-socks5-tls
@@ -3223,6 +3248,8 @@ buildvariants:
32233248
- test-8.0-load-balanced
32243249
- test-rapid-load-balanced
32253250
- test-latest-load-balanced
3251+
- test-auth-kerberos
3252+
- test-auth-ldap
32263253
- test-socks5
32273254
- test-socks5-csfle
32283255
- test-socks5-tls
@@ -3276,6 +3303,8 @@ buildvariants:
32763303
- test-8.0-load-balanced
32773304
- test-rapid-load-balanced
32783305
- test-latest-load-balanced
3306+
- test-auth-kerberos
3307+
- test-auth-ldap
32793308
- test-socks5-csfle
32803309
- test-socks5-tls
32813310
- test-snappy-compression

.evergreen/generate_evergreen_tasks.js

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -151,23 +151,22 @@ TASKS.push(
151151
{ func: 'stop-load-balancer' }
152152
]
153153
})),
154-
// TODO(NODE-6944): Unskip when devprod updates ldaptest servers.
155-
// {
156-
// name: 'test-auth-kerberos',
157-
// tags: ['auth', 'kerberos'],
158-
// commands: [
159-
// updateExpansions({
160-
// NATIVE: 'true'
161-
// }),
162-
// { func: 'install dependencies' },
163-
// { func: 'run kerberos tests' }
164-
// ]
165-
// },
166-
// {
167-
// name: 'test-auth-ldap',
168-
// tags: ['auth', 'ldap'],
169-
// commands: [{ func: 'install dependencies' }, { func: 'run ldap tests' }]
170-
// },
154+
{
155+
name: 'test-auth-kerberos',
156+
tags: ['auth', 'kerberos'],
157+
commands: [
158+
updateExpansions({
159+
NATIVE: 'true'
160+
}),
161+
{ func: 'install dependencies' },
162+
{ func: 'run kerberos tests' }
163+
]
164+
},
165+
{
166+
name: 'test-auth-ldap',
167+
tags: ['auth', 'ldap'],
168+
commands: [{ func: 'install dependencies' }, { func: 'run ldap tests' }]
169+
},
171170
{
172171
name: 'test-socks5',
173172
tags: [],

0 commit comments

Comments
 (0)