-
Notifications
You must be signed in to change notification settings - Fork 257
Expand file tree
/
Copy pathAppInsightsCommon.tests.ts
More file actions
427 lines (349 loc) · 18.3 KB
/
AppInsightsCommon.tests.ts
File metadata and controls
427 lines (349 loc) · 18.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
import { strRepeat } from "@nevware21/ts-utils";
import { Assert, AITestClass } from "@microsoft/ai-test-framework";
import { DiagnosticLogger } from "../../../../src/diagnostics/DiagnosticLogger";
import { IConfiguration } from "../../../../src/interfaces/ai/IConfiguration";
import { dataSanitizeInput, dataSanitizeKey, dataSanitizeMessage, DataSanitizerValues, dataSanitizeString, dataSanitizeUrl } from "../../../../src/telemetry/ai/Common/DataSanitizer";
import { UrlRedactionOptions } from "../../../../src/enums/ai/UrlRedactionOptions"
export class ApplicationInsightsTests extends AITestClass {
logger = new DiagnosticLogger();
public testInitialize() {
}
public testCleanup() {
}
public registerTests() {
// test cases for sanitizeMessage function
this.testCase({
name: 'DataSanitizerTests: messages are well processed.',
test: () => {
// const define
const MAX_MESSAGE_LENGTH = DataSanitizerValues.MAX_MESSAGE_LENGTH;
// use cases
const messageShort: String = "hi";
const messageLong = strRepeat("abc", MAX_MESSAGE_LENGTH + 1);
// Assert
Assert.equal(messageShort.length, dataSanitizeMessage(this.logger, messageShort).length);
Assert.notEqual(messageLong.length, dataSanitizeMessage(this.logger, messageLong).length);
Assert.equal(MAX_MESSAGE_LENGTH, dataSanitizeMessage(this.logger, messageLong).length);
}
});
this.testCase({
name: 'DataSanitizerTests: throwInternal function is called correctly in sanitizeMessage function',
test: () => {
// const define
const loggerStub = this.sandbox.stub(this.logger , "throwInternal");
const MAX_MESSAGE_LENGTH = DataSanitizerValues.MAX_MESSAGE_LENGTH;
// use cases
const messageShort: String = "hi";
const messageLong = strRepeat("a", MAX_MESSAGE_LENGTH + 2);
// Act
dataSanitizeMessage(this.logger, messageShort);
Assert.ok(loggerStub.notCalled);
Assert.equal(0, loggerStub.callCount);
dataSanitizeMessage(this.logger, messageLong);
Assert.ok(loggerStub.calledOnce);
Assert.equal(1, loggerStub.callCount);
dataSanitizeMessage(this.logger, messageLong);
Assert.ok(loggerStub.calledTwice);
Assert.equal(2, loggerStub.callCount);
loggerStub.restore();
}
});
this.testCase({
name: 'DataSanitizerTests: messages are fully logged through console',
test: () => {
const loggerStub = this.sandbox.stub(this.logger , "throwInternal");
// const define
const MAX_MESSAGE_LENGTH = DataSanitizerValues.MAX_MESSAGE_LENGTH;
// use cases
const messageShort: String = "hi";
const messageLong = strRepeat("a", MAX_MESSAGE_LENGTH + 1);
Assert.equal(messageShort, dataSanitizeMessage(this.logger, messageShort));
Assert.ok(loggerStub.notCalled);
Assert.equal(0, loggerStub.callCount);
Assert.equal(messageLong.substring(0, MAX_MESSAGE_LENGTH), dataSanitizeMessage(this.logger, messageLong));
Assert.ok(loggerStub.calledOnce);
Assert.equal(1, loggerStub.callCount);
loggerStub.restore();
}
});
// test cases for sanitizeString function
this.testCase({
name: 'DataSanitizerTest: strings are well processed',
test: () => {
// const define
const MAX_STRING_LENGTH = DataSanitizerValues.MAX_STRING_LENGTH;
// use cases
const strShort: String = "hi";
const strLong = strRepeat("a", MAX_STRING_LENGTH + 2);
// Assert
Assert.equal(strShort.length, dataSanitizeString(this.logger, strShort).length);
Assert.notEqual(strLong.length, dataSanitizeString(this.logger, strLong).length);
Assert.equal(MAX_STRING_LENGTH, dataSanitizeString(this.logger, strLong).length);
}
});
this.testCase({
name: 'DataSanitizerTests: throrwInternal function is called correctly in sanitizeString function',
test: () => {
// const define
const loggerStub = this.sandbox.stub(this.logger , "throwInternal");
const MAX_STRING_LENGTH = DataSanitizerValues.MAX_STRING_LENGTH;
// use cases
const strShort: String = "hi";
const strLong = strRepeat("a", MAX_STRING_LENGTH + 2);
// Act
dataSanitizeString(this.logger, strShort);
Assert.ok(loggerStub.notCalled);
Assert.equal(0, loggerStub.callCount);
dataSanitizeString(this.logger, strLong);
Assert.ok(loggerStub.calledOnce);
Assert.equal(1, loggerStub.callCount);
dataSanitizeString(this.logger, strLong);
Assert.ok(loggerStub.calledTwice);
Assert.equal(2, loggerStub.callCount);
loggerStub.restore();
}
});
this.testCase({
name: 'DataSanitizerTests: strings are fully logged through console',
test: () => {
const loggerStub = this.sandbox.stub(this.logger , "throwInternal");
// const define
const MAX_STRING_LENGTH = DataSanitizerValues.MAX_STRING_LENGTH;
// use cases
const strShort: String = "hi";
const strLong = strRepeat("a", MAX_STRING_LENGTH + 2);
Assert.equal(strShort, dataSanitizeString(this.logger, strShort));
Assert.ok(loggerStub.notCalled);
Assert.equal(0, loggerStub.callCount);
Assert.equal(strLong.substring(0, MAX_STRING_LENGTH), dataSanitizeString(this.logger, strLong));
Assert.ok(loggerStub.calledOnce);
Assert.equal(1, loggerStub.callCount);
loggerStub.restore();
}
});
// test cases for sanitizeKey function
this.testCase({
name: 'DataSanitizerTest: names are well processed',
test: () => {
// const define
const MAX_NAME_LENGTH = DataSanitizerValues.MAX_NAME_LENGTH;
// use cases
const nameShort: String = "hi";
const nameLong = strRepeat("a", MAX_NAME_LENGTH + 2);
// Assert
Assert.equal(nameShort.length, dataSanitizeKey(this.logger, nameShort).length);
Assert.notEqual(nameLong.length, dataSanitizeKey(this.logger, nameLong).length);
Assert.equal(MAX_NAME_LENGTH, dataSanitizeKey(this.logger, nameLong).length);
}
});
this.testCase({
name: 'DataSanitizerTests: throrwInternal function is called correctly in sanitizeKey function',
test: () => {
// const define
const loggerStub = this.sandbox.stub(this.logger , "throwInternal");
const MAX_NAME_LENGTH = DataSanitizerValues.MAX_NAME_LENGTH;
// use cases
const nameShort: String = "hi";
const nameLong = strRepeat("a", MAX_NAME_LENGTH + 2);
// Act
dataSanitizeKey(this.logger, nameShort);
Assert.ok(loggerStub.notCalled);
Assert.equal(0, loggerStub.callCount);
dataSanitizeKey(this.logger, nameLong);
Assert.ok(loggerStub.calledOnce);
Assert.equal(1, loggerStub.callCount);
dataSanitizeKey(this.logger, nameLong);
Assert.ok(loggerStub.calledTwice);
Assert.equal(2, loggerStub.callCount);
loggerStub.restore();
}
});
this.testCase({
name: 'DataSanitizerTests: names are fully logged through console',
test: () => {
const loggerStub = this.sandbox.stub(this.logger , "throwInternal");
// const define
const MAX_NAME_LENGTH = DataSanitizerValues.MAX_NAME_LENGTH;
// use cases
const nameShort: String = "hi";
const nameLong = strRepeat("a", MAX_NAME_LENGTH + 2);
Assert.equal(nameShort, dataSanitizeKey(this.logger, nameShort));
Assert.ok(loggerStub.notCalled);
Assert.equal(nameLong.substring(0, MAX_NAME_LENGTH), dataSanitizeKey(this.logger, nameLong));
Assert.ok(loggerStub.calledOnce);
Assert.equal(1, loggerStub.callCount);
loggerStub.restore();
}
});
// test cases for sanitizeInput function
this.testCase({
name: 'DataSanitizerTest: inputs are well processed',
test: () => {
const MAX_INPUT_LENGTH = 1024;
// use cases
const inputShort: String = "hi";
const inputLong = strRepeat("a", MAX_INPUT_LENGTH + 2);
// Assert
Assert.equal(inputShort.length, dataSanitizeInput(this.logger, inputShort, MAX_INPUT_LENGTH, 0).length);
Assert.notEqual(inputLong.length, dataSanitizeInput(this.logger, inputLong, MAX_INPUT_LENGTH, 0).length);
Assert.equal(MAX_INPUT_LENGTH, dataSanitizeInput(this.logger, inputLong, MAX_INPUT_LENGTH, 0).length);
}
});
this.testCase({
name: 'DataSanitizerTests: throwInternal function is called correctly in sanitizeInput function',
test: () => {
// const define
const loggerStub = this.sandbox.stub(this.logger , "throwInternal");
const MAX_INPUT_LENGTH = 1024;
// use cases
const inputShort: String = "hi";
const inputLong = strRepeat("a", MAX_INPUT_LENGTH + 2);
// Act
dataSanitizeInput(this.logger, inputShort, MAX_INPUT_LENGTH, 0);
Assert.ok(loggerStub.notCalled);
Assert.equal(0, loggerStub.callCount);
dataSanitizeInput(this.logger, inputLong, MAX_INPUT_LENGTH, 0);
Assert.ok(loggerStub.calledOnce);
Assert.equal(1, loggerStub.callCount);
dataSanitizeInput(this.logger, inputLong, MAX_INPUT_LENGTH, 0);
Assert.ok(loggerStub.calledTwice);
Assert.equal(2, loggerStub.callCount);
loggerStub.restore();
}
});
this.testCase({
name: 'DataSanitizerTests: inputs are fully logged through console',
test: () => {
const loggerStub = this.sandbox.stub(this.logger , "throwInternal");
// const define
const MAX_INPUT_LENGTH = 1024;
// use cases
const inputShort: String = "hi";
const inputLong = strRepeat("a", MAX_INPUT_LENGTH + 2);
Assert.equal(inputShort, dataSanitizeInput(this.logger, inputShort, MAX_INPUT_LENGTH, 0));
Assert.ok(loggerStub.notCalled);
Assert.equal(0, loggerStub.callCount);
Assert.equal(inputLong.substring(0, MAX_INPUT_LENGTH), dataSanitizeInput(this.logger, inputLong, MAX_INPUT_LENGTH, 0));
Assert.ok(loggerStub.calledOnce);
Assert.equal(1, loggerStub.callCount);
loggerStub.restore();
}
});
this.testCase({
name: 'DataSanitizerTests: dataSanitizeUrl properly redacts credentials in URLs with config enabled',
test: () => {
// URLs with credentials
let config = {} as IConfiguration;
const urlWithCredentials = "https://username:password@example.com/path";
const expectedRedactedUrl = "https://REDACTED:REDACTED@example.com/path";
// Act & Assert
const result = dataSanitizeUrl(this.logger, urlWithCredentials, config);
Assert.equal(expectedRedactedUrl, result);
}
});
this.testCase({
name: 'DataSanitizerTests: dataSanitizeUrl properly redacts credentials in URLs with config disabled',
test: () => {
// URLs with credentials
let config = {redactUrls: false} as IConfiguration;
const urlWithCredentials = "https://username:password@example.com/path";
// Act & Assert
const result = dataSanitizeUrl(this.logger, urlWithCredentials, config);
Assert.equal(urlWithCredentials, result);
}
});
this.testCase({
name: 'DataSanitizerTests: dataSanitizeUrl handles invalid URLs',
test: () => {
// Invalid URL that will cause URL constructor to throw
const invalidUrl = 123545;
// Act & Assert
const result = dataSanitizeUrl(this.logger, invalidUrl);
Assert.equal(invalidUrl, result, "Invalid URLs should be returned unchanged");
}
});
this.testCase({
name: 'DataSanitizerTests: dataSanitizeUrl still enforces maximum length after redaction',
test: () => {
// Setup
let config = {} as IConfiguration;
const loggerStub = this.sandbox.stub(this.logger, "throwInternal");
const MAX_URL_LENGTH = DataSanitizerValues.MAX_URL_LENGTH;
// Create a very long URL with sensitive information
const longBaseUrl = "https://username:password@example.com/";
const longPathPart = strRepeat("a", MAX_URL_LENGTH);
const longUrl = longBaseUrl + longPathPart;
// Act
const result = dataSanitizeUrl(this.logger, longUrl, config);
// Assert
Assert.equal(MAX_URL_LENGTH, result.length, "URL should be truncated to maximum length");
Assert.equal(true, result.indexOf("REDACTED") > -1, "Redaction should happen before truncation");
Assert.ok(loggerStub.calledOnce, "Logger should be called once for oversized URL");
loggerStub.restore();
}
});
this.testCase({
name: 'DataSanitizerTests: dataSanitizeUrl handles null and undefined inputs',
test: () => {
// Act & Assert
const nullResult = dataSanitizeUrl(this.logger, null);
Assert.equal(null, nullResult, "Null input should return null");
const undefinedResult = dataSanitizeUrl(this.logger, undefined);
Assert.equal(undefined, undefinedResult, "Undefined input should return undefined");
}
});
this.testCase({
name: 'DataSanitizerTests: dataSanitizeUrl preserves URLs with no sensitive information',
test: () => {
// URL with no sensitive information
let config = {} as IConfiguration;
const safeUrl = "https://example.com/api?param1=value1¶m2=value2";
// Act & Assert
const result = dataSanitizeUrl(this.logger, safeUrl, config);
Assert.equal(safeUrl, result, "URL with no sensitive info should remain unchanged");
}
});
this.testCase({
name: 'DataSanitizerTests: dataSanitizeUrl properly redacts sensitive query parameters',
test: () => {
// URLs with sensitive query parameters
let config = {} as IConfiguration;
const urlWithSensitiveParams = "https://example.com/api?Signature=secret&normal=value";
const expectedRedactedUrl = "https://example.com/api?Signature=REDACTED&normal=value";
// Act & Assert
const result = dataSanitizeUrl(this.logger, urlWithSensitiveParams, config);
Assert.equal(expectedRedactedUrl, result);
}
});
this.testCase({
name: 'DataSanitizerTests: dataSanitizeUrl properly redacts sensitive query parameters (default + custom)',
test: () => {
// URLs with sensitive query parameters
let config = {
redactUrls: UrlRedactionOptions.appendToDefault,
redactQueryParams: ["authorize", "api_key", "password"]
} as IConfiguration;
const urlWithSensitiveParams = "https://example.com/api?Signature=secret&authorize=value";
const expectedRedactedUrl = "https://example.com/api?Signature=REDACTED&authorize=REDACTED";
// Act & Assert
const result = dataSanitizeUrl(this.logger, urlWithSensitiveParams, config);
Assert.equal(expectedRedactedUrl, result);
}
});
this.testCase({
name: 'DataSanitizerTests: dataSanitizeUrl properly redacts sensitive query parameters (only custom)',
test: () => {
// URLs with sensitive query parameters
let config = {
redactUrls: UrlRedactionOptions.replaceDefault,
redactQueryParams: ["authorize", "api_key", "password"]
} as IConfiguration;
const urlWithSensitiveParams = "https://example.com/api?Signature=secret&authorize=value";
const expectedRedactedUrl = "https://example.com/api?Signature=secret&authorize=REDACTED";
// Act & Assert
const result = dataSanitizeUrl(this.logger, urlWithSensitiveParams, config);
Assert.equal(expectedRedactedUrl, result);
}
});
}
}