From 5ac56a5684369e9f7c4db119eb6cf0f726e3b492 Mon Sep 17 00:00:00 2001 From: Andreas Braun Date: Wed, 17 Jul 2024 14:00:24 +0200 Subject: [PATCH] Reduce amount of evergreen config includes (#1612) --- .evergreen/config.yml | 50 +- .evergreen/config/generate-config.php | 45 +- ...-libmongoc-8.3.yml => build-libmongoc.yml} | 2 +- .../config/generated/build/build-php-7.4.yml | 9 - .../config/generated/build/build-php-8.0.yml | 9 - .../config/generated/build/build-php-8.1.yml | 9 - .../config/generated/build/build-php-8.2.yml | 9 - .../config/generated/build/build-php-8.3.yml | 9 - .../config/generated/build/build-php.yml | 37 + .../generated/test-variant/full-php-7.4.yml | 57 - .../generated/test-variant/full-php-8.0.yml | 57 - .../generated/test-variant/full-php-8.1.yml | 57 - .../generated/test-variant/full-php-8.2.yml | 57 - .../generated/test-variant/full-php-8.3.yml | 57 - .../config/generated/test-variant/full.yml | 277 ++ .../generated/test-variant/latest-php-8.3.yml | 57 - .../{libmongoc-php-8.3.yml => libmongoc.yml} | 0 .../generated/test/load-balanced-5.0.yml | 16 - .../generated/test/load-balanced-6.0.yml | 16 - .../generated/test/load-balanced-7.0.yml | 16 - .../generated/test/load-balanced-latest.yml | 16 - .../generated/test/load-balanced-rapid.yml | 16 - .../config/generated/test/load-balanced.yml | 72 + .../config/generated/test/local-3.6.yml | 60 - .../config/generated/test/local-4.0.yml | 60 - .../config/generated/test/local-4.2.yml | 60 - .../config/generated/test/local-4.4.yml | 60 - .../config/generated/test/local-5.0.yml | 60 - .../config/generated/test/local-6.0.yml | 60 - .../config/generated/test/local-7.0.yml | 60 - .../config/generated/test/local-latest.yml | 60 - .../config/generated/test/local-rapid.yml | 60 - .evergreen/config/generated/test/local.yml | 524 ++++ .evergreen/config/generated/test/ocsp-4.4.yml | 413 --- .evergreen/config/generated/test/ocsp-5.0.yml | 413 --- .evergreen/config/generated/test/ocsp-6.0.yml | 413 --- .evergreen/config/generated/test/ocsp-7.0.yml | 413 --- .../config/generated/test/ocsp-latest.yml | 413 --- .../config/generated/test/ocsp-rapid.yml | 413 --- .evergreen/config/generated/test/ocsp.yml | 2468 +++++++++++++++++ .../test/require-api-version-5.0.yml | 14 - .../test/require-api-version-6.0.yml | 14 - .../test/require-api-version-7.0.yml | 14 - .../test/require-api-version-latest.yml | 14 - .../test/require-api-version-rapid.yml | 14 - .../generated/test/require-api-version.yml | 62 + .../generated/test/skip-crypt-shared-6.0.yml | 12 - .../generated/test/skip-crypt-shared-7.0.yml | 12 - .../test/skip-crypt-shared-latest.yml | 12 - .../test/skip-crypt-shared-rapid.yml | 12 - .../generated/test/skip-crypt-shared.yml | 42 + .../templates/build/build-libmongoc.yml | 1 - .../config/templates/build/build-php.yml | 1 - .../config/templates/test-variant/full.yml | 1 - .../templates/test-variant/libmongoc.yml | 1 - .../config/templates/test/load-balanced.yml | 1 - .evergreen/config/templates/test/local.yml | 1 - .evergreen/config/templates/test/ocsp.yml | 1 - .../templates/test/require-api-version.yml | 1 - .../templates/test/skip-crypt-shared.yml | 1 - 60 files changed, 3517 insertions(+), 3674 deletions(-) rename .evergreen/config/generated/build/{build-libmongoc-8.3.yml => build-libmongoc.yml} (100%) delete mode 100644 .evergreen/config/generated/build/build-php-7.4.yml delete mode 100644 .evergreen/config/generated/build/build-php-8.0.yml delete mode 100644 .evergreen/config/generated/build/build-php-8.1.yml delete mode 100644 .evergreen/config/generated/build/build-php-8.2.yml delete mode 100644 .evergreen/config/generated/build/build-php-8.3.yml create mode 100644 .evergreen/config/generated/build/build-php.yml delete mode 100644 .evergreen/config/generated/test-variant/full-php-7.4.yml delete mode 100644 .evergreen/config/generated/test-variant/full-php-8.0.yml delete mode 100644 .evergreen/config/generated/test-variant/full-php-8.1.yml delete mode 100644 .evergreen/config/generated/test-variant/full-php-8.2.yml delete mode 100644 .evergreen/config/generated/test-variant/full-php-8.3.yml create mode 100644 .evergreen/config/generated/test-variant/full.yml delete mode 100644 .evergreen/config/generated/test-variant/latest-php-8.3.yml rename .evergreen/config/generated/test-variant/{libmongoc-php-8.3.yml => libmongoc.yml} (100%) delete mode 100644 .evergreen/config/generated/test/load-balanced-5.0.yml delete mode 100644 .evergreen/config/generated/test/load-balanced-6.0.yml delete mode 100644 .evergreen/config/generated/test/load-balanced-7.0.yml delete mode 100644 .evergreen/config/generated/test/load-balanced-latest.yml delete mode 100644 .evergreen/config/generated/test/load-balanced-rapid.yml create mode 100644 .evergreen/config/generated/test/load-balanced.yml delete mode 100644 .evergreen/config/generated/test/local-3.6.yml delete mode 100644 .evergreen/config/generated/test/local-4.0.yml delete mode 100644 .evergreen/config/generated/test/local-4.2.yml delete mode 100644 .evergreen/config/generated/test/local-4.4.yml delete mode 100644 .evergreen/config/generated/test/local-5.0.yml delete mode 100644 .evergreen/config/generated/test/local-6.0.yml delete mode 100644 .evergreen/config/generated/test/local-7.0.yml delete mode 100644 .evergreen/config/generated/test/local-latest.yml delete mode 100644 .evergreen/config/generated/test/local-rapid.yml create mode 100644 .evergreen/config/generated/test/local.yml delete mode 100644 .evergreen/config/generated/test/ocsp-4.4.yml delete mode 100644 .evergreen/config/generated/test/ocsp-5.0.yml delete mode 100644 .evergreen/config/generated/test/ocsp-6.0.yml delete mode 100644 .evergreen/config/generated/test/ocsp-7.0.yml delete mode 100644 .evergreen/config/generated/test/ocsp-latest.yml delete mode 100644 .evergreen/config/generated/test/ocsp-rapid.yml create mode 100644 .evergreen/config/generated/test/ocsp.yml delete mode 100644 .evergreen/config/generated/test/require-api-version-5.0.yml delete mode 100644 .evergreen/config/generated/test/require-api-version-6.0.yml delete mode 100644 .evergreen/config/generated/test/require-api-version-7.0.yml delete mode 100644 .evergreen/config/generated/test/require-api-version-latest.yml delete mode 100644 .evergreen/config/generated/test/require-api-version-rapid.yml create mode 100644 .evergreen/config/generated/test/require-api-version.yml delete mode 100644 .evergreen/config/generated/test/skip-crypt-shared-6.0.yml delete mode 100644 .evergreen/config/generated/test/skip-crypt-shared-7.0.yml delete mode 100644 .evergreen/config/generated/test/skip-crypt-shared-latest.yml delete mode 100644 .evergreen/config/generated/test/skip-crypt-shared-rapid.yml create mode 100644 .evergreen/config/generated/test/skip-crypt-shared.yml diff --git a/.evergreen/config.yml b/.evergreen/config.yml index bc95993f5..ebf197f4c 100644 --- a/.evergreen/config.yml +++ b/.evergreen/config.yml @@ -67,44 +67,12 @@ include: - filename: .evergreen/config/test-tasks.yml # Automatically generated files - - filename: .evergreen/config/generated/build/build-php-8.3.yml - - filename: .evergreen/config/generated/build/build-php-8.2.yml - - filename: .evergreen/config/generated/build/build-php-8.1.yml - - filename: .evergreen/config/generated/build/build-php-8.0.yml - - filename: .evergreen/config/generated/build/build-php-7.4.yml - - filename: .evergreen/config/generated/build/build-libmongoc-8.3.yml - - filename: .evergreen/config/generated/test/local-latest.yml - - filename: .evergreen/config/generated/test/local-rapid.yml - - filename: .evergreen/config/generated/test/local-7.0.yml - - filename: .evergreen/config/generated/test/local-6.0.yml - - filename: .evergreen/config/generated/test/local-5.0.yml - - filename: .evergreen/config/generated/test/local-4.4.yml - - filename: .evergreen/config/generated/test/local-4.2.yml - - filename: .evergreen/config/generated/test/local-4.0.yml - - filename: .evergreen/config/generated/test/local-3.6.yml - - filename: .evergreen/config/generated/test/load-balanced-latest.yml - - filename: .evergreen/config/generated/test/load-balanced-rapid.yml - - filename: .evergreen/config/generated/test/load-balanced-7.0.yml - - filename: .evergreen/config/generated/test/load-balanced-6.0.yml - - filename: .evergreen/config/generated/test/load-balanced-5.0.yml - - filename: .evergreen/config/generated/test/ocsp-latest.yml - - filename: .evergreen/config/generated/test/ocsp-rapid.yml - - filename: .evergreen/config/generated/test/ocsp-7.0.yml - - filename: .evergreen/config/generated/test/ocsp-6.0.yml - - filename: .evergreen/config/generated/test/ocsp-5.0.yml - - filename: .evergreen/config/generated/test/ocsp-4.4.yml - - filename: .evergreen/config/generated/test/require-api-version-latest.yml - - filename: .evergreen/config/generated/test/require-api-version-rapid.yml - - filename: .evergreen/config/generated/test/require-api-version-7.0.yml - - filename: .evergreen/config/generated/test/require-api-version-6.0.yml - - filename: .evergreen/config/generated/test/require-api-version-5.0.yml - - filename: .evergreen/config/generated/test/skip-crypt-shared-latest.yml - - filename: .evergreen/config/generated/test/skip-crypt-shared-rapid.yml - - filename: .evergreen/config/generated/test/skip-crypt-shared-7.0.yml - - filename: .evergreen/config/generated/test/skip-crypt-shared-6.0.yml - - filename: .evergreen/config/generated/test-variant/full-php-8.3.yml - - filename: .evergreen/config/generated/test-variant/full-php-8.2.yml - - filename: .evergreen/config/generated/test-variant/full-php-8.1.yml - - filename: .evergreen/config/generated/test-variant/full-php-8.0.yml - - filename: .evergreen/config/generated/test-variant/full-php-7.4.yml - - filename: .evergreen/config/generated/test-variant/libmongoc-php-8.3.yml + - filename: .evergreen/config/generated/build/build-php.yml + - filename: .evergreen/config/generated/build/build-libmongoc.yml + - filename: .evergreen/config/generated/test/local.yml + - filename: .evergreen/config/generated/test/load-balanced.yml + - filename: .evergreen/config/generated/test/ocsp.yml + - filename: .evergreen/config/generated/test/require-api-version.yml + - filename: .evergreen/config/generated/test/skip-crypt-shared.yml + - filename: .evergreen/config/generated/test-variant/full.yml + - filename: .evergreen/config/generated/test-variant/libmongoc.yml diff --git a/.evergreen/config/generate-config.php b/.evergreen/config/generate-config.php index c595bc3b1..d4c084438 100644 --- a/.evergreen/config/generate-config.php +++ b/.evergreen/config/generate-config.php @@ -54,22 +54,22 @@ $allFiles = []; // Build tasks -$allFiles[] = generateConfigs('build', 'phpVersion', 'build-php.yml', 'build-php-%s', $supportedPhpVersions); -$allFiles[] = generateConfigs('build', 'phpVersion', 'build-libmongoc.yml', 'build-libmongoc-%s', $libmongocBuildPhpVersions); +$allFiles[] = generateConfigs('tasks', 'build', 'phpVersion', 'build-php.yml', $supportedPhpVersions); +$allFiles[] = generateConfigs('tasks', 'build', 'phpVersion', 'build-libmongoc.yml', $libmongocBuildPhpVersions); // Test tasks -$allFiles[] = generateConfigs('test', 'mongodbVersion', 'local.yml', 'local-%s', $localServerVersions); -$allFiles[] = generateConfigs('test', 'mongodbVersion', 'load-balanced.yml', 'load-balanced-%s', $loadBalancedServerVersions); -$allFiles[] = generateConfigs('test', 'mongodbVersion', 'ocsp.yml', 'ocsp-%s', $ocspServerVersions); -$allFiles[] = generateConfigs('test', 'mongodbVersion', 'require-api-version.yml', 'require-api-version-%s', $requireApiServerVersions); -$allFiles[] = generateConfigs('test', 'mongodbVersion', 'skip-crypt-shared.yml', 'skip-crypt-shared-%s', $skipCryptSharedServerVersions); +$allFiles[] = generateConfigs('tasks', 'test', 'mongodbVersion', 'local.yml', $localServerVersions); +$allFiles[] = generateConfigs('tasks', 'test', 'mongodbVersion', 'load-balanced.yml', $loadBalancedServerVersions); +$allFiles[] = generateConfigs('tasks', 'test', 'mongodbVersion', 'ocsp.yml', $ocspServerVersions); +$allFiles[] = generateConfigs('tasks', 'test', 'mongodbVersion', 'require-api-version.yml', $requireApiServerVersions); +$allFiles[] = generateConfigs('tasks', 'test', 'mongodbVersion', 'skip-crypt-shared.yml', $skipCryptSharedServerVersions); // Test variants -$allFiles[] = generateConfigs('test-variant', 'phpVersion', 'full.yml', 'full-php-%s', $supportedPhpVersions); -$allFiles[] = generateConfigs('test-variant', 'phpVersion', 'libmongoc.yml', 'libmongoc-php-%s', [$latestPhpVersion]); +$allFiles[] = generateConfigs('buildvariants', 'test-variant', 'phpVersion', 'full.yml', $supportedPhpVersions); +$allFiles[] = generateConfigs('buildvariants', 'test-variant', 'phpVersion', 'libmongoc.yml', [$latestPhpVersion]); echo "Generated config. Use the following list to import files:\n"; -echo implode("\n", array_map('getImportConfig', array_merge(...$allFiles))) . "\n"; +echo implode("\n", array_map('getImportConfig', $allFiles)) . "\n"; function getImportConfig(string $filename): string { @@ -77,12 +77,12 @@ function getImportConfig(string $filename): string } function generateConfigs( + string $type, string $directory, string $replacementName, string $templateFile, - string $outputFormat, array $versions, -): array { +): string { $templateRelativePath = 'templates/' . $directory . '/' . $templateFile; $template = file_get_contents(__DIR__ . '/' . $templateRelativePath); $header = sprintf( @@ -90,17 +90,22 @@ function generateConfigs( $templateRelativePath ); - $files = []; + $contents = <<
$version]; +HEADER; - file_put_contents(__DIR__ . $filename, $header . "\n" . strtr($template, $replacements)); + foreach ($versions as $version) { + $contents .= strtr( + $template, + ['%' . $replacementName . '%' => $version], + ); } - return $files; + $filename = '/generated/' . $directory . '/' . $templateFile; + file_put_contents(__DIR__ . $filename, $contents); + + return '.evergreen/config' . $filename; } diff --git a/.evergreen/config/generated/build/build-libmongoc-8.3.yml b/.evergreen/config/generated/build/build-libmongoc.yml similarity index 100% rename from .evergreen/config/generated/build/build-libmongoc-8.3.yml rename to .evergreen/config/generated/build/build-libmongoc.yml index cb67c6450..1b25b6fd0 100644 --- a/.evergreen/config/generated/build/build-libmongoc-8.3.yml +++ b/.evergreen/config/generated/build/build-libmongoc.yml @@ -1,11 +1,11 @@ # This file is generated automatically - please edit the "templates/build/build-libmongoc.yml" template file instead. +tasks: # The following tasks are used to build with different libmongoc versions. # If libmongoc is not set to a stable version, disable the first two builds and only leave the last one enabled. # When updating libmongoc to a stable release, make sure all builds are enabled. # These tasks are used in the build task group "build-php-libmongoc" defined in .evergreen/config/build-task-groups.yml, # where the "max_hosts" setting must be set to the number of enabled tasks. # Last but not least, make sure the corresponding test variants are enabled in .evergreen/config/test-variants.yml -tasks: - name: "build-php-8.3-libmongoc-lowest-supported" tags: ["build-libmongoc", "php8.3"] commands: diff --git a/.evergreen/config/generated/build/build-php-7.4.yml b/.evergreen/config/generated/build/build-php-7.4.yml deleted file mode 100644 index 474502059..000000000 --- a/.evergreen/config/generated/build/build-php-7.4.yml +++ /dev/null @@ -1,9 +0,0 @@ -# This file is generated automatically - please edit the "templates/build/build-php.yml" template file instead. -tasks: - - name: "build-php-7.4" - tags: ["build", "php7.4", "pr", "tag"] - commands: - - func: "compile driver" - vars: - PHP_VERSION: "7.4" - - func: "upload build" diff --git a/.evergreen/config/generated/build/build-php-8.0.yml b/.evergreen/config/generated/build/build-php-8.0.yml deleted file mode 100644 index 1711003c8..000000000 --- a/.evergreen/config/generated/build/build-php-8.0.yml +++ /dev/null @@ -1,9 +0,0 @@ -# This file is generated automatically - please edit the "templates/build/build-php.yml" template file instead. -tasks: - - name: "build-php-8.0" - tags: ["build", "php8.0", "pr", "tag"] - commands: - - func: "compile driver" - vars: - PHP_VERSION: "8.0" - - func: "upload build" diff --git a/.evergreen/config/generated/build/build-php-8.1.yml b/.evergreen/config/generated/build/build-php-8.1.yml deleted file mode 100644 index 0cc855f23..000000000 --- a/.evergreen/config/generated/build/build-php-8.1.yml +++ /dev/null @@ -1,9 +0,0 @@ -# This file is generated automatically - please edit the "templates/build/build-php.yml" template file instead. -tasks: - - name: "build-php-8.1" - tags: ["build", "php8.1", "pr", "tag"] - commands: - - func: "compile driver" - vars: - PHP_VERSION: "8.1" - - func: "upload build" diff --git a/.evergreen/config/generated/build/build-php-8.2.yml b/.evergreen/config/generated/build/build-php-8.2.yml deleted file mode 100644 index 84e606198..000000000 --- a/.evergreen/config/generated/build/build-php-8.2.yml +++ /dev/null @@ -1,9 +0,0 @@ -# This file is generated automatically - please edit the "templates/build/build-php.yml" template file instead. -tasks: - - name: "build-php-8.2" - tags: ["build", "php8.2", "pr", "tag"] - commands: - - func: "compile driver" - vars: - PHP_VERSION: "8.2" - - func: "upload build" diff --git a/.evergreen/config/generated/build/build-php-8.3.yml b/.evergreen/config/generated/build/build-php-8.3.yml deleted file mode 100644 index 851ffc9ab..000000000 --- a/.evergreen/config/generated/build/build-php-8.3.yml +++ /dev/null @@ -1,9 +0,0 @@ -# This file is generated automatically - please edit the "templates/build/build-php.yml" template file instead. -tasks: - - name: "build-php-8.3" - tags: ["build", "php8.3", "pr", "tag"] - commands: - - func: "compile driver" - vars: - PHP_VERSION: "8.3" - - func: "upload build" diff --git a/.evergreen/config/generated/build/build-php.yml b/.evergreen/config/generated/build/build-php.yml new file mode 100644 index 000000000..127371ab4 --- /dev/null +++ b/.evergreen/config/generated/build/build-php.yml @@ -0,0 +1,37 @@ +# This file is generated automatically - please edit the "templates/build/build-php.yml" template file instead. +tasks: + - name: "build-php-8.3" + tags: ["build", "php8.3", "pr", "tag"] + commands: + - func: "compile driver" + vars: + PHP_VERSION: "8.3" + - func: "upload build" + - name: "build-php-8.2" + tags: ["build", "php8.2", "pr", "tag"] + commands: + - func: "compile driver" + vars: + PHP_VERSION: "8.2" + - func: "upload build" + - name: "build-php-8.1" + tags: ["build", "php8.1", "pr", "tag"] + commands: + - func: "compile driver" + vars: + PHP_VERSION: "8.1" + - func: "upload build" + - name: "build-php-8.0" + tags: ["build", "php8.0", "pr", "tag"] + commands: + - func: "compile driver" + vars: + PHP_VERSION: "8.0" + - func: "upload build" + - name: "build-php-7.4" + tags: ["build", "php7.4", "pr", "tag"] + commands: + - func: "compile driver" + vars: + PHP_VERSION: "7.4" + - func: "upload build" diff --git a/.evergreen/config/generated/test-variant/full-php-7.4.yml b/.evergreen/config/generated/test-variant/full-php-7.4.yml deleted file mode 100644 index 5e8230a8f..000000000 --- a/.evergreen/config/generated/test-variant/full-php-7.4.yml +++ /dev/null @@ -1,57 +0,0 @@ -# This file is generated automatically - please edit the "templates/test-variant/full.yml" template file instead. -buildvariants: - - name: test-debian11-php-7.4 - tags: ["test", "debian", "x64", "php7.4", "pr", "tag"] - display_name: "Test: Debian 11, PHP 7.4" - run_on: debian11-small - expansions: - FETCH_BUILD_VARIANT: "build-debian11" - FETCH_BUILD_TASK: "build-php-7.4" - depends_on: - - variant: "build-debian11" - name: "build-php-7.4" - tasks: - - ".standalone .local !.3.6 !.4.0 !.4.2 !.4.4 !.5.0" - - ".replicaset .local !.3.6 !.4.0 !.4.2 !.4.4 !.5.0" - - ".sharded .local !.3.6 !.4.0 !.4.2 !.4.4 !.5.0" - - ".loadbalanced .local !.3.6 !.4.0 !.4.2 !.4.4 !.5.0" - - "test-atlas-connectivity" - - ".ocsp !.4.4 !.5.0" - display_tasks: - - name: "test-ocsp-latest" - execution_tasks: - - ".ocsp .latest" - - name: "test-ocsp-rapid" - execution_tasks: - - ".ocsp .rapid" - - name: "test-ocsp-7.0" - execution_tasks: - - ".ocsp .7.0" - - name: "test-ocsp-6.0" - execution_tasks: - - ".ocsp .6.0" - - - name: test-debian92-php-7.4 - tags: ["test", "debian", "x64", "php7.4", "pr", "tag"] - display_name: "Test: Debian 9.2, PHP 7.4" - run_on: debian92-small - expansions: - FETCH_BUILD_VARIANT: "build-debian92" - FETCH_BUILD_TASK: "build-php-7.4" - depends_on: - - variant: "build-debian92" - name: "build-php-7.4" - tasks: - # Remember to add new major versions here as they are released - - ".standalone .local !.6.0 !.7.0 !.rapid !.latest" - - ".replicaset .local !.6.0 !.7.0 !.rapid !.latest" - - ".sharded .local !.6.0 !.7.0 !.rapid !.latest" - - ".loadbalanced .local !.6.0 !.7.0 !.rapid !.latest" - - ".ocsp !.6.0 !.7.0 !.rapid !.latest" - display_tasks: - - name: "test-ocsp-5.0" - execution_tasks: - - ".ocsp .5.0" - - name: "test-ocsp-4.4" - execution_tasks: - - ".ocsp .4.4" diff --git a/.evergreen/config/generated/test-variant/full-php-8.0.yml b/.evergreen/config/generated/test-variant/full-php-8.0.yml deleted file mode 100644 index aa814cd72..000000000 --- a/.evergreen/config/generated/test-variant/full-php-8.0.yml +++ /dev/null @@ -1,57 +0,0 @@ -# This file is generated automatically - please edit the "templates/test-variant/full.yml" template file instead. -buildvariants: - - name: test-debian11-php-8.0 - tags: ["test", "debian", "x64", "php8.0", "pr", "tag"] - display_name: "Test: Debian 11, PHP 8.0" - run_on: debian11-small - expansions: - FETCH_BUILD_VARIANT: "build-debian11" - FETCH_BUILD_TASK: "build-php-8.0" - depends_on: - - variant: "build-debian11" - name: "build-php-8.0" - tasks: - - ".standalone .local !.3.6 !.4.0 !.4.2 !.4.4 !.5.0" - - ".replicaset .local !.3.6 !.4.0 !.4.2 !.4.4 !.5.0" - - ".sharded .local !.3.6 !.4.0 !.4.2 !.4.4 !.5.0" - - ".loadbalanced .local !.3.6 !.4.0 !.4.2 !.4.4 !.5.0" - - "test-atlas-connectivity" - - ".ocsp !.4.4 !.5.0" - display_tasks: - - name: "test-ocsp-latest" - execution_tasks: - - ".ocsp .latest" - - name: "test-ocsp-rapid" - execution_tasks: - - ".ocsp .rapid" - - name: "test-ocsp-7.0" - execution_tasks: - - ".ocsp .7.0" - - name: "test-ocsp-6.0" - execution_tasks: - - ".ocsp .6.0" - - - name: test-debian92-php-8.0 - tags: ["test", "debian", "x64", "php8.0", "pr", "tag"] - display_name: "Test: Debian 9.2, PHP 8.0" - run_on: debian92-small - expansions: - FETCH_BUILD_VARIANT: "build-debian92" - FETCH_BUILD_TASK: "build-php-8.0" - depends_on: - - variant: "build-debian92" - name: "build-php-8.0" - tasks: - # Remember to add new major versions here as they are released - - ".standalone .local !.6.0 !.7.0 !.rapid !.latest" - - ".replicaset .local !.6.0 !.7.0 !.rapid !.latest" - - ".sharded .local !.6.0 !.7.0 !.rapid !.latest" - - ".loadbalanced .local !.6.0 !.7.0 !.rapid !.latest" - - ".ocsp !.6.0 !.7.0 !.rapid !.latest" - display_tasks: - - name: "test-ocsp-5.0" - execution_tasks: - - ".ocsp .5.0" - - name: "test-ocsp-4.4" - execution_tasks: - - ".ocsp .4.4" diff --git a/.evergreen/config/generated/test-variant/full-php-8.1.yml b/.evergreen/config/generated/test-variant/full-php-8.1.yml deleted file mode 100644 index fb8353be0..000000000 --- a/.evergreen/config/generated/test-variant/full-php-8.1.yml +++ /dev/null @@ -1,57 +0,0 @@ -# This file is generated automatically - please edit the "templates/test-variant/full.yml" template file instead. -buildvariants: - - name: test-debian11-php-8.1 - tags: ["test", "debian", "x64", "php8.1", "pr", "tag"] - display_name: "Test: Debian 11, PHP 8.1" - run_on: debian11-small - expansions: - FETCH_BUILD_VARIANT: "build-debian11" - FETCH_BUILD_TASK: "build-php-8.1" - depends_on: - - variant: "build-debian11" - name: "build-php-8.1" - tasks: - - ".standalone .local !.3.6 !.4.0 !.4.2 !.4.4 !.5.0" - - ".replicaset .local !.3.6 !.4.0 !.4.2 !.4.4 !.5.0" - - ".sharded .local !.3.6 !.4.0 !.4.2 !.4.4 !.5.0" - - ".loadbalanced .local !.3.6 !.4.0 !.4.2 !.4.4 !.5.0" - - "test-atlas-connectivity" - - ".ocsp !.4.4 !.5.0" - display_tasks: - - name: "test-ocsp-latest" - execution_tasks: - - ".ocsp .latest" - - name: "test-ocsp-rapid" - execution_tasks: - - ".ocsp .rapid" - - name: "test-ocsp-7.0" - execution_tasks: - - ".ocsp .7.0" - - name: "test-ocsp-6.0" - execution_tasks: - - ".ocsp .6.0" - - - name: test-debian92-php-8.1 - tags: ["test", "debian", "x64", "php8.1", "pr", "tag"] - display_name: "Test: Debian 9.2, PHP 8.1" - run_on: debian92-small - expansions: - FETCH_BUILD_VARIANT: "build-debian92" - FETCH_BUILD_TASK: "build-php-8.1" - depends_on: - - variant: "build-debian92" - name: "build-php-8.1" - tasks: - # Remember to add new major versions here as they are released - - ".standalone .local !.6.0 !.7.0 !.rapid !.latest" - - ".replicaset .local !.6.0 !.7.0 !.rapid !.latest" - - ".sharded .local !.6.0 !.7.0 !.rapid !.latest" - - ".loadbalanced .local !.6.0 !.7.0 !.rapid !.latest" - - ".ocsp !.6.0 !.7.0 !.rapid !.latest" - display_tasks: - - name: "test-ocsp-5.0" - execution_tasks: - - ".ocsp .5.0" - - name: "test-ocsp-4.4" - execution_tasks: - - ".ocsp .4.4" diff --git a/.evergreen/config/generated/test-variant/full-php-8.2.yml b/.evergreen/config/generated/test-variant/full-php-8.2.yml deleted file mode 100644 index 56519d7f7..000000000 --- a/.evergreen/config/generated/test-variant/full-php-8.2.yml +++ /dev/null @@ -1,57 +0,0 @@ -# This file is generated automatically - please edit the "templates/test-variant/full.yml" template file instead. -buildvariants: - - name: test-debian11-php-8.2 - tags: ["test", "debian", "x64", "php8.2", "pr", "tag"] - display_name: "Test: Debian 11, PHP 8.2" - run_on: debian11-small - expansions: - FETCH_BUILD_VARIANT: "build-debian11" - FETCH_BUILD_TASK: "build-php-8.2" - depends_on: - - variant: "build-debian11" - name: "build-php-8.2" - tasks: - - ".standalone .local !.3.6 !.4.0 !.4.2 !.4.4 !.5.0" - - ".replicaset .local !.3.6 !.4.0 !.4.2 !.4.4 !.5.0" - - ".sharded .local !.3.6 !.4.0 !.4.2 !.4.4 !.5.0" - - ".loadbalanced .local !.3.6 !.4.0 !.4.2 !.4.4 !.5.0" - - "test-atlas-connectivity" - - ".ocsp !.4.4 !.5.0" - display_tasks: - - name: "test-ocsp-latest" - execution_tasks: - - ".ocsp .latest" - - name: "test-ocsp-rapid" - execution_tasks: - - ".ocsp .rapid" - - name: "test-ocsp-7.0" - execution_tasks: - - ".ocsp .7.0" - - name: "test-ocsp-6.0" - execution_tasks: - - ".ocsp .6.0" - - - name: test-debian92-php-8.2 - tags: ["test", "debian", "x64", "php8.2", "pr", "tag"] - display_name: "Test: Debian 9.2, PHP 8.2" - run_on: debian92-small - expansions: - FETCH_BUILD_VARIANT: "build-debian92" - FETCH_BUILD_TASK: "build-php-8.2" - depends_on: - - variant: "build-debian92" - name: "build-php-8.2" - tasks: - # Remember to add new major versions here as they are released - - ".standalone .local !.6.0 !.7.0 !.rapid !.latest" - - ".replicaset .local !.6.0 !.7.0 !.rapid !.latest" - - ".sharded .local !.6.0 !.7.0 !.rapid !.latest" - - ".loadbalanced .local !.6.0 !.7.0 !.rapid !.latest" - - ".ocsp !.6.0 !.7.0 !.rapid !.latest" - display_tasks: - - name: "test-ocsp-5.0" - execution_tasks: - - ".ocsp .5.0" - - name: "test-ocsp-4.4" - execution_tasks: - - ".ocsp .4.4" diff --git a/.evergreen/config/generated/test-variant/full-php-8.3.yml b/.evergreen/config/generated/test-variant/full-php-8.3.yml deleted file mode 100644 index e08673600..000000000 --- a/.evergreen/config/generated/test-variant/full-php-8.3.yml +++ /dev/null @@ -1,57 +0,0 @@ -# This file is generated automatically - please edit the "templates/test-variant/full.yml" template file instead. -buildvariants: - - name: test-debian11-php-8.3 - tags: ["test", "debian", "x64", "php8.3", "pr", "tag"] - display_name: "Test: Debian 11, PHP 8.3" - run_on: debian11-small - expansions: - FETCH_BUILD_VARIANT: "build-debian11" - FETCH_BUILD_TASK: "build-php-8.3" - depends_on: - - variant: "build-debian11" - name: "build-php-8.3" - tasks: - - ".standalone .local !.3.6 !.4.0 !.4.2 !.4.4 !.5.0" - - ".replicaset .local !.3.6 !.4.0 !.4.2 !.4.4 !.5.0" - - ".sharded .local !.3.6 !.4.0 !.4.2 !.4.4 !.5.0" - - ".loadbalanced .local !.3.6 !.4.0 !.4.2 !.4.4 !.5.0" - - "test-atlas-connectivity" - - ".ocsp !.4.4 !.5.0" - display_tasks: - - name: "test-ocsp-latest" - execution_tasks: - - ".ocsp .latest" - - name: "test-ocsp-rapid" - execution_tasks: - - ".ocsp .rapid" - - name: "test-ocsp-7.0" - execution_tasks: - - ".ocsp .7.0" - - name: "test-ocsp-6.0" - execution_tasks: - - ".ocsp .6.0" - - - name: test-debian92-php-8.3 - tags: ["test", "debian", "x64", "php8.3", "pr", "tag"] - display_name: "Test: Debian 9.2, PHP 8.3" - run_on: debian92-small - expansions: - FETCH_BUILD_VARIANT: "build-debian92" - FETCH_BUILD_TASK: "build-php-8.3" - depends_on: - - variant: "build-debian92" - name: "build-php-8.3" - tasks: - # Remember to add new major versions here as they are released - - ".standalone .local !.6.0 !.7.0 !.rapid !.latest" - - ".replicaset .local !.6.0 !.7.0 !.rapid !.latest" - - ".sharded .local !.6.0 !.7.0 !.rapid !.latest" - - ".loadbalanced .local !.6.0 !.7.0 !.rapid !.latest" - - ".ocsp !.6.0 !.7.0 !.rapid !.latest" - display_tasks: - - name: "test-ocsp-5.0" - execution_tasks: - - ".ocsp .5.0" - - name: "test-ocsp-4.4" - execution_tasks: - - ".ocsp .4.4" diff --git a/.evergreen/config/generated/test-variant/full.yml b/.evergreen/config/generated/test-variant/full.yml new file mode 100644 index 000000000..bfb332ed1 --- /dev/null +++ b/.evergreen/config/generated/test-variant/full.yml @@ -0,0 +1,277 @@ +# This file is generated automatically - please edit the "templates/test-variant/full.yml" template file instead. +buildvariants: + - name: test-debian11-php-8.3 + tags: ["test", "debian", "x64", "php8.3", "pr", "tag"] + display_name: "Test: Debian 11, PHP 8.3" + run_on: debian11-small + expansions: + FETCH_BUILD_VARIANT: "build-debian11" + FETCH_BUILD_TASK: "build-php-8.3" + depends_on: + - variant: "build-debian11" + name: "build-php-8.3" + tasks: + - ".standalone .local !.3.6 !.4.0 !.4.2 !.4.4 !.5.0" + - ".replicaset .local !.3.6 !.4.0 !.4.2 !.4.4 !.5.0" + - ".sharded .local !.3.6 !.4.0 !.4.2 !.4.4 !.5.0" + - ".loadbalanced .local !.3.6 !.4.0 !.4.2 !.4.4 !.5.0" + - "test-atlas-connectivity" + - ".ocsp !.4.4 !.5.0" + display_tasks: + - name: "test-ocsp-latest" + execution_tasks: + - ".ocsp .latest" + - name: "test-ocsp-rapid" + execution_tasks: + - ".ocsp .rapid" + - name: "test-ocsp-7.0" + execution_tasks: + - ".ocsp .7.0" + - name: "test-ocsp-6.0" + execution_tasks: + - ".ocsp .6.0" + + - name: test-debian92-php-8.3 + tags: ["test", "debian", "x64", "php8.3", "pr", "tag"] + display_name: "Test: Debian 9.2, PHP 8.3" + run_on: debian92-small + expansions: + FETCH_BUILD_VARIANT: "build-debian92" + FETCH_BUILD_TASK: "build-php-8.3" + depends_on: + - variant: "build-debian92" + name: "build-php-8.3" + tasks: + # Remember to add new major versions here as they are released + - ".standalone .local !.6.0 !.7.0 !.rapid !.latest" + - ".replicaset .local !.6.0 !.7.0 !.rapid !.latest" + - ".sharded .local !.6.0 !.7.0 !.rapid !.latest" + - ".loadbalanced .local !.6.0 !.7.0 !.rapid !.latest" + - ".ocsp !.6.0 !.7.0 !.rapid !.latest" + display_tasks: + - name: "test-ocsp-5.0" + execution_tasks: + - ".ocsp .5.0" + - name: "test-ocsp-4.4" + execution_tasks: + - ".ocsp .4.4" + - name: test-debian11-php-8.2 + tags: ["test", "debian", "x64", "php8.2", "pr", "tag"] + display_name: "Test: Debian 11, PHP 8.2" + run_on: debian11-small + expansions: + FETCH_BUILD_VARIANT: "build-debian11" + FETCH_BUILD_TASK: "build-php-8.2" + depends_on: + - variant: "build-debian11" + name: "build-php-8.2" + tasks: + - ".standalone .local !.3.6 !.4.0 !.4.2 !.4.4 !.5.0" + - ".replicaset .local !.3.6 !.4.0 !.4.2 !.4.4 !.5.0" + - ".sharded .local !.3.6 !.4.0 !.4.2 !.4.4 !.5.0" + - ".loadbalanced .local !.3.6 !.4.0 !.4.2 !.4.4 !.5.0" + - "test-atlas-connectivity" + - ".ocsp !.4.4 !.5.0" + display_tasks: + - name: "test-ocsp-latest" + execution_tasks: + - ".ocsp .latest" + - name: "test-ocsp-rapid" + execution_tasks: + - ".ocsp .rapid" + - name: "test-ocsp-7.0" + execution_tasks: + - ".ocsp .7.0" + - name: "test-ocsp-6.0" + execution_tasks: + - ".ocsp .6.0" + + - name: test-debian92-php-8.2 + tags: ["test", "debian", "x64", "php8.2", "pr", "tag"] + display_name: "Test: Debian 9.2, PHP 8.2" + run_on: debian92-small + expansions: + FETCH_BUILD_VARIANT: "build-debian92" + FETCH_BUILD_TASK: "build-php-8.2" + depends_on: + - variant: "build-debian92" + name: "build-php-8.2" + tasks: + # Remember to add new major versions here as they are released + - ".standalone .local !.6.0 !.7.0 !.rapid !.latest" + - ".replicaset .local !.6.0 !.7.0 !.rapid !.latest" + - ".sharded .local !.6.0 !.7.0 !.rapid !.latest" + - ".loadbalanced .local !.6.0 !.7.0 !.rapid !.latest" + - ".ocsp !.6.0 !.7.0 !.rapid !.latest" + display_tasks: + - name: "test-ocsp-5.0" + execution_tasks: + - ".ocsp .5.0" + - name: "test-ocsp-4.4" + execution_tasks: + - ".ocsp .4.4" + - name: test-debian11-php-8.1 + tags: ["test", "debian", "x64", "php8.1", "pr", "tag"] + display_name: "Test: Debian 11, PHP 8.1" + run_on: debian11-small + expansions: + FETCH_BUILD_VARIANT: "build-debian11" + FETCH_BUILD_TASK: "build-php-8.1" + depends_on: + - variant: "build-debian11" + name: "build-php-8.1" + tasks: + - ".standalone .local !.3.6 !.4.0 !.4.2 !.4.4 !.5.0" + - ".replicaset .local !.3.6 !.4.0 !.4.2 !.4.4 !.5.0" + - ".sharded .local !.3.6 !.4.0 !.4.2 !.4.4 !.5.0" + - ".loadbalanced .local !.3.6 !.4.0 !.4.2 !.4.4 !.5.0" + - "test-atlas-connectivity" + - ".ocsp !.4.4 !.5.0" + display_tasks: + - name: "test-ocsp-latest" + execution_tasks: + - ".ocsp .latest" + - name: "test-ocsp-rapid" + execution_tasks: + - ".ocsp .rapid" + - name: "test-ocsp-7.0" + execution_tasks: + - ".ocsp .7.0" + - name: "test-ocsp-6.0" + execution_tasks: + - ".ocsp .6.0" + + - name: test-debian92-php-8.1 + tags: ["test", "debian", "x64", "php8.1", "pr", "tag"] + display_name: "Test: Debian 9.2, PHP 8.1" + run_on: debian92-small + expansions: + FETCH_BUILD_VARIANT: "build-debian92" + FETCH_BUILD_TASK: "build-php-8.1" + depends_on: + - variant: "build-debian92" + name: "build-php-8.1" + tasks: + # Remember to add new major versions here as they are released + - ".standalone .local !.6.0 !.7.0 !.rapid !.latest" + - ".replicaset .local !.6.0 !.7.0 !.rapid !.latest" + - ".sharded .local !.6.0 !.7.0 !.rapid !.latest" + - ".loadbalanced .local !.6.0 !.7.0 !.rapid !.latest" + - ".ocsp !.6.0 !.7.0 !.rapid !.latest" + display_tasks: + - name: "test-ocsp-5.0" + execution_tasks: + - ".ocsp .5.0" + - name: "test-ocsp-4.4" + execution_tasks: + - ".ocsp .4.4" + - name: test-debian11-php-8.0 + tags: ["test", "debian", "x64", "php8.0", "pr", "tag"] + display_name: "Test: Debian 11, PHP 8.0" + run_on: debian11-small + expansions: + FETCH_BUILD_VARIANT: "build-debian11" + FETCH_BUILD_TASK: "build-php-8.0" + depends_on: + - variant: "build-debian11" + name: "build-php-8.0" + tasks: + - ".standalone .local !.3.6 !.4.0 !.4.2 !.4.4 !.5.0" + - ".replicaset .local !.3.6 !.4.0 !.4.2 !.4.4 !.5.0" + - ".sharded .local !.3.6 !.4.0 !.4.2 !.4.4 !.5.0" + - ".loadbalanced .local !.3.6 !.4.0 !.4.2 !.4.4 !.5.0" + - "test-atlas-connectivity" + - ".ocsp !.4.4 !.5.0" + display_tasks: + - name: "test-ocsp-latest" + execution_tasks: + - ".ocsp .latest" + - name: "test-ocsp-rapid" + execution_tasks: + - ".ocsp .rapid" + - name: "test-ocsp-7.0" + execution_tasks: + - ".ocsp .7.0" + - name: "test-ocsp-6.0" + execution_tasks: + - ".ocsp .6.0" + + - name: test-debian92-php-8.0 + tags: ["test", "debian", "x64", "php8.0", "pr", "tag"] + display_name: "Test: Debian 9.2, PHP 8.0" + run_on: debian92-small + expansions: + FETCH_BUILD_VARIANT: "build-debian92" + FETCH_BUILD_TASK: "build-php-8.0" + depends_on: + - variant: "build-debian92" + name: "build-php-8.0" + tasks: + # Remember to add new major versions here as they are released + - ".standalone .local !.6.0 !.7.0 !.rapid !.latest" + - ".replicaset .local !.6.0 !.7.0 !.rapid !.latest" + - ".sharded .local !.6.0 !.7.0 !.rapid !.latest" + - ".loadbalanced .local !.6.0 !.7.0 !.rapid !.latest" + - ".ocsp !.6.0 !.7.0 !.rapid !.latest" + display_tasks: + - name: "test-ocsp-5.0" + execution_tasks: + - ".ocsp .5.0" + - name: "test-ocsp-4.4" + execution_tasks: + - ".ocsp .4.4" + - name: test-debian11-php-7.4 + tags: ["test", "debian", "x64", "php7.4", "pr", "tag"] + display_name: "Test: Debian 11, PHP 7.4" + run_on: debian11-small + expansions: + FETCH_BUILD_VARIANT: "build-debian11" + FETCH_BUILD_TASK: "build-php-7.4" + depends_on: + - variant: "build-debian11" + name: "build-php-7.4" + tasks: + - ".standalone .local !.3.6 !.4.0 !.4.2 !.4.4 !.5.0" + - ".replicaset .local !.3.6 !.4.0 !.4.2 !.4.4 !.5.0" + - ".sharded .local !.3.6 !.4.0 !.4.2 !.4.4 !.5.0" + - ".loadbalanced .local !.3.6 !.4.0 !.4.2 !.4.4 !.5.0" + - "test-atlas-connectivity" + - ".ocsp !.4.4 !.5.0" + display_tasks: + - name: "test-ocsp-latest" + execution_tasks: + - ".ocsp .latest" + - name: "test-ocsp-rapid" + execution_tasks: + - ".ocsp .rapid" + - name: "test-ocsp-7.0" + execution_tasks: + - ".ocsp .7.0" + - name: "test-ocsp-6.0" + execution_tasks: + - ".ocsp .6.0" + + - name: test-debian92-php-7.4 + tags: ["test", "debian", "x64", "php7.4", "pr", "tag"] + display_name: "Test: Debian 9.2, PHP 7.4" + run_on: debian92-small + expansions: + FETCH_BUILD_VARIANT: "build-debian92" + FETCH_BUILD_TASK: "build-php-7.4" + depends_on: + - variant: "build-debian92" + name: "build-php-7.4" + tasks: + # Remember to add new major versions here as they are released + - ".standalone .local !.6.0 !.7.0 !.rapid !.latest" + - ".replicaset .local !.6.0 !.7.0 !.rapid !.latest" + - ".sharded .local !.6.0 !.7.0 !.rapid !.latest" + - ".loadbalanced .local !.6.0 !.7.0 !.rapid !.latest" + - ".ocsp !.6.0 !.7.0 !.rapid !.latest" + display_tasks: + - name: "test-ocsp-5.0" + execution_tasks: + - ".ocsp .5.0" + - name: "test-ocsp-4.4" + execution_tasks: + - ".ocsp .4.4" diff --git a/.evergreen/config/generated/test-variant/latest-php-8.3.yml b/.evergreen/config/generated/test-variant/latest-php-8.3.yml deleted file mode 100644 index 58747e2bc..000000000 --- a/.evergreen/config/generated/test-variant/latest-php-8.3.yml +++ /dev/null @@ -1,57 +0,0 @@ -# This file is generated automatically - please edit the "templates/test-variant/latest.yml" template file instead. -buildvariants: - - name: test-debian11-php-8.3 - tags: ["test", "debian", "x64", "php8.3", "pr", "tag"] - display_name: "Test: Debian 11, PHP 8.3" - run_on: debian11-small - expansions: - FETCH_BUILD_VARIANT: "build-debian11" - FETCH_BUILD_TASK: "build-php-8.3" - depends_on: - - variant: "build-debian11" - name: "build-php-8.3" - tasks: - - ".standalone .local !.3.6 !.4.0 !.4.2 !.4.4 !.5.0" - - ".replicaset .local !.3.6 !.4.0 !.4.2 !.4.4 !.5.0" - - ".sharded .local !.3.6 !.4.0 !.4.2 !.4.4 !.5.0" - - ".loadbalanced .local !.3.6 !.4.0 !.4.2 !.4.4 !.5.0" - - "test-atlas-connectivity" - - ".ocsp !.4.4 !.5.0" - display_tasks: - - name: "test-ocsp-latest" - execution_tasks: - - ".ocsp .latest" - - name: "test-ocsp-rapid" - execution_tasks: - - ".ocsp .rapid" - - name: "test-ocsp-7.0" - execution_tasks: - - ".ocsp .7.0" - - name: "test-ocsp-6.0" - execution_tasks: - - ".ocsp .6.0" - - - name: test-debian92-php-8.3 - tags: ["test", "debian", "x64", "php8.3", "pr", "tag"] - display_name: "Test: Debian 9.2, PHP 8.3" - run_on: debian92-small - expansions: - FETCH_BUILD_VARIANT: "build-debian92" - FETCH_BUILD_TASK: "build-php-8.3" - depends_on: - - variant: "build-debian92" - name: "build-php-8.3" - tasks: - # Remember to add new major versions here as they are released - - ".standalone .local !.6.0 !.7.0 !.rapid !.latest" - - ".replicaset .local !.6.0 !.7.0 !.rapid !.latest" - - ".sharded .local !.6.0 !.7.0 !.rapid !.latest" - - ".loadbalanced .local !.6.0 !.7.0 !.rapid !.latest" - - ".ocsp !.6.0 !.7.0 !.rapid !.latest" - display_tasks: - - name: "test-ocsp-5.0" - execution_tasks: - - ".ocsp .5.0" - - name: "test-ocsp-4.4" - execution_tasks: - - ".ocsp .4.4" diff --git a/.evergreen/config/generated/test-variant/libmongoc-php-8.3.yml b/.evergreen/config/generated/test-variant/libmongoc.yml similarity index 100% rename from .evergreen/config/generated/test-variant/libmongoc-php-8.3.yml rename to .evergreen/config/generated/test-variant/libmongoc.yml diff --git a/.evergreen/config/generated/test/load-balanced-5.0.yml b/.evergreen/config/generated/test/load-balanced-5.0.yml deleted file mode 100644 index 8ac8c365f..000000000 --- a/.evergreen/config/generated/test/load-balanced-5.0.yml +++ /dev/null @@ -1,16 +0,0 @@ -# This file is generated automatically - please edit the "templates/test/load-balanced.yml" template file instead. -tasks: - - name: "test-mongodb-5.0-loadbalanced" - tags: ["loadbalanced", "local", "5.0", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "sharded_cluster" - MONGODB_VERSION: "5.0" - LOAD_BALANCER: "true" - SSL: "yes" - - func: "start load balancer" - - func: "run tests" - vars: - MONGODB_URI: "${SINGLE_MONGOS_LB_URI}" - SSL: "yes" diff --git a/.evergreen/config/generated/test/load-balanced-6.0.yml b/.evergreen/config/generated/test/load-balanced-6.0.yml deleted file mode 100644 index 78ab23b97..000000000 --- a/.evergreen/config/generated/test/load-balanced-6.0.yml +++ /dev/null @@ -1,16 +0,0 @@ -# This file is generated automatically - please edit the "templates/test/load-balanced.yml" template file instead. -tasks: - - name: "test-mongodb-6.0-loadbalanced" - tags: ["loadbalanced", "local", "6.0", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "sharded_cluster" - MONGODB_VERSION: "6.0" - LOAD_BALANCER: "true" - SSL: "yes" - - func: "start load balancer" - - func: "run tests" - vars: - MONGODB_URI: "${SINGLE_MONGOS_LB_URI}" - SSL: "yes" diff --git a/.evergreen/config/generated/test/load-balanced-7.0.yml b/.evergreen/config/generated/test/load-balanced-7.0.yml deleted file mode 100644 index e4027f49d..000000000 --- a/.evergreen/config/generated/test/load-balanced-7.0.yml +++ /dev/null @@ -1,16 +0,0 @@ -# This file is generated automatically - please edit the "templates/test/load-balanced.yml" template file instead. -tasks: - - name: "test-mongodb-7.0-loadbalanced" - tags: ["loadbalanced", "local", "7.0", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "sharded_cluster" - MONGODB_VERSION: "7.0" - LOAD_BALANCER: "true" - SSL: "yes" - - func: "start load balancer" - - func: "run tests" - vars: - MONGODB_URI: "${SINGLE_MONGOS_LB_URI}" - SSL: "yes" diff --git a/.evergreen/config/generated/test/load-balanced-latest.yml b/.evergreen/config/generated/test/load-balanced-latest.yml deleted file mode 100644 index 013acdbbb..000000000 --- a/.evergreen/config/generated/test/load-balanced-latest.yml +++ /dev/null @@ -1,16 +0,0 @@ -# This file is generated automatically - please edit the "templates/test/load-balanced.yml" template file instead. -tasks: - - name: "test-mongodb-latest-loadbalanced" - tags: ["loadbalanced", "local", "latest", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "sharded_cluster" - MONGODB_VERSION: "latest" - LOAD_BALANCER: "true" - SSL: "yes" - - func: "start load balancer" - - func: "run tests" - vars: - MONGODB_URI: "${SINGLE_MONGOS_LB_URI}" - SSL: "yes" diff --git a/.evergreen/config/generated/test/load-balanced-rapid.yml b/.evergreen/config/generated/test/load-balanced-rapid.yml deleted file mode 100644 index 1e27e01c7..000000000 --- a/.evergreen/config/generated/test/load-balanced-rapid.yml +++ /dev/null @@ -1,16 +0,0 @@ -# This file is generated automatically - please edit the "templates/test/load-balanced.yml" template file instead. -tasks: - - name: "test-mongodb-rapid-loadbalanced" - tags: ["loadbalanced", "local", "rapid", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "sharded_cluster" - MONGODB_VERSION: "rapid" - LOAD_BALANCER: "true" - SSL: "yes" - - func: "start load balancer" - - func: "run tests" - vars: - MONGODB_URI: "${SINGLE_MONGOS_LB_URI}" - SSL: "yes" diff --git a/.evergreen/config/generated/test/load-balanced.yml b/.evergreen/config/generated/test/load-balanced.yml new file mode 100644 index 000000000..b96c536c3 --- /dev/null +++ b/.evergreen/config/generated/test/load-balanced.yml @@ -0,0 +1,72 @@ +# This file is generated automatically - please edit the "templates/test/load-balanced.yml" template file instead. +tasks: + - name: "test-mongodb-latest-loadbalanced" + tags: ["loadbalanced", "local", "latest", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "sharded_cluster" + MONGODB_VERSION: "latest" + LOAD_BALANCER: "true" + SSL: "yes" + - func: "start load balancer" + - func: "run tests" + vars: + MONGODB_URI: "${SINGLE_MONGOS_LB_URI}" + SSL: "yes" + - name: "test-mongodb-rapid-loadbalanced" + tags: ["loadbalanced", "local", "rapid", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "sharded_cluster" + MONGODB_VERSION: "rapid" + LOAD_BALANCER: "true" + SSL: "yes" + - func: "start load balancer" + - func: "run tests" + vars: + MONGODB_URI: "${SINGLE_MONGOS_LB_URI}" + SSL: "yes" + - name: "test-mongodb-7.0-loadbalanced" + tags: ["loadbalanced", "local", "7.0", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "sharded_cluster" + MONGODB_VERSION: "7.0" + LOAD_BALANCER: "true" + SSL: "yes" + - func: "start load balancer" + - func: "run tests" + vars: + MONGODB_URI: "${SINGLE_MONGOS_LB_URI}" + SSL: "yes" + - name: "test-mongodb-6.0-loadbalanced" + tags: ["loadbalanced", "local", "6.0", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "sharded_cluster" + MONGODB_VERSION: "6.0" + LOAD_BALANCER: "true" + SSL: "yes" + - func: "start load balancer" + - func: "run tests" + vars: + MONGODB_URI: "${SINGLE_MONGOS_LB_URI}" + SSL: "yes" + - name: "test-mongodb-5.0-loadbalanced" + tags: ["loadbalanced", "local", "5.0", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "sharded_cluster" + MONGODB_VERSION: "5.0" + LOAD_BALANCER: "true" + SSL: "yes" + - func: "start load balancer" + - func: "run tests" + vars: + MONGODB_URI: "${SINGLE_MONGOS_LB_URI}" + SSL: "yes" diff --git a/.evergreen/config/generated/test/local-3.6.yml b/.evergreen/config/generated/test/local-3.6.yml deleted file mode 100644 index 117fb1d64..000000000 --- a/.evergreen/config/generated/test/local-3.6.yml +++ /dev/null @@ -1,60 +0,0 @@ -# This file is generated automatically - please edit the "templates/test/local.yml" template file instead. -tasks: - - name: "test-mongodb-3.6-standalone-noauth-nossl" - tags: ["standalone", "local", "3.6", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "server" - MONGODB_VERSION: "3.6" - - func: "run tests" - - - name: "test-mongodb-3.6-standalone-auth" - tags: ["standalone", "local", "3.6", "auth", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "server" - AUTH: "auth" - MONGODB_VERSION: "3.6" - - func: "run tests" - - - name: "test-mongodb-3.6-standalone-ssl" - tags: ["standalone", "local", "3.6", "ssl", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "server" - SSL: "yes" - MONGODB_VERSION: "3.6" - - func: "run tests" - vars: - SSL: "yes" - - - name: "test-mongodb-3.6-replicaset-noauth-nossl" - tags: ["replicaset", "local", "3.6", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "replica_set" - MONGODB_VERSION: "3.6" - - func: "run tests" - - - name: "test-mongodb-3.6-replicaset-auth" - tags: ["replicaset", "local", "3.6", "auth", "pr", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "replica_set" - AUTH: "auth" - MONGODB_VERSION: "3.6" - - func: "run tests" - - - name: "test-mongodb-3.6-sharded-noauth-nossl" - tags: ["sharded", "local", "3.6", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "sharded_cluster" - MONGODB_VERSION: "3.6" - - func: "run tests" diff --git a/.evergreen/config/generated/test/local-4.0.yml b/.evergreen/config/generated/test/local-4.0.yml deleted file mode 100644 index ed6a40890..000000000 --- a/.evergreen/config/generated/test/local-4.0.yml +++ /dev/null @@ -1,60 +0,0 @@ -# This file is generated automatically - please edit the "templates/test/local.yml" template file instead. -tasks: - - name: "test-mongodb-4.0-standalone-noauth-nossl" - tags: ["standalone", "local", "4.0", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "server" - MONGODB_VERSION: "4.0" - - func: "run tests" - - - name: "test-mongodb-4.0-standalone-auth" - tags: ["standalone", "local", "4.0", "auth", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "server" - AUTH: "auth" - MONGODB_VERSION: "4.0" - - func: "run tests" - - - name: "test-mongodb-4.0-standalone-ssl" - tags: ["standalone", "local", "4.0", "ssl", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "server" - SSL: "yes" - MONGODB_VERSION: "4.0" - - func: "run tests" - vars: - SSL: "yes" - - - name: "test-mongodb-4.0-replicaset-noauth-nossl" - tags: ["replicaset", "local", "4.0", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "replica_set" - MONGODB_VERSION: "4.0" - - func: "run tests" - - - name: "test-mongodb-4.0-replicaset-auth" - tags: ["replicaset", "local", "4.0", "auth", "pr", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "replica_set" - AUTH: "auth" - MONGODB_VERSION: "4.0" - - func: "run tests" - - - name: "test-mongodb-4.0-sharded-noauth-nossl" - tags: ["sharded", "local", "4.0", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "sharded_cluster" - MONGODB_VERSION: "4.0" - - func: "run tests" diff --git a/.evergreen/config/generated/test/local-4.2.yml b/.evergreen/config/generated/test/local-4.2.yml deleted file mode 100644 index ebabb5af3..000000000 --- a/.evergreen/config/generated/test/local-4.2.yml +++ /dev/null @@ -1,60 +0,0 @@ -# This file is generated automatically - please edit the "templates/test/local.yml" template file instead. -tasks: - - name: "test-mongodb-4.2-standalone-noauth-nossl" - tags: ["standalone", "local", "4.2", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "server" - MONGODB_VERSION: "4.2" - - func: "run tests" - - - name: "test-mongodb-4.2-standalone-auth" - tags: ["standalone", "local", "4.2", "auth", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "server" - AUTH: "auth" - MONGODB_VERSION: "4.2" - - func: "run tests" - - - name: "test-mongodb-4.2-standalone-ssl" - tags: ["standalone", "local", "4.2", "ssl", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "server" - SSL: "yes" - MONGODB_VERSION: "4.2" - - func: "run tests" - vars: - SSL: "yes" - - - name: "test-mongodb-4.2-replicaset-noauth-nossl" - tags: ["replicaset", "local", "4.2", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "replica_set" - MONGODB_VERSION: "4.2" - - func: "run tests" - - - name: "test-mongodb-4.2-replicaset-auth" - tags: ["replicaset", "local", "4.2", "auth", "pr", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "replica_set" - AUTH: "auth" - MONGODB_VERSION: "4.2" - - func: "run tests" - - - name: "test-mongodb-4.2-sharded-noauth-nossl" - tags: ["sharded", "local", "4.2", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "sharded_cluster" - MONGODB_VERSION: "4.2" - - func: "run tests" diff --git a/.evergreen/config/generated/test/local-4.4.yml b/.evergreen/config/generated/test/local-4.4.yml deleted file mode 100644 index fd7b9b3ff..000000000 --- a/.evergreen/config/generated/test/local-4.4.yml +++ /dev/null @@ -1,60 +0,0 @@ -# This file is generated automatically - please edit the "templates/test/local.yml" template file instead. -tasks: - - name: "test-mongodb-4.4-standalone-noauth-nossl" - tags: ["standalone", "local", "4.4", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "server" - MONGODB_VERSION: "4.4" - - func: "run tests" - - - name: "test-mongodb-4.4-standalone-auth" - tags: ["standalone", "local", "4.4", "auth", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "server" - AUTH: "auth" - MONGODB_VERSION: "4.4" - - func: "run tests" - - - name: "test-mongodb-4.4-standalone-ssl" - tags: ["standalone", "local", "4.4", "ssl", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "server" - SSL: "yes" - MONGODB_VERSION: "4.4" - - func: "run tests" - vars: - SSL: "yes" - - - name: "test-mongodb-4.4-replicaset-noauth-nossl" - tags: ["replicaset", "local", "4.4", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "replica_set" - MONGODB_VERSION: "4.4" - - func: "run tests" - - - name: "test-mongodb-4.4-replicaset-auth" - tags: ["replicaset", "local", "4.4", "auth", "pr", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "replica_set" - AUTH: "auth" - MONGODB_VERSION: "4.4" - - func: "run tests" - - - name: "test-mongodb-4.4-sharded-noauth-nossl" - tags: ["sharded", "local", "4.4", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "sharded_cluster" - MONGODB_VERSION: "4.4" - - func: "run tests" diff --git a/.evergreen/config/generated/test/local-5.0.yml b/.evergreen/config/generated/test/local-5.0.yml deleted file mode 100644 index 14aa4c43d..000000000 --- a/.evergreen/config/generated/test/local-5.0.yml +++ /dev/null @@ -1,60 +0,0 @@ -# This file is generated automatically - please edit the "templates/test/local.yml" template file instead. -tasks: - - name: "test-mongodb-5.0-standalone-noauth-nossl" - tags: ["standalone", "local", "5.0", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "server" - MONGODB_VERSION: "5.0" - - func: "run tests" - - - name: "test-mongodb-5.0-standalone-auth" - tags: ["standalone", "local", "5.0", "auth", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "server" - AUTH: "auth" - MONGODB_VERSION: "5.0" - - func: "run tests" - - - name: "test-mongodb-5.0-standalone-ssl" - tags: ["standalone", "local", "5.0", "ssl", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "server" - SSL: "yes" - MONGODB_VERSION: "5.0" - - func: "run tests" - vars: - SSL: "yes" - - - name: "test-mongodb-5.0-replicaset-noauth-nossl" - tags: ["replicaset", "local", "5.0", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "replica_set" - MONGODB_VERSION: "5.0" - - func: "run tests" - - - name: "test-mongodb-5.0-replicaset-auth" - tags: ["replicaset", "local", "5.0", "auth", "pr", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "replica_set" - AUTH: "auth" - MONGODB_VERSION: "5.0" - - func: "run tests" - - - name: "test-mongodb-5.0-sharded-noauth-nossl" - tags: ["sharded", "local", "5.0", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "sharded_cluster" - MONGODB_VERSION: "5.0" - - func: "run tests" diff --git a/.evergreen/config/generated/test/local-6.0.yml b/.evergreen/config/generated/test/local-6.0.yml deleted file mode 100644 index f6c3f57df..000000000 --- a/.evergreen/config/generated/test/local-6.0.yml +++ /dev/null @@ -1,60 +0,0 @@ -# This file is generated automatically - please edit the "templates/test/local.yml" template file instead. -tasks: - - name: "test-mongodb-6.0-standalone-noauth-nossl" - tags: ["standalone", "local", "6.0", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "server" - MONGODB_VERSION: "6.0" - - func: "run tests" - - - name: "test-mongodb-6.0-standalone-auth" - tags: ["standalone", "local", "6.0", "auth", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "server" - AUTH: "auth" - MONGODB_VERSION: "6.0" - - func: "run tests" - - - name: "test-mongodb-6.0-standalone-ssl" - tags: ["standalone", "local", "6.0", "ssl", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "server" - SSL: "yes" - MONGODB_VERSION: "6.0" - - func: "run tests" - vars: - SSL: "yes" - - - name: "test-mongodb-6.0-replicaset-noauth-nossl" - tags: ["replicaset", "local", "6.0", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "replica_set" - MONGODB_VERSION: "6.0" - - func: "run tests" - - - name: "test-mongodb-6.0-replicaset-auth" - tags: ["replicaset", "local", "6.0", "auth", "pr", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "replica_set" - AUTH: "auth" - MONGODB_VERSION: "6.0" - - func: "run tests" - - - name: "test-mongodb-6.0-sharded-noauth-nossl" - tags: ["sharded", "local", "6.0", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "sharded_cluster" - MONGODB_VERSION: "6.0" - - func: "run tests" diff --git a/.evergreen/config/generated/test/local-7.0.yml b/.evergreen/config/generated/test/local-7.0.yml deleted file mode 100644 index c39bb4366..000000000 --- a/.evergreen/config/generated/test/local-7.0.yml +++ /dev/null @@ -1,60 +0,0 @@ -# This file is generated automatically - please edit the "templates/test/local.yml" template file instead. -tasks: - - name: "test-mongodb-7.0-standalone-noauth-nossl" - tags: ["standalone", "local", "7.0", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "server" - MONGODB_VERSION: "7.0" - - func: "run tests" - - - name: "test-mongodb-7.0-standalone-auth" - tags: ["standalone", "local", "7.0", "auth", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "server" - AUTH: "auth" - MONGODB_VERSION: "7.0" - - func: "run tests" - - - name: "test-mongodb-7.0-standalone-ssl" - tags: ["standalone", "local", "7.0", "ssl", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "server" - SSL: "yes" - MONGODB_VERSION: "7.0" - - func: "run tests" - vars: - SSL: "yes" - - - name: "test-mongodb-7.0-replicaset-noauth-nossl" - tags: ["replicaset", "local", "7.0", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "replica_set" - MONGODB_VERSION: "7.0" - - func: "run tests" - - - name: "test-mongodb-7.0-replicaset-auth" - tags: ["replicaset", "local", "7.0", "auth", "pr", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "replica_set" - AUTH: "auth" - MONGODB_VERSION: "7.0" - - func: "run tests" - - - name: "test-mongodb-7.0-sharded-noauth-nossl" - tags: ["sharded", "local", "7.0", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "sharded_cluster" - MONGODB_VERSION: "7.0" - - func: "run tests" diff --git a/.evergreen/config/generated/test/local-latest.yml b/.evergreen/config/generated/test/local-latest.yml deleted file mode 100644 index c67866fe6..000000000 --- a/.evergreen/config/generated/test/local-latest.yml +++ /dev/null @@ -1,60 +0,0 @@ -# This file is generated automatically - please edit the "templates/test/local.yml" template file instead. -tasks: - - name: "test-mongodb-latest-standalone-noauth-nossl" - tags: ["standalone", "local", "latest", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "server" - MONGODB_VERSION: "latest" - - func: "run tests" - - - name: "test-mongodb-latest-standalone-auth" - tags: ["standalone", "local", "latest", "auth", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "server" - AUTH: "auth" - MONGODB_VERSION: "latest" - - func: "run tests" - - - name: "test-mongodb-latest-standalone-ssl" - tags: ["standalone", "local", "latest", "ssl", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "server" - SSL: "yes" - MONGODB_VERSION: "latest" - - func: "run tests" - vars: - SSL: "yes" - - - name: "test-mongodb-latest-replicaset-noauth-nossl" - tags: ["replicaset", "local", "latest", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "replica_set" - MONGODB_VERSION: "latest" - - func: "run tests" - - - name: "test-mongodb-latest-replicaset-auth" - tags: ["replicaset", "local", "latest", "auth", "pr", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "replica_set" - AUTH: "auth" - MONGODB_VERSION: "latest" - - func: "run tests" - - - name: "test-mongodb-latest-sharded-noauth-nossl" - tags: ["sharded", "local", "latest", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "sharded_cluster" - MONGODB_VERSION: "latest" - - func: "run tests" diff --git a/.evergreen/config/generated/test/local-rapid.yml b/.evergreen/config/generated/test/local-rapid.yml deleted file mode 100644 index ab8ceefb5..000000000 --- a/.evergreen/config/generated/test/local-rapid.yml +++ /dev/null @@ -1,60 +0,0 @@ -# This file is generated automatically - please edit the "templates/test/local.yml" template file instead. -tasks: - - name: "test-mongodb-rapid-standalone-noauth-nossl" - tags: ["standalone", "local", "rapid", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "server" - MONGODB_VERSION: "rapid" - - func: "run tests" - - - name: "test-mongodb-rapid-standalone-auth" - tags: ["standalone", "local", "rapid", "auth", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "server" - AUTH: "auth" - MONGODB_VERSION: "rapid" - - func: "run tests" - - - name: "test-mongodb-rapid-standalone-ssl" - tags: ["standalone", "local", "rapid", "ssl", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "server" - SSL: "yes" - MONGODB_VERSION: "rapid" - - func: "run tests" - vars: - SSL: "yes" - - - name: "test-mongodb-rapid-replicaset-noauth-nossl" - tags: ["replicaset", "local", "rapid", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "replica_set" - MONGODB_VERSION: "rapid" - - func: "run tests" - - - name: "test-mongodb-rapid-replicaset-auth" - tags: ["replicaset", "local", "rapid", "auth", "pr", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "replica_set" - AUTH: "auth" - MONGODB_VERSION: "rapid" - - func: "run tests" - - - name: "test-mongodb-rapid-sharded-noauth-nossl" - tags: ["sharded", "local", "rapid", "tag"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "sharded_cluster" - MONGODB_VERSION: "rapid" - - func: "run tests" diff --git a/.evergreen/config/generated/test/local.yml b/.evergreen/config/generated/test/local.yml new file mode 100644 index 000000000..2cd7ea243 --- /dev/null +++ b/.evergreen/config/generated/test/local.yml @@ -0,0 +1,524 @@ +# This file is generated automatically - please edit the "templates/test/local.yml" template file instead. +tasks: + - name: "test-mongodb-latest-standalone-noauth-nossl" + tags: ["standalone", "local", "latest", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "server" + MONGODB_VERSION: "latest" + - func: "run tests" + + - name: "test-mongodb-latest-standalone-auth" + tags: ["standalone", "local", "latest", "auth", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "server" + AUTH: "auth" + MONGODB_VERSION: "latest" + - func: "run tests" + + - name: "test-mongodb-latest-standalone-ssl" + tags: ["standalone", "local", "latest", "ssl", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "server" + SSL: "yes" + MONGODB_VERSION: "latest" + - func: "run tests" + vars: + SSL: "yes" + + - name: "test-mongodb-latest-replicaset-noauth-nossl" + tags: ["replicaset", "local", "latest", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "replica_set" + MONGODB_VERSION: "latest" + - func: "run tests" + + - name: "test-mongodb-latest-replicaset-auth" + tags: ["replicaset", "local", "latest", "auth", "pr", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "replica_set" + AUTH: "auth" + MONGODB_VERSION: "latest" + - func: "run tests" + + - name: "test-mongodb-latest-sharded-noauth-nossl" + tags: ["sharded", "local", "latest", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "sharded_cluster" + MONGODB_VERSION: "latest" + - func: "run tests" + - name: "test-mongodb-rapid-standalone-noauth-nossl" + tags: ["standalone", "local", "rapid", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "server" + MONGODB_VERSION: "rapid" + - func: "run tests" + + - name: "test-mongodb-rapid-standalone-auth" + tags: ["standalone", "local", "rapid", "auth", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "server" + AUTH: "auth" + MONGODB_VERSION: "rapid" + - func: "run tests" + + - name: "test-mongodb-rapid-standalone-ssl" + tags: ["standalone", "local", "rapid", "ssl", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "server" + SSL: "yes" + MONGODB_VERSION: "rapid" + - func: "run tests" + vars: + SSL: "yes" + + - name: "test-mongodb-rapid-replicaset-noauth-nossl" + tags: ["replicaset", "local", "rapid", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "replica_set" + MONGODB_VERSION: "rapid" + - func: "run tests" + + - name: "test-mongodb-rapid-replicaset-auth" + tags: ["replicaset", "local", "rapid", "auth", "pr", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "replica_set" + AUTH: "auth" + MONGODB_VERSION: "rapid" + - func: "run tests" + + - name: "test-mongodb-rapid-sharded-noauth-nossl" + tags: ["sharded", "local", "rapid", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "sharded_cluster" + MONGODB_VERSION: "rapid" + - func: "run tests" + - name: "test-mongodb-7.0-standalone-noauth-nossl" + tags: ["standalone", "local", "7.0", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "server" + MONGODB_VERSION: "7.0" + - func: "run tests" + + - name: "test-mongodb-7.0-standalone-auth" + tags: ["standalone", "local", "7.0", "auth", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "server" + AUTH: "auth" + MONGODB_VERSION: "7.0" + - func: "run tests" + + - name: "test-mongodb-7.0-standalone-ssl" + tags: ["standalone", "local", "7.0", "ssl", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "server" + SSL: "yes" + MONGODB_VERSION: "7.0" + - func: "run tests" + vars: + SSL: "yes" + + - name: "test-mongodb-7.0-replicaset-noauth-nossl" + tags: ["replicaset", "local", "7.0", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "replica_set" + MONGODB_VERSION: "7.0" + - func: "run tests" + + - name: "test-mongodb-7.0-replicaset-auth" + tags: ["replicaset", "local", "7.0", "auth", "pr", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "replica_set" + AUTH: "auth" + MONGODB_VERSION: "7.0" + - func: "run tests" + + - name: "test-mongodb-7.0-sharded-noauth-nossl" + tags: ["sharded", "local", "7.0", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "sharded_cluster" + MONGODB_VERSION: "7.0" + - func: "run tests" + - name: "test-mongodb-6.0-standalone-noauth-nossl" + tags: ["standalone", "local", "6.0", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "server" + MONGODB_VERSION: "6.0" + - func: "run tests" + + - name: "test-mongodb-6.0-standalone-auth" + tags: ["standalone", "local", "6.0", "auth", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "server" + AUTH: "auth" + MONGODB_VERSION: "6.0" + - func: "run tests" + + - name: "test-mongodb-6.0-standalone-ssl" + tags: ["standalone", "local", "6.0", "ssl", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "server" + SSL: "yes" + MONGODB_VERSION: "6.0" + - func: "run tests" + vars: + SSL: "yes" + + - name: "test-mongodb-6.0-replicaset-noauth-nossl" + tags: ["replicaset", "local", "6.0", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "replica_set" + MONGODB_VERSION: "6.0" + - func: "run tests" + + - name: "test-mongodb-6.0-replicaset-auth" + tags: ["replicaset", "local", "6.0", "auth", "pr", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "replica_set" + AUTH: "auth" + MONGODB_VERSION: "6.0" + - func: "run tests" + + - name: "test-mongodb-6.0-sharded-noauth-nossl" + tags: ["sharded", "local", "6.0", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "sharded_cluster" + MONGODB_VERSION: "6.0" + - func: "run tests" + - name: "test-mongodb-5.0-standalone-noauth-nossl" + tags: ["standalone", "local", "5.0", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "server" + MONGODB_VERSION: "5.0" + - func: "run tests" + + - name: "test-mongodb-5.0-standalone-auth" + tags: ["standalone", "local", "5.0", "auth", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "server" + AUTH: "auth" + MONGODB_VERSION: "5.0" + - func: "run tests" + + - name: "test-mongodb-5.0-standalone-ssl" + tags: ["standalone", "local", "5.0", "ssl", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "server" + SSL: "yes" + MONGODB_VERSION: "5.0" + - func: "run tests" + vars: + SSL: "yes" + + - name: "test-mongodb-5.0-replicaset-noauth-nossl" + tags: ["replicaset", "local", "5.0", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "replica_set" + MONGODB_VERSION: "5.0" + - func: "run tests" + + - name: "test-mongodb-5.0-replicaset-auth" + tags: ["replicaset", "local", "5.0", "auth", "pr", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "replica_set" + AUTH: "auth" + MONGODB_VERSION: "5.0" + - func: "run tests" + + - name: "test-mongodb-5.0-sharded-noauth-nossl" + tags: ["sharded", "local", "5.0", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "sharded_cluster" + MONGODB_VERSION: "5.0" + - func: "run tests" + - name: "test-mongodb-4.4-standalone-noauth-nossl" + tags: ["standalone", "local", "4.4", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "server" + MONGODB_VERSION: "4.4" + - func: "run tests" + + - name: "test-mongodb-4.4-standalone-auth" + tags: ["standalone", "local", "4.4", "auth", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "server" + AUTH: "auth" + MONGODB_VERSION: "4.4" + - func: "run tests" + + - name: "test-mongodb-4.4-standalone-ssl" + tags: ["standalone", "local", "4.4", "ssl", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "server" + SSL: "yes" + MONGODB_VERSION: "4.4" + - func: "run tests" + vars: + SSL: "yes" + + - name: "test-mongodb-4.4-replicaset-noauth-nossl" + tags: ["replicaset", "local", "4.4", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "replica_set" + MONGODB_VERSION: "4.4" + - func: "run tests" + + - name: "test-mongodb-4.4-replicaset-auth" + tags: ["replicaset", "local", "4.4", "auth", "pr", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "replica_set" + AUTH: "auth" + MONGODB_VERSION: "4.4" + - func: "run tests" + + - name: "test-mongodb-4.4-sharded-noauth-nossl" + tags: ["sharded", "local", "4.4", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "sharded_cluster" + MONGODB_VERSION: "4.4" + - func: "run tests" + - name: "test-mongodb-4.2-standalone-noauth-nossl" + tags: ["standalone", "local", "4.2", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "server" + MONGODB_VERSION: "4.2" + - func: "run tests" + + - name: "test-mongodb-4.2-standalone-auth" + tags: ["standalone", "local", "4.2", "auth", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "server" + AUTH: "auth" + MONGODB_VERSION: "4.2" + - func: "run tests" + + - name: "test-mongodb-4.2-standalone-ssl" + tags: ["standalone", "local", "4.2", "ssl", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "server" + SSL: "yes" + MONGODB_VERSION: "4.2" + - func: "run tests" + vars: + SSL: "yes" + + - name: "test-mongodb-4.2-replicaset-noauth-nossl" + tags: ["replicaset", "local", "4.2", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "replica_set" + MONGODB_VERSION: "4.2" + - func: "run tests" + + - name: "test-mongodb-4.2-replicaset-auth" + tags: ["replicaset", "local", "4.2", "auth", "pr", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "replica_set" + AUTH: "auth" + MONGODB_VERSION: "4.2" + - func: "run tests" + + - name: "test-mongodb-4.2-sharded-noauth-nossl" + tags: ["sharded", "local", "4.2", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "sharded_cluster" + MONGODB_VERSION: "4.2" + - func: "run tests" + - name: "test-mongodb-4.0-standalone-noauth-nossl" + tags: ["standalone", "local", "4.0", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "server" + MONGODB_VERSION: "4.0" + - func: "run tests" + + - name: "test-mongodb-4.0-standalone-auth" + tags: ["standalone", "local", "4.0", "auth", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "server" + AUTH: "auth" + MONGODB_VERSION: "4.0" + - func: "run tests" + + - name: "test-mongodb-4.0-standalone-ssl" + tags: ["standalone", "local", "4.0", "ssl", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "server" + SSL: "yes" + MONGODB_VERSION: "4.0" + - func: "run tests" + vars: + SSL: "yes" + + - name: "test-mongodb-4.0-replicaset-noauth-nossl" + tags: ["replicaset", "local", "4.0", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "replica_set" + MONGODB_VERSION: "4.0" + - func: "run tests" + + - name: "test-mongodb-4.0-replicaset-auth" + tags: ["replicaset", "local", "4.0", "auth", "pr", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "replica_set" + AUTH: "auth" + MONGODB_VERSION: "4.0" + - func: "run tests" + + - name: "test-mongodb-4.0-sharded-noauth-nossl" + tags: ["sharded", "local", "4.0", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "sharded_cluster" + MONGODB_VERSION: "4.0" + - func: "run tests" + - name: "test-mongodb-3.6-standalone-noauth-nossl" + tags: ["standalone", "local", "3.6", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "server" + MONGODB_VERSION: "3.6" + - func: "run tests" + + - name: "test-mongodb-3.6-standalone-auth" + tags: ["standalone", "local", "3.6", "auth", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "server" + AUTH: "auth" + MONGODB_VERSION: "3.6" + - func: "run tests" + + - name: "test-mongodb-3.6-standalone-ssl" + tags: ["standalone", "local", "3.6", "ssl", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "server" + SSL: "yes" + MONGODB_VERSION: "3.6" + - func: "run tests" + vars: + SSL: "yes" + + - name: "test-mongodb-3.6-replicaset-noauth-nossl" + tags: ["replicaset", "local", "3.6", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "replica_set" + MONGODB_VERSION: "3.6" + - func: "run tests" + + - name: "test-mongodb-3.6-replicaset-auth" + tags: ["replicaset", "local", "3.6", "auth", "pr", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "replica_set" + AUTH: "auth" + MONGODB_VERSION: "3.6" + - func: "run tests" + + - name: "test-mongodb-3.6-sharded-noauth-nossl" + tags: ["sharded", "local", "3.6", "tag"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "sharded_cluster" + MONGODB_VERSION: "3.6" + - func: "run tests" diff --git a/.evergreen/config/generated/test/ocsp-4.4.yml b/.evergreen/config/generated/test/ocsp-4.4.yml deleted file mode 100644 index 07809715b..000000000 --- a/.evergreen/config/generated/test/ocsp-4.4.yml +++ /dev/null @@ -1,413 +0,0 @@ -# This file is generated automatically - please edit the "templates/test/ocsp.yml" template file instead. -tasks: - - name: "ocsp-test_1-rsa-delegate-4.4" - tags: ["ocsp", "4.4"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_1" - CERT_TYPE: "rsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "4.4" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-test_1-ecdsa-delegate-4.4" - tags: ["ocsp", "4.4"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_1" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "4.4" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-test_1-rsa-nodelegate-4.4" - tags: ["ocsp", "4.4"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_1" - CERT_TYPE: "rsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "4.4" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-test_1-ecdsa-nodelegate-4.4" - tags: ["ocsp", "4.4"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_1" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "4.4" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-test_2-rsa-delegate-4.4" - tags: ["ocsp", "4.4"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_2" - CERT_TYPE: "rsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "4.4" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-test_2-ecdsa-delegate-4.4" - tags: ["ocsp", "4.4"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_2" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "4.4" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-test_2-rsa-nodelegate-4.4" - tags: ["ocsp", "4.4"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_2" - CERT_TYPE: "rsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "4.4" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-test_2-ecdsa-nodelegate-4.4" - tags: ["ocsp", "4.4"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_2" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "4.4" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-test_3-rsa-delegate-4.4" - tags: ["ocsp", "4.4"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_3" - CERT_TYPE: "rsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "4.4" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-test_3-ecdsa-delegate-4.4" - tags: ["ocsp", "4.4"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_3" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "4.4" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-test_3-rsa-nodelegate-4.4" - tags: ["ocsp", "4.4"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_3" - CERT_TYPE: "rsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "4.4" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-test_3-ecdsa-nodelegate-4.4" - tags: ["ocsp", "4.4"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_3" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "4.4" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-test_4-rsa-delegate-4.4" - tags: ["ocsp", "4.4"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_4" - CERT_TYPE: "rsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "4.4" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-test_4-ecdsa-delegate-4.4" - tags: ["ocsp", "4.4"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_4" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "4.4" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-test_4-rsa-nodelegate-4.4" - tags: ["ocsp", "4.4"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_4" - CERT_TYPE: "rsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "4.4" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-test_4-ecdsa-nodelegate-4.4" - tags: ["ocsp", "4.4"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_4" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "4.4" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-soft_fail_test-rsa-4.4" - tags: ["ocsp", "4.4"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "4.4" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-soft_fail_test-ecdsa-4.4" - tags: ["ocsp", "4.4"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "4.4" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-malicious_server_test_1-rsa-delegate-4.4" - tags: ["ocsp", "4.4"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "MALICIOUS_SERVER_TEST_1" - CERT_TYPE: "rsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "4.4" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-malicious_server_test_1-ecdsa-delegate-4.4" - tags: ["ocsp", "4.4"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "MALICIOUS_SERVER_TEST_1" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "4.4" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-malicious_server_test_1-rsa-nodelegate-4.4" - tags: ["ocsp", "4.4"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "MALICIOUS_SERVER_TEST_1" - CERT_TYPE: "rsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "4.4" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-malicious_server_test_1-ecdsa-nodelegate-4.4" - tags: ["ocsp", "4.4"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "MALICIOUS_SERVER_TEST_1" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "4.4" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-malicious_server_test_2-rsa-4.4" - tags: ["ocsp", "4.4"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "4.4" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-malicious_server_test_2-ecdsa-4.4" - tags: ["ocsp", "4.4"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "4.4" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" diff --git a/.evergreen/config/generated/test/ocsp-5.0.yml b/.evergreen/config/generated/test/ocsp-5.0.yml deleted file mode 100644 index 38ecb5688..000000000 --- a/.evergreen/config/generated/test/ocsp-5.0.yml +++ /dev/null @@ -1,413 +0,0 @@ -# This file is generated automatically - please edit the "templates/test/ocsp.yml" template file instead. -tasks: - - name: "ocsp-test_1-rsa-delegate-5.0" - tags: ["ocsp", "5.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_1" - CERT_TYPE: "rsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "5.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-test_1-ecdsa-delegate-5.0" - tags: ["ocsp", "5.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_1" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "5.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-test_1-rsa-nodelegate-5.0" - tags: ["ocsp", "5.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_1" - CERT_TYPE: "rsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "5.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-test_1-ecdsa-nodelegate-5.0" - tags: ["ocsp", "5.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_1" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "5.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-test_2-rsa-delegate-5.0" - tags: ["ocsp", "5.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_2" - CERT_TYPE: "rsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "5.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-test_2-ecdsa-delegate-5.0" - tags: ["ocsp", "5.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_2" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "5.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-test_2-rsa-nodelegate-5.0" - tags: ["ocsp", "5.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_2" - CERT_TYPE: "rsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "5.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-test_2-ecdsa-nodelegate-5.0" - tags: ["ocsp", "5.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_2" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "5.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-test_3-rsa-delegate-5.0" - tags: ["ocsp", "5.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_3" - CERT_TYPE: "rsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "5.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-test_3-ecdsa-delegate-5.0" - tags: ["ocsp", "5.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_3" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "5.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-test_3-rsa-nodelegate-5.0" - tags: ["ocsp", "5.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_3" - CERT_TYPE: "rsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "5.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-test_3-ecdsa-nodelegate-5.0" - tags: ["ocsp", "5.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_3" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "5.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-test_4-rsa-delegate-5.0" - tags: ["ocsp", "5.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_4" - CERT_TYPE: "rsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "5.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-test_4-ecdsa-delegate-5.0" - tags: ["ocsp", "5.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_4" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "5.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-test_4-rsa-nodelegate-5.0" - tags: ["ocsp", "5.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_4" - CERT_TYPE: "rsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "5.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-test_4-ecdsa-nodelegate-5.0" - tags: ["ocsp", "5.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_4" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "5.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-soft_fail_test-rsa-5.0" - tags: ["ocsp", "5.0"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "5.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-soft_fail_test-ecdsa-5.0" - tags: ["ocsp", "5.0"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "5.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-malicious_server_test_1-rsa-delegate-5.0" - tags: ["ocsp", "5.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "MALICIOUS_SERVER_TEST_1" - CERT_TYPE: "rsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "5.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-malicious_server_test_1-ecdsa-delegate-5.0" - tags: ["ocsp", "5.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "MALICIOUS_SERVER_TEST_1" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "5.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-malicious_server_test_1-rsa-nodelegate-5.0" - tags: ["ocsp", "5.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "MALICIOUS_SERVER_TEST_1" - CERT_TYPE: "rsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "5.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-malicious_server_test_1-ecdsa-nodelegate-5.0" - tags: ["ocsp", "5.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "MALICIOUS_SERVER_TEST_1" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "5.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-malicious_server_test_2-rsa-5.0" - tags: ["ocsp", "5.0"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "5.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-malicious_server_test_2-ecdsa-5.0" - tags: ["ocsp", "5.0"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "5.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" diff --git a/.evergreen/config/generated/test/ocsp-6.0.yml b/.evergreen/config/generated/test/ocsp-6.0.yml deleted file mode 100644 index ee41b63b5..000000000 --- a/.evergreen/config/generated/test/ocsp-6.0.yml +++ /dev/null @@ -1,413 +0,0 @@ -# This file is generated automatically - please edit the "templates/test/ocsp.yml" template file instead. -tasks: - - name: "ocsp-test_1-rsa-delegate-6.0" - tags: ["ocsp", "6.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_1" - CERT_TYPE: "rsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "6.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-test_1-ecdsa-delegate-6.0" - tags: ["ocsp", "6.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_1" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "6.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-test_1-rsa-nodelegate-6.0" - tags: ["ocsp", "6.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_1" - CERT_TYPE: "rsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "6.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-test_1-ecdsa-nodelegate-6.0" - tags: ["ocsp", "6.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_1" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "6.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-test_2-rsa-delegate-6.0" - tags: ["ocsp", "6.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_2" - CERT_TYPE: "rsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "6.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-test_2-ecdsa-delegate-6.0" - tags: ["ocsp", "6.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_2" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "6.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-test_2-rsa-nodelegate-6.0" - tags: ["ocsp", "6.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_2" - CERT_TYPE: "rsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "6.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-test_2-ecdsa-nodelegate-6.0" - tags: ["ocsp", "6.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_2" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "6.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-test_3-rsa-delegate-6.0" - tags: ["ocsp", "6.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_3" - CERT_TYPE: "rsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "6.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-test_3-ecdsa-delegate-6.0" - tags: ["ocsp", "6.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_3" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "6.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-test_3-rsa-nodelegate-6.0" - tags: ["ocsp", "6.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_3" - CERT_TYPE: "rsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "6.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-test_3-ecdsa-nodelegate-6.0" - tags: ["ocsp", "6.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_3" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "6.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-test_4-rsa-delegate-6.0" - tags: ["ocsp", "6.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_4" - CERT_TYPE: "rsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "6.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-test_4-ecdsa-delegate-6.0" - tags: ["ocsp", "6.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_4" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "6.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-test_4-rsa-nodelegate-6.0" - tags: ["ocsp", "6.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_4" - CERT_TYPE: "rsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "6.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-test_4-ecdsa-nodelegate-6.0" - tags: ["ocsp", "6.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_4" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "6.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-soft_fail_test-rsa-6.0" - tags: ["ocsp", "6.0"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "6.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-soft_fail_test-ecdsa-6.0" - tags: ["ocsp", "6.0"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "6.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-malicious_server_test_1-rsa-delegate-6.0" - tags: ["ocsp", "6.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "MALICIOUS_SERVER_TEST_1" - CERT_TYPE: "rsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "6.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-malicious_server_test_1-ecdsa-delegate-6.0" - tags: ["ocsp", "6.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "MALICIOUS_SERVER_TEST_1" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "6.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-malicious_server_test_1-rsa-nodelegate-6.0" - tags: ["ocsp", "6.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "MALICIOUS_SERVER_TEST_1" - CERT_TYPE: "rsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "6.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-malicious_server_test_1-ecdsa-nodelegate-6.0" - tags: ["ocsp", "6.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "MALICIOUS_SERVER_TEST_1" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "6.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-malicious_server_test_2-rsa-6.0" - tags: ["ocsp", "6.0"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "6.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-malicious_server_test_2-ecdsa-6.0" - tags: ["ocsp", "6.0"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "6.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" diff --git a/.evergreen/config/generated/test/ocsp-7.0.yml b/.evergreen/config/generated/test/ocsp-7.0.yml deleted file mode 100644 index 0d9515119..000000000 --- a/.evergreen/config/generated/test/ocsp-7.0.yml +++ /dev/null @@ -1,413 +0,0 @@ -# This file is generated automatically - please edit the "templates/test/ocsp.yml" template file instead. -tasks: - - name: "ocsp-test_1-rsa-delegate-7.0" - tags: ["ocsp", "7.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_1" - CERT_TYPE: "rsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "7.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-test_1-ecdsa-delegate-7.0" - tags: ["ocsp", "7.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_1" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "7.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-test_1-rsa-nodelegate-7.0" - tags: ["ocsp", "7.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_1" - CERT_TYPE: "rsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "7.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-test_1-ecdsa-nodelegate-7.0" - tags: ["ocsp", "7.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_1" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "7.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-test_2-rsa-delegate-7.0" - tags: ["ocsp", "7.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_2" - CERT_TYPE: "rsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "7.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-test_2-ecdsa-delegate-7.0" - tags: ["ocsp", "7.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_2" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "7.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-test_2-rsa-nodelegate-7.0" - tags: ["ocsp", "7.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_2" - CERT_TYPE: "rsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "7.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-test_2-ecdsa-nodelegate-7.0" - tags: ["ocsp", "7.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_2" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "7.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-test_3-rsa-delegate-7.0" - tags: ["ocsp", "7.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_3" - CERT_TYPE: "rsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "7.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-test_3-ecdsa-delegate-7.0" - tags: ["ocsp", "7.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_3" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "7.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-test_3-rsa-nodelegate-7.0" - tags: ["ocsp", "7.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_3" - CERT_TYPE: "rsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "7.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-test_3-ecdsa-nodelegate-7.0" - tags: ["ocsp", "7.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_3" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "7.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-test_4-rsa-delegate-7.0" - tags: ["ocsp", "7.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_4" - CERT_TYPE: "rsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "7.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-test_4-ecdsa-delegate-7.0" - tags: ["ocsp", "7.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_4" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "7.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-test_4-rsa-nodelegate-7.0" - tags: ["ocsp", "7.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_4" - CERT_TYPE: "rsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "7.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-test_4-ecdsa-nodelegate-7.0" - tags: ["ocsp", "7.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_4" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "7.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-soft_fail_test-rsa-7.0" - tags: ["ocsp", "7.0"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "7.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-soft_fail_test-ecdsa-7.0" - tags: ["ocsp", "7.0"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "7.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-malicious_server_test_1-rsa-delegate-7.0" - tags: ["ocsp", "7.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "MALICIOUS_SERVER_TEST_1" - CERT_TYPE: "rsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "7.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-malicious_server_test_1-ecdsa-delegate-7.0" - tags: ["ocsp", "7.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "MALICIOUS_SERVER_TEST_1" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "7.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-malicious_server_test_1-rsa-nodelegate-7.0" - tags: ["ocsp", "7.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "MALICIOUS_SERVER_TEST_1" - CERT_TYPE: "rsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "7.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-malicious_server_test_1-ecdsa-nodelegate-7.0" - tags: ["ocsp", "7.0"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "MALICIOUS_SERVER_TEST_1" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "7.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-malicious_server_test_2-rsa-7.0" - tags: ["ocsp", "7.0"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "7.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-malicious_server_test_2-ecdsa-7.0" - tags: ["ocsp", "7.0"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "7.0" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" diff --git a/.evergreen/config/generated/test/ocsp-latest.yml b/.evergreen/config/generated/test/ocsp-latest.yml deleted file mode 100644 index 7143fae35..000000000 --- a/.evergreen/config/generated/test/ocsp-latest.yml +++ /dev/null @@ -1,413 +0,0 @@ -# This file is generated automatically - please edit the "templates/test/ocsp.yml" template file instead. -tasks: - - name: "ocsp-test_1-rsa-delegate-latest" - tags: ["ocsp", "latest"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_1" - CERT_TYPE: "rsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "latest" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-test_1-ecdsa-delegate-latest" - tags: ["ocsp", "latest"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_1" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "latest" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-test_1-rsa-nodelegate-latest" - tags: ["ocsp", "latest"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_1" - CERT_TYPE: "rsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "latest" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-test_1-ecdsa-nodelegate-latest" - tags: ["ocsp", "latest"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_1" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "latest" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-test_2-rsa-delegate-latest" - tags: ["ocsp", "latest"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_2" - CERT_TYPE: "rsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "latest" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-test_2-ecdsa-delegate-latest" - tags: ["ocsp", "latest"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_2" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "latest" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-test_2-rsa-nodelegate-latest" - tags: ["ocsp", "latest"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_2" - CERT_TYPE: "rsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "latest" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-test_2-ecdsa-nodelegate-latest" - tags: ["ocsp", "latest"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_2" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "latest" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-test_3-rsa-delegate-latest" - tags: ["ocsp", "latest"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_3" - CERT_TYPE: "rsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "latest" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-test_3-ecdsa-delegate-latest" - tags: ["ocsp", "latest"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_3" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "latest" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-test_3-rsa-nodelegate-latest" - tags: ["ocsp", "latest"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_3" - CERT_TYPE: "rsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "latest" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-test_3-ecdsa-nodelegate-latest" - tags: ["ocsp", "latest"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_3" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "latest" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-test_4-rsa-delegate-latest" - tags: ["ocsp", "latest"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_4" - CERT_TYPE: "rsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "latest" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-test_4-ecdsa-delegate-latest" - tags: ["ocsp", "latest"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_4" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "latest" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-test_4-rsa-nodelegate-latest" - tags: ["ocsp", "latest"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_4" - CERT_TYPE: "rsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "latest" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-test_4-ecdsa-nodelegate-latest" - tags: ["ocsp", "latest"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_4" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "latest" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-soft_fail_test-rsa-latest" - tags: ["ocsp", "latest"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "latest" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-soft_fail_test-ecdsa-latest" - tags: ["ocsp", "latest"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "latest" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-malicious_server_test_1-rsa-delegate-latest" - tags: ["ocsp", "latest"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "MALICIOUS_SERVER_TEST_1" - CERT_TYPE: "rsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "latest" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-malicious_server_test_1-ecdsa-delegate-latest" - tags: ["ocsp", "latest"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "MALICIOUS_SERVER_TEST_1" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "latest" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-malicious_server_test_1-rsa-nodelegate-latest" - tags: ["ocsp", "latest"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "MALICIOUS_SERVER_TEST_1" - CERT_TYPE: "rsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "latest" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-malicious_server_test_1-ecdsa-nodelegate-latest" - tags: ["ocsp", "latest"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "MALICIOUS_SERVER_TEST_1" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "latest" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-malicious_server_test_2-rsa-latest" - tags: ["ocsp", "latest"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "latest" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-malicious_server_test_2-ecdsa-latest" - tags: ["ocsp", "latest"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "latest" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" diff --git a/.evergreen/config/generated/test/ocsp-rapid.yml b/.evergreen/config/generated/test/ocsp-rapid.yml deleted file mode 100644 index e7a1a74d6..000000000 --- a/.evergreen/config/generated/test/ocsp-rapid.yml +++ /dev/null @@ -1,413 +0,0 @@ -# This file is generated automatically - please edit the "templates/test/ocsp.yml" template file instead. -tasks: - - name: "ocsp-test_1-rsa-delegate-rapid" - tags: ["ocsp", "rapid"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_1" - CERT_TYPE: "rsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "rapid" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-test_1-ecdsa-delegate-rapid" - tags: ["ocsp", "rapid"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_1" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "rapid" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-test_1-rsa-nodelegate-rapid" - tags: ["ocsp", "rapid"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_1" - CERT_TYPE: "rsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "rapid" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-test_1-ecdsa-nodelegate-rapid" - tags: ["ocsp", "rapid"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_1" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "rapid" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-test_2-rsa-delegate-rapid" - tags: ["ocsp", "rapid"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_2" - CERT_TYPE: "rsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "rapid" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-test_2-ecdsa-delegate-rapid" - tags: ["ocsp", "rapid"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_2" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "rapid" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-test_2-rsa-nodelegate-rapid" - tags: ["ocsp", "rapid"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_2" - CERT_TYPE: "rsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "rapid" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-test_2-ecdsa-nodelegate-rapid" - tags: ["ocsp", "rapid"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_2" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "rapid" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-test_3-rsa-delegate-rapid" - tags: ["ocsp", "rapid"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_3" - CERT_TYPE: "rsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "rapid" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-test_3-ecdsa-delegate-rapid" - tags: ["ocsp", "rapid"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_3" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "rapid" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-test_3-rsa-nodelegate-rapid" - tags: ["ocsp", "rapid"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_3" - CERT_TYPE: "rsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "rapid" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-test_3-ecdsa-nodelegate-rapid" - tags: ["ocsp", "rapid"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_3" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "rapid" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-test_4-rsa-delegate-rapid" - tags: ["ocsp", "rapid"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_4" - CERT_TYPE: "rsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "rapid" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-test_4-ecdsa-delegate-rapid" - tags: ["ocsp", "rapid"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_4" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "rapid" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-test_4-rsa-nodelegate-rapid" - tags: ["ocsp", "rapid"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_4" - CERT_TYPE: "rsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "rapid" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-test_4-ecdsa-nodelegate-rapid" - tags: ["ocsp", "rapid"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "TEST_4" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "rapid" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-soft_fail_test-rsa-rapid" - tags: ["ocsp", "rapid"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "rapid" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-soft_fail_test-ecdsa-rapid" - tags: ["ocsp", "rapid"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "rapid" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-success.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-malicious_server_test_1-rsa-delegate-rapid" - tags: ["ocsp", "rapid"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "MALICIOUS_SERVER_TEST_1" - CERT_TYPE: "rsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "rapid" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-malicious_server_test_1-ecdsa-delegate-rapid" - tags: ["ocsp", "rapid"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "MALICIOUS_SERVER_TEST_1" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "on" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "rapid" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-malicious_server_test_1-rsa-nodelegate-rapid" - tags: ["ocsp", "rapid"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "MALICIOUS_SERVER_TEST_1" - CERT_TYPE: "rsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "rapid" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-malicious_server_test_1-ecdsa-nodelegate-rapid" - tags: ["ocsp", "rapid"] - commands: - - func: "run OCSP responder" - vars: - TEST_COLUMN: "MALICIOUS_SERVER_TEST_1" - CERT_TYPE: "ecdsa" - USE_DELEGATE: "off" - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "rapid" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" - - - name: "ocsp-malicious_server_test_2-rsa-rapid" - tags: ["ocsp", "rapid"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "rapid" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" - - - name: "ocsp-malicious_server_test_2-ecdsa-rapid" - tags: ["ocsp", "rapid"] - commands: - - func: "bootstrap mongo-orchestration" - vars: - MONGODB_VERSION: "rapid" - TOPOLOGY: "server" - ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple-disableStapling.json" - - func: "run tests" - vars: - TESTS: "tests/ocsp-failure.phpt" - APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" diff --git a/.evergreen/config/generated/test/ocsp.yml b/.evergreen/config/generated/test/ocsp.yml new file mode 100644 index 000000000..298d5067a --- /dev/null +++ b/.evergreen/config/generated/test/ocsp.yml @@ -0,0 +1,2468 @@ +# This file is generated automatically - please edit the "templates/test/ocsp.yml" template file instead. +tasks: + - name: "ocsp-test_1-rsa-delegate-latest" + tags: ["ocsp", "latest"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_1" + CERT_TYPE: "rsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "latest" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-test_1-ecdsa-delegate-latest" + tags: ["ocsp", "latest"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_1" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "latest" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-test_1-rsa-nodelegate-latest" + tags: ["ocsp", "latest"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_1" + CERT_TYPE: "rsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "latest" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-test_1-ecdsa-nodelegate-latest" + tags: ["ocsp", "latest"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_1" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "latest" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-test_2-rsa-delegate-latest" + tags: ["ocsp", "latest"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_2" + CERT_TYPE: "rsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "latest" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-test_2-ecdsa-delegate-latest" + tags: ["ocsp", "latest"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_2" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "latest" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-test_2-rsa-nodelegate-latest" + tags: ["ocsp", "latest"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_2" + CERT_TYPE: "rsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "latest" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-test_2-ecdsa-nodelegate-latest" + tags: ["ocsp", "latest"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_2" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "latest" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-test_3-rsa-delegate-latest" + tags: ["ocsp", "latest"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_3" + CERT_TYPE: "rsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "latest" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-test_3-ecdsa-delegate-latest" + tags: ["ocsp", "latest"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_3" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "latest" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-test_3-rsa-nodelegate-latest" + tags: ["ocsp", "latest"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_3" + CERT_TYPE: "rsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "latest" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-test_3-ecdsa-nodelegate-latest" + tags: ["ocsp", "latest"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_3" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "latest" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-test_4-rsa-delegate-latest" + tags: ["ocsp", "latest"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_4" + CERT_TYPE: "rsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "latest" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-test_4-ecdsa-delegate-latest" + tags: ["ocsp", "latest"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_4" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "latest" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-test_4-rsa-nodelegate-latest" + tags: ["ocsp", "latest"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_4" + CERT_TYPE: "rsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "latest" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-test_4-ecdsa-nodelegate-latest" + tags: ["ocsp", "latest"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_4" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "latest" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-soft_fail_test-rsa-latest" + tags: ["ocsp", "latest"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "latest" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-soft_fail_test-ecdsa-latest" + tags: ["ocsp", "latest"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "latest" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-malicious_server_test_1-rsa-delegate-latest" + tags: ["ocsp", "latest"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "MALICIOUS_SERVER_TEST_1" + CERT_TYPE: "rsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "latest" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-malicious_server_test_1-ecdsa-delegate-latest" + tags: ["ocsp", "latest"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "MALICIOUS_SERVER_TEST_1" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "latest" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-malicious_server_test_1-rsa-nodelegate-latest" + tags: ["ocsp", "latest"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "MALICIOUS_SERVER_TEST_1" + CERT_TYPE: "rsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "latest" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-malicious_server_test_1-ecdsa-nodelegate-latest" + tags: ["ocsp", "latest"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "MALICIOUS_SERVER_TEST_1" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "latest" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-malicious_server_test_2-rsa-latest" + tags: ["ocsp", "latest"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "latest" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-malicious_server_test_2-ecdsa-latest" + tags: ["ocsp", "latest"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "latest" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + - name: "ocsp-test_1-rsa-delegate-rapid" + tags: ["ocsp", "rapid"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_1" + CERT_TYPE: "rsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "rapid" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-test_1-ecdsa-delegate-rapid" + tags: ["ocsp", "rapid"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_1" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "rapid" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-test_1-rsa-nodelegate-rapid" + tags: ["ocsp", "rapid"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_1" + CERT_TYPE: "rsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "rapid" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-test_1-ecdsa-nodelegate-rapid" + tags: ["ocsp", "rapid"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_1" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "rapid" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-test_2-rsa-delegate-rapid" + tags: ["ocsp", "rapid"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_2" + CERT_TYPE: "rsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "rapid" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-test_2-ecdsa-delegate-rapid" + tags: ["ocsp", "rapid"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_2" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "rapid" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-test_2-rsa-nodelegate-rapid" + tags: ["ocsp", "rapid"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_2" + CERT_TYPE: "rsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "rapid" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-test_2-ecdsa-nodelegate-rapid" + tags: ["ocsp", "rapid"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_2" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "rapid" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-test_3-rsa-delegate-rapid" + tags: ["ocsp", "rapid"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_3" + CERT_TYPE: "rsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "rapid" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-test_3-ecdsa-delegate-rapid" + tags: ["ocsp", "rapid"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_3" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "rapid" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-test_3-rsa-nodelegate-rapid" + tags: ["ocsp", "rapid"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_3" + CERT_TYPE: "rsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "rapid" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-test_3-ecdsa-nodelegate-rapid" + tags: ["ocsp", "rapid"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_3" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "rapid" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-test_4-rsa-delegate-rapid" + tags: ["ocsp", "rapid"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_4" + CERT_TYPE: "rsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "rapid" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-test_4-ecdsa-delegate-rapid" + tags: ["ocsp", "rapid"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_4" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "rapid" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-test_4-rsa-nodelegate-rapid" + tags: ["ocsp", "rapid"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_4" + CERT_TYPE: "rsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "rapid" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-test_4-ecdsa-nodelegate-rapid" + tags: ["ocsp", "rapid"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_4" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "rapid" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-soft_fail_test-rsa-rapid" + tags: ["ocsp", "rapid"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "rapid" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-soft_fail_test-ecdsa-rapid" + tags: ["ocsp", "rapid"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "rapid" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-malicious_server_test_1-rsa-delegate-rapid" + tags: ["ocsp", "rapid"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "MALICIOUS_SERVER_TEST_1" + CERT_TYPE: "rsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "rapid" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-malicious_server_test_1-ecdsa-delegate-rapid" + tags: ["ocsp", "rapid"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "MALICIOUS_SERVER_TEST_1" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "rapid" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-malicious_server_test_1-rsa-nodelegate-rapid" + tags: ["ocsp", "rapid"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "MALICIOUS_SERVER_TEST_1" + CERT_TYPE: "rsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "rapid" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-malicious_server_test_1-ecdsa-nodelegate-rapid" + tags: ["ocsp", "rapid"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "MALICIOUS_SERVER_TEST_1" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "rapid" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-malicious_server_test_2-rsa-rapid" + tags: ["ocsp", "rapid"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "rapid" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-malicious_server_test_2-ecdsa-rapid" + tags: ["ocsp", "rapid"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "rapid" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + - name: "ocsp-test_1-rsa-delegate-7.0" + tags: ["ocsp", "7.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_1" + CERT_TYPE: "rsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "7.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-test_1-ecdsa-delegate-7.0" + tags: ["ocsp", "7.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_1" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "7.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-test_1-rsa-nodelegate-7.0" + tags: ["ocsp", "7.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_1" + CERT_TYPE: "rsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "7.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-test_1-ecdsa-nodelegate-7.0" + tags: ["ocsp", "7.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_1" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "7.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-test_2-rsa-delegate-7.0" + tags: ["ocsp", "7.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_2" + CERT_TYPE: "rsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "7.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-test_2-ecdsa-delegate-7.0" + tags: ["ocsp", "7.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_2" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "7.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-test_2-rsa-nodelegate-7.0" + tags: ["ocsp", "7.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_2" + CERT_TYPE: "rsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "7.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-test_2-ecdsa-nodelegate-7.0" + tags: ["ocsp", "7.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_2" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "7.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-test_3-rsa-delegate-7.0" + tags: ["ocsp", "7.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_3" + CERT_TYPE: "rsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "7.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-test_3-ecdsa-delegate-7.0" + tags: ["ocsp", "7.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_3" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "7.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-test_3-rsa-nodelegate-7.0" + tags: ["ocsp", "7.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_3" + CERT_TYPE: "rsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "7.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-test_3-ecdsa-nodelegate-7.0" + tags: ["ocsp", "7.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_3" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "7.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-test_4-rsa-delegate-7.0" + tags: ["ocsp", "7.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_4" + CERT_TYPE: "rsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "7.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-test_4-ecdsa-delegate-7.0" + tags: ["ocsp", "7.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_4" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "7.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-test_4-rsa-nodelegate-7.0" + tags: ["ocsp", "7.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_4" + CERT_TYPE: "rsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "7.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-test_4-ecdsa-nodelegate-7.0" + tags: ["ocsp", "7.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_4" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "7.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-soft_fail_test-rsa-7.0" + tags: ["ocsp", "7.0"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "7.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-soft_fail_test-ecdsa-7.0" + tags: ["ocsp", "7.0"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "7.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-malicious_server_test_1-rsa-delegate-7.0" + tags: ["ocsp", "7.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "MALICIOUS_SERVER_TEST_1" + CERT_TYPE: "rsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "7.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-malicious_server_test_1-ecdsa-delegate-7.0" + tags: ["ocsp", "7.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "MALICIOUS_SERVER_TEST_1" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "7.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-malicious_server_test_1-rsa-nodelegate-7.0" + tags: ["ocsp", "7.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "MALICIOUS_SERVER_TEST_1" + CERT_TYPE: "rsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "7.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-malicious_server_test_1-ecdsa-nodelegate-7.0" + tags: ["ocsp", "7.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "MALICIOUS_SERVER_TEST_1" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "7.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-malicious_server_test_2-rsa-7.0" + tags: ["ocsp", "7.0"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "7.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-malicious_server_test_2-ecdsa-7.0" + tags: ["ocsp", "7.0"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "7.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + - name: "ocsp-test_1-rsa-delegate-6.0" + tags: ["ocsp", "6.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_1" + CERT_TYPE: "rsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "6.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-test_1-ecdsa-delegate-6.0" + tags: ["ocsp", "6.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_1" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "6.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-test_1-rsa-nodelegate-6.0" + tags: ["ocsp", "6.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_1" + CERT_TYPE: "rsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "6.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-test_1-ecdsa-nodelegate-6.0" + tags: ["ocsp", "6.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_1" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "6.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-test_2-rsa-delegate-6.0" + tags: ["ocsp", "6.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_2" + CERT_TYPE: "rsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "6.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-test_2-ecdsa-delegate-6.0" + tags: ["ocsp", "6.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_2" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "6.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-test_2-rsa-nodelegate-6.0" + tags: ["ocsp", "6.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_2" + CERT_TYPE: "rsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "6.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-test_2-ecdsa-nodelegate-6.0" + tags: ["ocsp", "6.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_2" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "6.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-test_3-rsa-delegate-6.0" + tags: ["ocsp", "6.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_3" + CERT_TYPE: "rsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "6.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-test_3-ecdsa-delegate-6.0" + tags: ["ocsp", "6.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_3" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "6.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-test_3-rsa-nodelegate-6.0" + tags: ["ocsp", "6.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_3" + CERT_TYPE: "rsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "6.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-test_3-ecdsa-nodelegate-6.0" + tags: ["ocsp", "6.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_3" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "6.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-test_4-rsa-delegate-6.0" + tags: ["ocsp", "6.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_4" + CERT_TYPE: "rsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "6.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-test_4-ecdsa-delegate-6.0" + tags: ["ocsp", "6.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_4" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "6.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-test_4-rsa-nodelegate-6.0" + tags: ["ocsp", "6.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_4" + CERT_TYPE: "rsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "6.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-test_4-ecdsa-nodelegate-6.0" + tags: ["ocsp", "6.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_4" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "6.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-soft_fail_test-rsa-6.0" + tags: ["ocsp", "6.0"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "6.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-soft_fail_test-ecdsa-6.0" + tags: ["ocsp", "6.0"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "6.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-malicious_server_test_1-rsa-delegate-6.0" + tags: ["ocsp", "6.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "MALICIOUS_SERVER_TEST_1" + CERT_TYPE: "rsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "6.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-malicious_server_test_1-ecdsa-delegate-6.0" + tags: ["ocsp", "6.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "MALICIOUS_SERVER_TEST_1" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "6.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-malicious_server_test_1-rsa-nodelegate-6.0" + tags: ["ocsp", "6.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "MALICIOUS_SERVER_TEST_1" + CERT_TYPE: "rsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "6.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-malicious_server_test_1-ecdsa-nodelegate-6.0" + tags: ["ocsp", "6.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "MALICIOUS_SERVER_TEST_1" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "6.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-malicious_server_test_2-rsa-6.0" + tags: ["ocsp", "6.0"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "6.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-malicious_server_test_2-ecdsa-6.0" + tags: ["ocsp", "6.0"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "6.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + - name: "ocsp-test_1-rsa-delegate-5.0" + tags: ["ocsp", "5.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_1" + CERT_TYPE: "rsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "5.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-test_1-ecdsa-delegate-5.0" + tags: ["ocsp", "5.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_1" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "5.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-test_1-rsa-nodelegate-5.0" + tags: ["ocsp", "5.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_1" + CERT_TYPE: "rsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "5.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-test_1-ecdsa-nodelegate-5.0" + tags: ["ocsp", "5.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_1" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "5.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-test_2-rsa-delegate-5.0" + tags: ["ocsp", "5.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_2" + CERT_TYPE: "rsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "5.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-test_2-ecdsa-delegate-5.0" + tags: ["ocsp", "5.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_2" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "5.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-test_2-rsa-nodelegate-5.0" + tags: ["ocsp", "5.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_2" + CERT_TYPE: "rsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "5.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-test_2-ecdsa-nodelegate-5.0" + tags: ["ocsp", "5.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_2" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "5.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-test_3-rsa-delegate-5.0" + tags: ["ocsp", "5.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_3" + CERT_TYPE: "rsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "5.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-test_3-ecdsa-delegate-5.0" + tags: ["ocsp", "5.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_3" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "5.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-test_3-rsa-nodelegate-5.0" + tags: ["ocsp", "5.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_3" + CERT_TYPE: "rsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "5.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-test_3-ecdsa-nodelegate-5.0" + tags: ["ocsp", "5.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_3" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "5.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-test_4-rsa-delegate-5.0" + tags: ["ocsp", "5.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_4" + CERT_TYPE: "rsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "5.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-test_4-ecdsa-delegate-5.0" + tags: ["ocsp", "5.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_4" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "5.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-test_4-rsa-nodelegate-5.0" + tags: ["ocsp", "5.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_4" + CERT_TYPE: "rsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "5.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-test_4-ecdsa-nodelegate-5.0" + tags: ["ocsp", "5.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_4" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "5.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-soft_fail_test-rsa-5.0" + tags: ["ocsp", "5.0"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "5.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-soft_fail_test-ecdsa-5.0" + tags: ["ocsp", "5.0"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "5.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-malicious_server_test_1-rsa-delegate-5.0" + tags: ["ocsp", "5.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "MALICIOUS_SERVER_TEST_1" + CERT_TYPE: "rsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "5.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-malicious_server_test_1-ecdsa-delegate-5.0" + tags: ["ocsp", "5.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "MALICIOUS_SERVER_TEST_1" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "5.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-malicious_server_test_1-rsa-nodelegate-5.0" + tags: ["ocsp", "5.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "MALICIOUS_SERVER_TEST_1" + CERT_TYPE: "rsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "5.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-malicious_server_test_1-ecdsa-nodelegate-5.0" + tags: ["ocsp", "5.0"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "MALICIOUS_SERVER_TEST_1" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "5.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-malicious_server_test_2-rsa-5.0" + tags: ["ocsp", "5.0"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "5.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-malicious_server_test_2-ecdsa-5.0" + tags: ["ocsp", "5.0"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "5.0" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + - name: "ocsp-test_1-rsa-delegate-4.4" + tags: ["ocsp", "4.4"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_1" + CERT_TYPE: "rsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "4.4" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-test_1-ecdsa-delegate-4.4" + tags: ["ocsp", "4.4"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_1" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "4.4" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-test_1-rsa-nodelegate-4.4" + tags: ["ocsp", "4.4"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_1" + CERT_TYPE: "rsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "4.4" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-test_1-ecdsa-nodelegate-4.4" + tags: ["ocsp", "4.4"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_1" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "4.4" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-test_2-rsa-delegate-4.4" + tags: ["ocsp", "4.4"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_2" + CERT_TYPE: "rsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "4.4" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-test_2-ecdsa-delegate-4.4" + tags: ["ocsp", "4.4"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_2" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "4.4" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-test_2-rsa-nodelegate-4.4" + tags: ["ocsp", "4.4"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_2" + CERT_TYPE: "rsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "4.4" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-test_2-ecdsa-nodelegate-4.4" + tags: ["ocsp", "4.4"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_2" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "4.4" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-test_3-rsa-delegate-4.4" + tags: ["ocsp", "4.4"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_3" + CERT_TYPE: "rsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "4.4" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-test_3-ecdsa-delegate-4.4" + tags: ["ocsp", "4.4"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_3" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "4.4" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-test_3-rsa-nodelegate-4.4" + tags: ["ocsp", "4.4"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_3" + CERT_TYPE: "rsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "4.4" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-test_3-ecdsa-nodelegate-4.4" + tags: ["ocsp", "4.4"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_3" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "4.4" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-test_4-rsa-delegate-4.4" + tags: ["ocsp", "4.4"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_4" + CERT_TYPE: "rsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "4.4" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-test_4-ecdsa-delegate-4.4" + tags: ["ocsp", "4.4"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_4" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "4.4" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-test_4-rsa-nodelegate-4.4" + tags: ["ocsp", "4.4"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_4" + CERT_TYPE: "rsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "4.4" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-test_4-ecdsa-nodelegate-4.4" + tags: ["ocsp", "4.4"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "TEST_4" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "4.4" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-soft_fail_test-rsa-4.4" + tags: ["ocsp", "4.4"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "4.4" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-soft_fail_test-ecdsa-4.4" + tags: ["ocsp", "4.4"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "4.4" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-success.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-malicious_server_test_1-rsa-delegate-4.4" + tags: ["ocsp", "4.4"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "MALICIOUS_SERVER_TEST_1" + CERT_TYPE: "rsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "4.4" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-malicious_server_test_1-ecdsa-delegate-4.4" + tags: ["ocsp", "4.4"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "MALICIOUS_SERVER_TEST_1" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "on" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "4.4" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-malicious_server_test_1-rsa-nodelegate-4.4" + tags: ["ocsp", "4.4"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "MALICIOUS_SERVER_TEST_1" + CERT_TYPE: "rsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "4.4" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-malicious_server_test_1-ecdsa-nodelegate-4.4" + tags: ["ocsp", "4.4"] + commands: + - func: "run OCSP responder" + vars: + TEST_COLUMN: "MALICIOUS_SERVER_TEST_1" + CERT_TYPE: "ecdsa" + USE_DELEGATE: "off" + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "4.4" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" + + - name: "ocsp-malicious_server_test_2-rsa-4.4" + tags: ["ocsp", "4.4"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "4.4" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "rsa-basic-tls-ocsp-mustStaple-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/rsa/ca.pem" + + - name: "ocsp-malicious_server_test_2-ecdsa-4.4" + tags: ["ocsp", "4.4"] + commands: + - func: "bootstrap mongo-orchestration" + vars: + MONGODB_VERSION: "4.4" + TOPOLOGY: "server" + ORCHESTRATION_FILE: "ecdsa-basic-tls-ocsp-mustStaple-disableStapling.json" + - func: "run tests" + vars: + TESTS: "tests/ocsp-failure.phpt" + APPEND_URI: "/?tls=true&tlsCAFile=${DRIVERS_TOOLS}/.evergreen/ocsp/ecdsa/ca.pem" diff --git a/.evergreen/config/generated/test/require-api-version-5.0.yml b/.evergreen/config/generated/test/require-api-version-5.0.yml deleted file mode 100644 index 958aca284..000000000 --- a/.evergreen/config/generated/test/require-api-version-5.0.yml +++ /dev/null @@ -1,14 +0,0 @@ -# This file is generated automatically - please edit the "templates/test/require-api-version.yml" template file instead. -tasks: - - name: "test-requireApiVersion-5.0" - tags: [ "standalone", "local", "5.0", "versioned_api", "tag" ] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "server" - AUTH: "auth" - REQUIRE_API_VERSION: "yes" - MONGODB_VERSION: "5.0" - - func: "run tests" - vars: - API_VERSION: "1" diff --git a/.evergreen/config/generated/test/require-api-version-6.0.yml b/.evergreen/config/generated/test/require-api-version-6.0.yml deleted file mode 100644 index a3cba906d..000000000 --- a/.evergreen/config/generated/test/require-api-version-6.0.yml +++ /dev/null @@ -1,14 +0,0 @@ -# This file is generated automatically - please edit the "templates/test/require-api-version.yml" template file instead. -tasks: - - name: "test-requireApiVersion-6.0" - tags: [ "standalone", "local", "6.0", "versioned_api", "tag" ] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "server" - AUTH: "auth" - REQUIRE_API_VERSION: "yes" - MONGODB_VERSION: "6.0" - - func: "run tests" - vars: - API_VERSION: "1" diff --git a/.evergreen/config/generated/test/require-api-version-7.0.yml b/.evergreen/config/generated/test/require-api-version-7.0.yml deleted file mode 100644 index e1e614677..000000000 --- a/.evergreen/config/generated/test/require-api-version-7.0.yml +++ /dev/null @@ -1,14 +0,0 @@ -# This file is generated automatically - please edit the "templates/test/require-api-version.yml" template file instead. -tasks: - - name: "test-requireApiVersion-7.0" - tags: [ "standalone", "local", "7.0", "versioned_api", "tag" ] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "server" - AUTH: "auth" - REQUIRE_API_VERSION: "yes" - MONGODB_VERSION: "7.0" - - func: "run tests" - vars: - API_VERSION: "1" diff --git a/.evergreen/config/generated/test/require-api-version-latest.yml b/.evergreen/config/generated/test/require-api-version-latest.yml deleted file mode 100644 index 0208b614d..000000000 --- a/.evergreen/config/generated/test/require-api-version-latest.yml +++ /dev/null @@ -1,14 +0,0 @@ -# This file is generated automatically - please edit the "templates/test/require-api-version.yml" template file instead. -tasks: - - name: "test-requireApiVersion-latest" - tags: [ "standalone", "local", "latest", "versioned_api", "tag" ] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "server" - AUTH: "auth" - REQUIRE_API_VERSION: "yes" - MONGODB_VERSION: "latest" - - func: "run tests" - vars: - API_VERSION: "1" diff --git a/.evergreen/config/generated/test/require-api-version-rapid.yml b/.evergreen/config/generated/test/require-api-version-rapid.yml deleted file mode 100644 index da9f30504..000000000 --- a/.evergreen/config/generated/test/require-api-version-rapid.yml +++ /dev/null @@ -1,14 +0,0 @@ -# This file is generated automatically - please edit the "templates/test/require-api-version.yml" template file instead. -tasks: - - name: "test-requireApiVersion-rapid" - tags: [ "standalone", "local", "rapid", "versioned_api", "tag" ] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "server" - AUTH: "auth" - REQUIRE_API_VERSION: "yes" - MONGODB_VERSION: "rapid" - - func: "run tests" - vars: - API_VERSION: "1" diff --git a/.evergreen/config/generated/test/require-api-version.yml b/.evergreen/config/generated/test/require-api-version.yml new file mode 100644 index 000000000..490cac73a --- /dev/null +++ b/.evergreen/config/generated/test/require-api-version.yml @@ -0,0 +1,62 @@ +# This file is generated automatically - please edit the "templates/test/require-api-version.yml" template file instead. +tasks: + - name: "test-requireApiVersion-latest" + tags: [ "standalone", "local", "latest", "versioned_api", "tag" ] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "server" + AUTH: "auth" + REQUIRE_API_VERSION: "yes" + MONGODB_VERSION: "latest" + - func: "run tests" + vars: + API_VERSION: "1" + - name: "test-requireApiVersion-rapid" + tags: [ "standalone", "local", "rapid", "versioned_api", "tag" ] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "server" + AUTH: "auth" + REQUIRE_API_VERSION: "yes" + MONGODB_VERSION: "rapid" + - func: "run tests" + vars: + API_VERSION: "1" + - name: "test-requireApiVersion-7.0" + tags: [ "standalone", "local", "7.0", "versioned_api", "tag" ] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "server" + AUTH: "auth" + REQUIRE_API_VERSION: "yes" + MONGODB_VERSION: "7.0" + - func: "run tests" + vars: + API_VERSION: "1" + - name: "test-requireApiVersion-6.0" + tags: [ "standalone", "local", "6.0", "versioned_api", "tag" ] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "server" + AUTH: "auth" + REQUIRE_API_VERSION: "yes" + MONGODB_VERSION: "6.0" + - func: "run tests" + vars: + API_VERSION: "1" + - name: "test-requireApiVersion-5.0" + tags: [ "standalone", "local", "5.0", "versioned_api", "tag" ] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "server" + AUTH: "auth" + REQUIRE_API_VERSION: "yes" + MONGODB_VERSION: "5.0" + - func: "run tests" + vars: + API_VERSION: "1" diff --git a/.evergreen/config/generated/test/skip-crypt-shared-6.0.yml b/.evergreen/config/generated/test/skip-crypt-shared-6.0.yml deleted file mode 100644 index e2e07bb8d..000000000 --- a/.evergreen/config/generated/test/skip-crypt-shared-6.0.yml +++ /dev/null @@ -1,12 +0,0 @@ -# This file is generated automatically - please edit the "templates/test/skip-crypt-shared.yml" template file instead. -tasks: - - name: "test-skip_crypt_shared-6.0" - tags: [ "replicaset", "local", "6.0", "skip_crypt_shared" ] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "replica_set" - MONGODB_VERSION: "6.0" - - func: "run tests" - vars: - SKIP_CRYPT_SHARED: "yes" diff --git a/.evergreen/config/generated/test/skip-crypt-shared-7.0.yml b/.evergreen/config/generated/test/skip-crypt-shared-7.0.yml deleted file mode 100644 index ad244fa84..000000000 --- a/.evergreen/config/generated/test/skip-crypt-shared-7.0.yml +++ /dev/null @@ -1,12 +0,0 @@ -# This file is generated automatically - please edit the "templates/test/skip-crypt-shared.yml" template file instead. -tasks: - - name: "test-skip_crypt_shared-7.0" - tags: [ "replicaset", "local", "7.0", "skip_crypt_shared" ] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "replica_set" - MONGODB_VERSION: "7.0" - - func: "run tests" - vars: - SKIP_CRYPT_SHARED: "yes" diff --git a/.evergreen/config/generated/test/skip-crypt-shared-latest.yml b/.evergreen/config/generated/test/skip-crypt-shared-latest.yml deleted file mode 100644 index 9f5c10eb9..000000000 --- a/.evergreen/config/generated/test/skip-crypt-shared-latest.yml +++ /dev/null @@ -1,12 +0,0 @@ -# This file is generated automatically - please edit the "templates/test/skip-crypt-shared.yml" template file instead. -tasks: - - name: "test-skip_crypt_shared-latest" - tags: [ "replicaset", "local", "latest", "skip_crypt_shared" ] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "replica_set" - MONGODB_VERSION: "latest" - - func: "run tests" - vars: - SKIP_CRYPT_SHARED: "yes" diff --git a/.evergreen/config/generated/test/skip-crypt-shared-rapid.yml b/.evergreen/config/generated/test/skip-crypt-shared-rapid.yml deleted file mode 100644 index 208ef05a3..000000000 --- a/.evergreen/config/generated/test/skip-crypt-shared-rapid.yml +++ /dev/null @@ -1,12 +0,0 @@ -# This file is generated automatically - please edit the "templates/test/skip-crypt-shared.yml" template file instead. -tasks: - - name: "test-skip_crypt_shared-rapid" - tags: [ "replicaset", "local", "rapid", "skip_crypt_shared" ] - commands: - - func: "bootstrap mongo-orchestration" - vars: - TOPOLOGY: "replica_set" - MONGODB_VERSION: "rapid" - - func: "run tests" - vars: - SKIP_CRYPT_SHARED: "yes" diff --git a/.evergreen/config/generated/test/skip-crypt-shared.yml b/.evergreen/config/generated/test/skip-crypt-shared.yml new file mode 100644 index 000000000..7a2f50e5a --- /dev/null +++ b/.evergreen/config/generated/test/skip-crypt-shared.yml @@ -0,0 +1,42 @@ +# This file is generated automatically - please edit the "templates/test/skip-crypt-shared.yml" template file instead. +tasks: + - name: "test-skip_crypt_shared-latest" + tags: [ "replicaset", "local", "latest", "skip_crypt_shared" ] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "replica_set" + MONGODB_VERSION: "latest" + - func: "run tests" + vars: + SKIP_CRYPT_SHARED: "yes" + - name: "test-skip_crypt_shared-rapid" + tags: [ "replicaset", "local", "rapid", "skip_crypt_shared" ] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "replica_set" + MONGODB_VERSION: "rapid" + - func: "run tests" + vars: + SKIP_CRYPT_SHARED: "yes" + - name: "test-skip_crypt_shared-7.0" + tags: [ "replicaset", "local", "7.0", "skip_crypt_shared" ] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "replica_set" + MONGODB_VERSION: "7.0" + - func: "run tests" + vars: + SKIP_CRYPT_SHARED: "yes" + - name: "test-skip_crypt_shared-6.0" + tags: [ "replicaset", "local", "6.0", "skip_crypt_shared" ] + commands: + - func: "bootstrap mongo-orchestration" + vars: + TOPOLOGY: "replica_set" + MONGODB_VERSION: "6.0" + - func: "run tests" + vars: + SKIP_CRYPT_SHARED: "yes" diff --git a/.evergreen/config/templates/build/build-libmongoc.yml b/.evergreen/config/templates/build/build-libmongoc.yml index aaa6dd70e..3a32b2f89 100644 --- a/.evergreen/config/templates/build/build-libmongoc.yml +++ b/.evergreen/config/templates/build/build-libmongoc.yml @@ -4,7 +4,6 @@ # These tasks are used in the build task group "build-php-libmongoc" defined in .evergreen/config/build-task-groups.yml, # where the "max_hosts" setting must be set to the number of enabled tasks. # Last but not least, make sure the corresponding test variants are enabled in .evergreen/config/test-variants.yml -tasks: - name: "build-php-%phpVersion%-libmongoc-lowest-supported" tags: ["build-libmongoc", "php%phpVersion%"] commands: diff --git a/.evergreen/config/templates/build/build-php.yml b/.evergreen/config/templates/build/build-php.yml index ca9e656c5..c1c868109 100644 --- a/.evergreen/config/templates/build/build-php.yml +++ b/.evergreen/config/templates/build/build-php.yml @@ -1,4 +1,3 @@ -tasks: - name: "build-php-%phpVersion%" tags: ["build", "php%phpVersion%", "pr", "tag"] commands: diff --git a/.evergreen/config/templates/test-variant/full.yml b/.evergreen/config/templates/test-variant/full.yml index ff6bca62f..d0ac5da66 100644 --- a/.evergreen/config/templates/test-variant/full.yml +++ b/.evergreen/config/templates/test-variant/full.yml @@ -1,4 +1,3 @@ -buildvariants: - name: test-debian11-php-%phpVersion% tags: ["test", "debian", "x64", "php%phpVersion%", "pr", "tag"] display_name: "Test: Debian 11, PHP %phpVersion%" diff --git a/.evergreen/config/templates/test-variant/libmongoc.yml b/.evergreen/config/templates/test-variant/libmongoc.yml index 1ff5eb66d..a0bc2711b 100644 --- a/.evergreen/config/templates/test-variant/libmongoc.yml +++ b/.evergreen/config/templates/test-variant/libmongoc.yml @@ -1,4 +1,3 @@ -buildvariants: # Variants with different libmongoc - name: test-debian11-php-%phpVersion%-libmongoc-lowest-supported display_name: "Test: Debian 11, PHP %phpVersion%, libmongoc lowest" diff --git a/.evergreen/config/templates/test/load-balanced.yml b/.evergreen/config/templates/test/load-balanced.yml index fab40de90..3303d5b14 100644 --- a/.evergreen/config/templates/test/load-balanced.yml +++ b/.evergreen/config/templates/test/load-balanced.yml @@ -1,4 +1,3 @@ -tasks: - name: "test-mongodb-%mongodbVersion%-loadbalanced" tags: ["loadbalanced", "local", "%mongodbVersion%", "tag"] commands: diff --git a/.evergreen/config/templates/test/local.yml b/.evergreen/config/templates/test/local.yml index 328c5b3bc..1624ffe3c 100644 --- a/.evergreen/config/templates/test/local.yml +++ b/.evergreen/config/templates/test/local.yml @@ -1,4 +1,3 @@ -tasks: - name: "test-mongodb-%mongodbVersion%-standalone-noauth-nossl" tags: ["standalone", "local", "%mongodbVersion%", "tag"] commands: diff --git a/.evergreen/config/templates/test/ocsp.yml b/.evergreen/config/templates/test/ocsp.yml index 9c8226524..70d0f41b1 100644 --- a/.evergreen/config/templates/test/ocsp.yml +++ b/.evergreen/config/templates/test/ocsp.yml @@ -1,4 +1,3 @@ -tasks: - name: "ocsp-test_1-rsa-delegate-%mongodbVersion%" tags: ["ocsp", "%mongodbVersion%"] commands: diff --git a/.evergreen/config/templates/test/require-api-version.yml b/.evergreen/config/templates/test/require-api-version.yml index afd48bb71..e72eeaaf1 100644 --- a/.evergreen/config/templates/test/require-api-version.yml +++ b/.evergreen/config/templates/test/require-api-version.yml @@ -1,4 +1,3 @@ -tasks: - name: "test-requireApiVersion-%mongodbVersion%" tags: [ "standalone", "local", "%mongodbVersion%", "versioned_api", "tag" ] commands: diff --git a/.evergreen/config/templates/test/skip-crypt-shared.yml b/.evergreen/config/templates/test/skip-crypt-shared.yml index bc2cdff4a..5a36b8fb5 100644 --- a/.evergreen/config/templates/test/skip-crypt-shared.yml +++ b/.evergreen/config/templates/test/skip-crypt-shared.yml @@ -1,4 +1,3 @@ -tasks: - name: "test-skip_crypt_shared-%mongodbVersion%" tags: [ "replicaset", "local", "%mongodbVersion%", "skip_crypt_shared" ] commands: