Skip to content

Commit 3139a92

Browse files
authored
test(NODE-6927): skip failing aws uri test (#4521)
1 parent 82303f3 commit 3139a92

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

test/integration/client-side-encryption/client_side_encryption.prose.test.js

+5
Original file line numberDiff line numberDiff line change
@@ -925,6 +925,7 @@ describe('Client Side Encryption Prose Tests', metadata, function () {
925925
key: 'arn:aws:kms:us-east-1:579766882180:key/89fcc2c4-08b0-4bd9-9f25-e30687b580d0',
926926
endpoint: 'kms.us-east-1.amazonaws.com:12345'
927927
},
928+
skipReason: 'TODO(NODE-6928): Fix failing aws bad URI test',
928929
succeed: false,
929930
errorValidator: err => {
930931
expect(err)
@@ -1042,6 +1043,10 @@ describe('Client Side Encryption Prose Tests', metadata, function () {
10421043

10431044
testCases.forEach(testCase => {
10441045
it(testCase.description, metadata, function () {
1046+
if (testCase.skipReason) {
1047+
this.skipReason = testCase.skipReason;
1048+
this.skip();
1049+
}
10451050
// Call `client_encryption.createDataKey()` with <provider> as the provider and the following masterKey:
10461051
// .. code:: javascript
10471052
// {

test/tools/runner/flaky.ts

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ export const flakyTests = [
3131
'Client Side Encryption Prose Tests 16. Rewrap Case 1: Rewrap with separate ClientEncryption should rewrap data key from local to kmip',
3232
'Client Side Encryption Prose Tests 16. Rewrap Case 1: Rewrap with separate ClientEncryption should rewrap data key from local to local',
3333
'Client Side Encryption Prose Tests 16. Rewrap Case 2: RewrapManyDataKeyOpts.provider is not optional when provider field is missing raises an error',
34+
'Client Side Encryption Prose Tests Custom Endpoint Test 4. aws: custom endpoint with bad url',
3435
'CSOT spec tests legacy timeouts behave correctly for retryable operations operation fails after two consecutive socket timeouts - aggregate on collection',
3536
'CSOT spec tests legacy timeouts behave correctly for retryable operations operation succeeds after one socket timeout - aggregate on collection',
3637
'CSOT spec tests operations ignore deprecated timeout options if timeoutMS is set socketTimeoutMS is ignored if timeoutMS is set - dropIndex on collection',

0 commit comments

Comments
 (0)