Skip to content

Commit 2ffadda

Browse files
pull in latest FLE
1 parent 312ffed commit 2ffadda

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
"js-yaml": "^4.1.0",
9999
"mocha": "^10.4.0",
100100
"mocha-sinon": "^2.1.2",
101-
"mongodb-client-encryption": "^6.1.0-alpha",
101+
"mongodb-client-encryption": "^6.1.0-alpha.0",
102102
"mongodb-legacy": "^6.0.1",
103103
"nyc": "^15.1.0",
104104
"prettier": "^2.8.8",

test/integration/client-side-encryption/client_side_encryption.spec.test.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,19 +82,18 @@ describe('Client Side Encryption (Legacy)', function () {
8282
await filter.initializeFilter({} as any, {});
8383
});
8484

85-
generateTopologyTests(testSuites, testContext, ({ description }) => {
85+
generateTopologyTests(testSuites, testContext, test => {
86+
const { description } = test;
8687
if (SKIPPED_TESTS.has(description)) {
8788
return 'Skipped by generic test name skip filter.';
8889
}
89-
90-
// TODO(NODE-5686): add CSOT support to FLE
9190
if (
9291
[
9392
'timeoutMS applied to listCollections to get collection schema',
9493
'remaining timeoutMS applied to find to get keyvault data'
9594
].includes(description)
9695
) {
97-
return false;
96+
return 'TODO(NODE-5686): add CSOT support to FLE';
9897
}
9998

10099
if (isServerless) {

test/spec/client-side-encryption/tests/legacy/fle2v2-Compact.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"runOn": [
33
{
4-
"minServerVersion": "7.0.0",
4+
"minServerVersion": "8.0.0",
55
"topology": [
66
"replicaset",
77
"sharded",

test/spec/client-side-encryption/tests/legacy/fle2v2-Compact.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Requires libmongocrypt 1.8.0.
22
runOn:
3-
- minServerVersion: "7.0.0"
3+
# TODO(NODE-6128): lower server version to 7.0.0
4+
- minServerVersion: "8.0.0"
45
# Skip QEv2 (also referred to as FLE2v2) tests on Serverless. Unskip once Serverless enables the QEv2 protocol.
56
# FLE 2 Encrypted collections are not supported on standalone.
67
topology: [ "replicaset", "sharded", "load-balanced" ]
@@ -79,4 +80,4 @@ tests:
7980
command:
8081
compactStructuredEncryptionData: *collection_name
8182
result:
82-
errorContains: "'compactStructuredEncryptionData.compactionTokens' is missing"
83+
errorContains: "'compactStructuredEncryptionData.compactionTokens' is missing"

0 commit comments

Comments
 (0)