Skip to content

Commit 0df03ef

Browse files
authored
test(NODE-5035): skip oidc tests (#3573)
1 parent 66436e2 commit 0df03ef

File tree

2 files changed

+21
-39
lines changed

2 files changed

+21
-39
lines changed

.evergreen/config.yml

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1433,22 +1433,6 @@ tasks:
14331433
commands:
14341434
- func: install dependencies
14351435
- func: run ldap tests
1436-
- name: test-auth-oidc
1437-
tags:
1438-
- latest
1439-
- replica_set
1440-
- oidc
1441-
commands:
1442-
- func: install dependencies
1443-
- func: bootstrap oidc
1444-
- func: bootstrap mongo-orchestration
1445-
vars:
1446-
VERSION: latest
1447-
TOPOLOGY: replica_set
1448-
AUTH: auth
1449-
ORCHESTRATION_FILE: auth-oidc.json
1450-
- func: setup oidc roles
1451-
- func: run oidc tests aws
14521436
- name: test-socks5
14531437
tags: []
14541438
commands:
@@ -3074,7 +3058,6 @@ buildvariants:
30743058
- test-latest-load-balanced
30753059
- test-auth-kerberos
30763060
- test-auth-ldap
3077-
- test-auth-oidc
30783061
- test-socks5
30793062
- test-socks5-csfle
30803063
- test-socks5-tls
@@ -3124,7 +3107,6 @@ buildvariants:
31243107
- test-latest-load-balanced
31253108
- test-auth-kerberos
31263109
- test-auth-ldap
3127-
- test-auth-oidc
31283110
- test-socks5
31293111
- test-socks5-csfle
31303112
- test-socks5-tls
@@ -3172,7 +3154,6 @@ buildvariants:
31723154
- test-latest-load-balanced
31733155
- test-auth-kerberos
31743156
- test-auth-ldap
3175-
- test-auth-oidc
31763157
- test-socks5
31773158
- test-socks5-csfle
31783159
- test-socks5-tls
@@ -3219,7 +3200,6 @@ buildvariants:
32193200
- test-6.0-load-balanced
32203201
- test-latest-load-balanced
32213202
- test-auth-ldap
3222-
- test-auth-oidc
32233203
- test-socks5-csfle
32243204
- test-socks5-tls
32253205
- test-tls-support-latest

.evergreen/generate_evergreen_tasks.js

Lines changed: 21 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,27 @@ BASE_TASKS.push({
100100
]
101101
});
102102

103+
// TODO(NODE-5035): Bring back when implementing.
104+
// {
105+
// name: 'test-auth-oidc',
106+
// tags: ['latest', 'replica_set', 'oidc'],
107+
// commands: [
108+
// { func: 'install dependencies' },
109+
// { func: 'bootstrap oidc' },
110+
// {
111+
// func: 'bootstrap mongo-orchestration',
112+
// vars: {
113+
// VERSION: 'latest',
114+
// TOPOLOGY: 'replica_set',
115+
// AUTH: 'auth',
116+
// ORCHESTRATION_FILE: 'auth-oidc.json'
117+
// }
118+
// },
119+
// { func: 'setup oidc roles' },
120+
// { func: 'run oidc tests aws' }
121+
// ]
122+
// }
123+
103124
// manually added tasks
104125
TASKS.push(
105126
...[
@@ -183,25 +204,6 @@ TASKS.push(
183204
tags: ['auth', 'ldap'],
184205
commands: [{ func: 'install dependencies' }, { func: 'run ldap tests' }]
185206
},
186-
{
187-
name: 'test-auth-oidc',
188-
tags: ['latest', 'replica_set', 'oidc'],
189-
commands: [
190-
{ func: 'install dependencies' },
191-
{ func: 'bootstrap oidc' },
192-
{
193-
func: 'bootstrap mongo-orchestration',
194-
vars: {
195-
VERSION: 'latest',
196-
TOPOLOGY: 'replica_set',
197-
AUTH: 'auth',
198-
ORCHESTRATION_FILE: 'auth-oidc.json'
199-
}
200-
},
201-
{ func: 'setup oidc roles' },
202-
{ func: 'run oidc tests aws' }
203-
]
204-
},
205207
{
206208
name: 'test-socks5',
207209
tags: [],

0 commit comments

Comments
 (0)