Skip to content

Commit f7961a7

Browse files
test(NODE-4965): unskip FLE range index spec tests and implement spec prose tests (#3530)
1 parent 4fcae82 commit f7961a7

File tree

40 files changed

+25105
-10
lines changed

40 files changed

+25105
-10
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:
@@ -2132,7 +2132,7 @@ tasks:
21322132
- func: bootstrap kms servers
21332133
- func: run custom csfle tests
21342134
vars:
2135-
CSFLE_GIT_REF: e8e0c0b07db62b0e8ee0e5f3b669a180a94df1e8
2135+
CSFLE_GIT_REF: 67bec571c0c21f4db8a96b6bd61cb24dfc87a223
21362136
- name: run-custom-csfle-tests-5.0-master
21372137
tags:
21382138
- run-custom-dependency-tests
@@ -2162,7 +2162,7 @@ tasks:
21622162
- func: bootstrap kms servers
21632163
- func: run custom csfle tests
21642164
vars:
2165-
CSFLE_GIT_REF: e8e0c0b07db62b0e8ee0e5f3b669a180a94df1e8
2165+
CSFLE_GIT_REF: 67bec571c0c21f4db8a96b6bd61cb24dfc87a223
21662166
- name: run-custom-csfle-tests-rapid-master
21672167
tags:
21682168
- run-custom-dependency-tests
@@ -2192,7 +2192,7 @@ tasks:
21922192
- func: bootstrap kms servers
21932193
- func: run custom csfle tests
21942194
vars:
2195-
CSFLE_GIT_REF: e8e0c0b07db62b0e8ee0e5f3b669a180a94df1e8
2195+
CSFLE_GIT_REF: 67bec571c0c21f4db8a96b6bd61cb24dfc87a223
21962196
- name: run-custom-csfle-tests-latest-master
21972197
tags:
21982198
- run-custom-dependency-tests

.evergreen/generate_evergreen_tasks.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -579,7 +579,7 @@ BUILD_VARIANTS.push({
579579
const oneOffFuncAsTasks = []
580580

581581
for (const version of ['5.0', 'rapid', 'latest']) {
582-
for (const ref of ['e8e0c0b07db62b0e8ee0e5f3b669a180a94df1e8', 'master']) {
582+
for (const ref of ['67bec571c0c21f4db8a96b6bd61cb24dfc87a223', 'master']) {
583583
oneOffFuncAsTasks.push({
584584
name: `run-custom-csfle-tests-${version}-${ref === 'master' ? ref : 'pinned-commit'}`,
585585
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.4.0-alpha.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)