Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -925,6 +925,7 @@ describe('Client Side Encryption Prose Tests', metadata, function () {
key: 'arn:aws:kms:us-east-1:579766882180:key/89fcc2c4-08b0-4bd9-9f25-e30687b580d0',
endpoint: 'kms.us-east-1.amazonaws.com:12345'
},
skipReason: 'TODO(NODE-6928): Fix failing aws bad URI test',
succeed: false,
errorValidator: err => {
expect(err)
Expand Down Expand Up @@ -1042,6 +1043,10 @@ describe('Client Side Encryption Prose Tests', metadata, function () {

testCases.forEach(testCase => {
it(testCase.description, metadata, function () {
if (testCase.skipReason) {
this.skipReason = testCase.skipReason;
this.skip();
}
// Call `client_encryption.createDataKey()` with <provider> as the provider and the following masterKey:
// .. code:: javascript
// {
Expand Down
1 change: 1 addition & 0 deletions test/tools/runner/flaky.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ export const flakyTests = [
'Client Side Encryption Prose Tests 16. Rewrap Case 1: Rewrap with separate ClientEncryption should rewrap data key from local to kmip',
'Client Side Encryption Prose Tests 16. Rewrap Case 1: Rewrap with separate ClientEncryption should rewrap data key from local to local',
'Client Side Encryption Prose Tests 16. Rewrap Case 2: RewrapManyDataKeyOpts.provider is not optional when provider field is missing raises an error',
'Client Side Encryption Prose Tests Custom Endpoint Test 4. aws: custom endpoint with bad url',
'CSOT spec tests legacy timeouts behave correctly for retryable operations operation fails after two consecutive socket timeouts - aggregate on collection',
'CSOT spec tests legacy timeouts behave correctly for retryable operations operation succeeds after one socket timeout - aggregate on collection',
'CSOT spec tests operations ignore deprecated timeout options if timeoutMS is set socketTimeoutMS is ignored if timeoutMS is set - dropIndex on collection',
Expand Down