Skip to content

Commit ed6c957

Browse files
test(NODE-4974): backport range index tests to 4x (#3539)
1 parent 6c94b4a commit ed6c957

File tree

102 files changed

+59947
-9
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

102 files changed

+59947
-9
lines changed

.evergreen/config.in.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ command_type: system
1111
# Protect ourself against rogue test case, or curl gone wild, that runs forever
1212
# Good rule of thumb: the averageish length a task takes, times 5
1313
# That roughly accounts for variable system performance for various buildvariants
14-
exec_timeout_secs: 1200
14+
exec_timeout_secs: 2100
1515

1616
# What to do when evergreen hits the timeout (`post:` tasks are run automatically)
1717
timeout:

.evergreen/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
stepback: true
22
command_type: system
3-
exec_timeout_secs: 1200
3+
exec_timeout_secs: 2100
44
timeout:
55
- command: subprocess.exec
66
params:
@@ -2204,7 +2204,7 @@ tasks:
22042204
- func: bootstrap kms servers
22052205
- func: run custom csfle tests
22062206
vars:
2207-
CSFLE_GIT_REF: ff9e095eaf72f9e442761f69080dae159a395d94
2207+
CSFLE_GIT_REF: 67bec571c0c21f4db8a96b6bd61cb24dfc87a223
22082208
- name: run-custom-csfle-tests-5.0-master
22092209
tags:
22102210
- run-custom-dependency-tests
@@ -2234,7 +2234,7 @@ tasks:
22342234
- func: bootstrap kms servers
22352235
- func: run custom csfle tests
22362236
vars:
2237-
CSFLE_GIT_REF: ff9e095eaf72f9e442761f69080dae159a395d94
2237+
CSFLE_GIT_REF: 67bec571c0c21f4db8a96b6bd61cb24dfc87a223
22382238
- name: run-custom-csfle-tests-rapid-master
22392239
tags:
22402240
- run-custom-dependency-tests
@@ -2264,7 +2264,7 @@ tasks:
22642264
- func: bootstrap kms servers
22652265
- func: run custom csfle tests
22662266
vars:
2267-
CSFLE_GIT_REF: ff9e095eaf72f9e442761f69080dae159a395d94
2267+
CSFLE_GIT_REF: 67bec571c0c21f4db8a96b6bd61cb24dfc87a223
22682268
- name: run-custom-csfle-tests-latest-master
22692269
tags:
22702270
- run-custom-dependency-tests

.evergreen/generate_evergreen_tasks.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -623,7 +623,7 @@ const oneOffFuncAsTasks = oneOffFuncs.map(oneOffFunc => ({
623623
}));
624624

625625
for (const version of ['5.0', 'rapid', 'latest']) {
626-
for (const ref of ['ff9e095eaf72f9e442761f69080dae159a395d94', 'master']) {
626+
for (const ref of ['67bec571c0c21f4db8a96b6bd61cb24dfc87a223', 'master']) {
627627
oneOffFuncAsTasks.push({
628628
name: `run-custom-csfle-tests-${version}-${ref === 'master' ? ref : 'pinned-commit'}`,
629629
tags: ['run-custom-dependency-tests'],

.evergreen/run-serverless-tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ if [ -z ${MONGODB_URI+omitted} ]; then echo "MONGODB_URI is unset" && exit 1; fi
1010
if [ -z ${SERVERLESS_ATLAS_USER+omitted} ]; then echo "SERVERLESS_ATLAS_USER is unset" && exit 1; fi
1111
if [ -z ${SERVERLESS_ATLAS_PASSWORD+omitted} ]; then echo "SERVERLESS_ATLAS_PASSWORD is unset" && exit 1; fi
1212

13-
npm install mongodb-client-encryption@">=2.3.0"
13+
npm install mongodb-client-encryption@"2.4.0-alpha.2"
1414

1515
npx mocha \
1616
--config test/mocha_mongodb.json \

.evergreen/run-tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ else
5252
source "$DRIVERS_TOOLS"/.evergreen/csfle/set-temp-creds.sh
5353
fi
5454

55-
npm install mongodb-client-encryption@">=2.3.0"
55+
npm install mongodb-client-encryption@"2.4.0-alpha.2"
5656
npm install @mongodb-js/zstd
5757
npm install snappy
5858

0 commit comments

Comments
 (0)