Skip to content

Commit

Permalink
test(NODE-5035): skip oidc tests (#3573)
Browse files Browse the repository at this point in the history
  • Loading branch information
durran authored Feb 16, 2023
1 parent 66436e2 commit 0df03ef
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 39 deletions.
20 changes: 0 additions & 20 deletions .evergreen/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1433,22 +1433,6 @@ tasks:
commands:
- func: install dependencies
- func: run ldap tests
- name: test-auth-oidc
tags:
- latest
- replica_set
- oidc
commands:
- func: install dependencies
- func: bootstrap oidc
- func: bootstrap mongo-orchestration
vars:
VERSION: latest
TOPOLOGY: replica_set
AUTH: auth
ORCHESTRATION_FILE: auth-oidc.json
- func: setup oidc roles
- func: run oidc tests aws
- name: test-socks5
tags: []
commands:
Expand Down Expand Up @@ -3074,7 +3058,6 @@ buildvariants:
- test-latest-load-balanced
- test-auth-kerberos
- test-auth-ldap
- test-auth-oidc
- test-socks5
- test-socks5-csfle
- test-socks5-tls
Expand Down Expand Up @@ -3124,7 +3107,6 @@ buildvariants:
- test-latest-load-balanced
- test-auth-kerberos
- test-auth-ldap
- test-auth-oidc
- test-socks5
- test-socks5-csfle
- test-socks5-tls
Expand Down Expand Up @@ -3172,7 +3154,6 @@ buildvariants:
- test-latest-load-balanced
- test-auth-kerberos
- test-auth-ldap
- test-auth-oidc
- test-socks5
- test-socks5-csfle
- test-socks5-tls
Expand Down Expand Up @@ -3219,7 +3200,6 @@ buildvariants:
- test-6.0-load-balanced
- test-latest-load-balanced
- test-auth-ldap
- test-auth-oidc
- test-socks5-csfle
- test-socks5-tls
- test-tls-support-latest
Expand Down
40 changes: 21 additions & 19 deletions .evergreen/generate_evergreen_tasks.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,27 @@ BASE_TASKS.push({
]
});

// TODO(NODE-5035): Bring back when implementing.
// {
// name: 'test-auth-oidc',
// tags: ['latest', 'replica_set', 'oidc'],
// commands: [
// { func: 'install dependencies' },
// { func: 'bootstrap oidc' },
// {
// func: 'bootstrap mongo-orchestration',
// vars: {
// VERSION: 'latest',
// TOPOLOGY: 'replica_set',
// AUTH: 'auth',
// ORCHESTRATION_FILE: 'auth-oidc.json'
// }
// },
// { func: 'setup oidc roles' },
// { func: 'run oidc tests aws' }
// ]
// }

// manually added tasks
TASKS.push(
...[
Expand Down Expand Up @@ -183,25 +204,6 @@ TASKS.push(
tags: ['auth', 'ldap'],
commands: [{ func: 'install dependencies' }, { func: 'run ldap tests' }]
},
{
name: 'test-auth-oidc',
tags: ['latest', 'replica_set', 'oidc'],
commands: [
{ func: 'install dependencies' },
{ func: 'bootstrap oidc' },
{
func: 'bootstrap mongo-orchestration',
vars: {
VERSION: 'latest',
TOPOLOGY: 'replica_set',
AUTH: 'auth',
ORCHESTRATION_FILE: 'auth-oidc.json'
}
},
{ func: 'setup oidc roles' },
{ func: 'run oidc tests aws' }
]
},
{
name: 'test-socks5',
tags: [],
Expand Down

0 comments on commit 0df03ef

Please sign in to comment.