@@ -30,6 +30,8 @@ const metadata: MongoDBMetadataUI = {
30
30
}
31
31
} ;
32
32
33
+ const closeSignal = new AbortController ( ) . signal ;
34
+
33
35
context ( 'Azure KMS Mock Server Tests' , function ( ) {
34
36
context ( 'Case 1: Success' , metadata , function ( ) {
35
37
// Do not set an ``X-MongoDB-HTTP-TestParams`` header.
@@ -44,7 +46,7 @@ context('Azure KMS Mock Server Tests', function () {
44
46
// 5. The token will have a resource of ``"https://vault.azure.net"``
45
47
46
48
it ( 'returns a properly formatted access token' , async ( ) => {
47
- const credentials = await fetchAzureKMSToken ( new KMSRequestOptions ( ) ) ;
49
+ const credentials = await fetchAzureKMSToken ( new KMSRequestOptions ( ) , closeSignal ) ;
48
50
expect ( credentials ) . to . have . property ( 'accessToken' , 'magic-cookie' ) ;
49
51
} ) ;
50
52
} ) ;
@@ -59,7 +61,10 @@ context('Azure KMS Mock Server Tests', function () {
59
61
// The test case should ensure that this error condition is handled gracefully.
60
62
61
63
it ( 'returns an error' , async ( ) => {
62
- const error = await fetchAzureKMSToken ( new KMSRequestOptions ( 'empty-json' ) ) . catch ( e => e ) ;
64
+ const error = await fetchAzureKMSToken (
65
+ new KMSRequestOptions ( 'empty-json' ) ,
66
+ closeSignal
67
+ ) . catch ( e => e ) ;
63
68
64
69
expect ( error ) . to . be . instanceof ( MongoCryptAzureKMSRequestError ) ;
65
70
} ) ;
@@ -74,7 +79,9 @@ context('Azure KMS Mock Server Tests', function () {
74
79
// The test case should ensure that this error condition is handled gracefully.
75
80
76
81
it ( 'returns an error' , async ( ) => {
77
- const error = await fetchAzureKMSToken ( new KMSRequestOptions ( 'bad-json' ) ) . catch ( e => e ) ;
82
+ const error = await fetchAzureKMSToken ( new KMSRequestOptions ( 'bad-json' ) , closeSignal ) . catch (
83
+ e => e
84
+ ) ;
78
85
79
86
expect ( error ) . to . be . instanceof ( MongoCryptAzureKMSRequestError ) ;
80
87
} ) ;
@@ -89,7 +96,9 @@ context('Azure KMS Mock Server Tests', function () {
89
96
// 2. The response body is unspecified.
90
97
// The test case should ensure that this error condition is handled gracefully.
91
98
it ( 'returns an error' , async ( ) => {
92
- const error = await fetchAzureKMSToken ( new KMSRequestOptions ( '404' ) ) . catch ( e => e ) ;
99
+ const error = await fetchAzureKMSToken ( new KMSRequestOptions ( '404' ) , closeSignal ) . catch (
100
+ e => e
101
+ ) ;
93
102
94
103
expect ( error ) . to . be . instanceof ( MongoCryptAzureKMSRequestError ) ;
95
104
} ) ;
@@ -104,7 +113,9 @@ context('Azure KMS Mock Server Tests', function () {
104
113
// 2. The response body is unspecified.
105
114
// The test case should ensure that this error condition is handled gracefully.
106
115
it ( 'returns an error' , async ( ) => {
107
- const error = await fetchAzureKMSToken ( new KMSRequestOptions ( '500' ) ) . catch ( e => e ) ;
116
+ const error = await fetchAzureKMSToken ( new KMSRequestOptions ( '500' ) , closeSignal ) . catch (
117
+ e => e
118
+ ) ;
108
119
109
120
expect ( error ) . to . be . instanceof ( MongoCryptAzureKMSRequestError ) ;
110
121
} ) ;
@@ -117,7 +128,9 @@ context('Azure KMS Mock Server Tests', function () {
117
128
// The HTTP response from the ``fake_azure`` server will take at least 1000 seconds
118
129
// to complete. The request should fail with a timeout.
119
130
it ( 'returns an error after the request times out' , async ( ) => {
120
- const error = await fetchAzureKMSToken ( new KMSRequestOptions ( 'slow' ) ) . catch ( e => e ) ;
131
+ const error = await fetchAzureKMSToken ( new KMSRequestOptions ( 'slow' ) , closeSignal ) . catch (
132
+ e => e
133
+ ) ;
121
134
122
135
expect ( error ) . to . be . instanceof ( MongoCryptAzureKMSRequestError ) ;
123
136
} ) ;
0 commit comments