-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsUnit.ts
629 lines (514 loc) · 21.6 KB
/
tsUnit.ts
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
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
/* tsUnit (c) Copyright 2012-2015 Steve Fenton, licensed under Apache 2.0 https://github.com/Steve-Fenton/tsUnit */
export class Test {
public privateMemberPrefix = '_';
public passes: TestDescription[] = [];
public errors: TestDescription[] = [];
protected tests: TestDefinition[] = [];
protected testRunLimiter: TestRunLimiter;
private reservedMethodNameContainer: TestClass = new TestClass();
constructor(...testModules: any[]) {
this.createTestLimiter();
for (var i = 0; i < testModules.length; i++) {
var testModule = testModules[i];
if (testModule.hasOwnProperty("name")) {
var name = testModule["name"];
this.addTestClass(new testModule, name);
} else {
for (var prop in testModule) {
this.addTestClass(new testModule[prop], prop);
}
}
}
}
addTestClass(testClass: TestClass, name: string = 'Tests'): void {
this.tests.push(new TestDefinition(testClass, name));
}
run(testRunLimiter: ITestRunLimiter | null = null) {
var parameters: any[][] | null = null;
var testContext = new TestContext();
if (testRunLimiter == null) {
testRunLimiter = this.testRunLimiter;
}
for (var i = 0; i < this.tests.length; ++i) {
var testClass = this.tests[i].testClass;
var dynamicTestClass = <any>testClass;
var testsGroupName = this.tests[i].name;
if (testRunLimiter && !testRunLimiter.isTestsGroupActive(testsGroupName)) {
continue;
}
var propertyNames = FunctionPropertyHelper.getFunctionNames(testClass);
for (var j = 0; j < propertyNames.length; j++) {
let unitTestName = propertyNames[j];
if (this.isReservedFunctionName(unitTestName)
|| (unitTestName.substring(0, this.privateMemberPrefix.length) === this.privateMemberPrefix)
|| (typeof dynamicTestClass[unitTestName] !== 'function')
|| (testRunLimiter && !testRunLimiter.isTestActive(unitTestName))) {
continue;
}
if (typeof dynamicTestClass[unitTestName].parameters !== 'undefined') {
parameters = dynamicTestClass[unitTestName].parameters;
for (var parameterIndex = 0; parameterIndex < parameters!.length; parameterIndex++) {
if (testRunLimiter && !testRunLimiter.isParametersSetActive(parameterIndex)) {
continue;
}
this.runSingleTest(testClass, unitTestName, testsGroupName, parameters, parameterIndex);
}
} else {
this.runSingleTest(testClass, unitTestName, testsGroupName);
}
}
}
return this;
}
showResults(target: string | HTMLElement) {
var elem: HTMLElement | null;
if (typeof target === 'string') {
var id: string = target;
elem = document.getElementById(id);
} else {
elem = target;
}
if (elem !== null) {
var template = '<article>' +
'<h1>' + this.getTestResult() + '</h1>' +
'<p>' + this.getTestSummary() + '</p>' +
this.testRunLimiter.getLimitCleaner() +
'<section id="tsFail">' +
'<h2>Errors</h2>' +
'<ul class="bad">' + this.getTestResultList(this.errors) + '</ul>' +
'</section>' +
'<section id="tsOkay">' +
'<h2>Passing Tests</h2>' +
'<ul class="good">' + this.getTestResultList(this.passes) + '</ul>' +
'</section>' +
'</article>' +
this.testRunLimiter.getLimitCleaner();
elem.innerHTML = template;
}
return this;
}
getTapResults() {
var newLine = '\r\n';
var template = '1..' + (this.passes.length + this.errors.length).toString() + newLine;
for (var i = 0; i < this.errors.length; i++) {
template += 'not ok ' + this.errors[i].message + ' ' + this.errors[i].testName + ':' + this.errors[i].funcName + newLine;
}
for (var i = 0; i < this.passes.length; i++) {
template += 'ok ' + this.passes[i].testName + ':' + this.passes[i].funcName + newLine;
}
return template;
}
private createTestLimiter() {
try {
if (typeof window !== 'undefined') {
this.testRunLimiter = new TestRunLimiter();
}
} catch (ex) { }
}
protected isReservedFunctionName(functionName: string): boolean {
return FunctionPropertyHelper
.getFunctionNames(this.reservedMethodNameContainer)
.some(mem => mem === functionName);
}
private runSingleTest(testClass: TestClass, unitTestName: string, testsGroupName: string, parameters: any[][] | null = null, parameterSetIndex: number | null = null) {
if (typeof testClass['setUp'] === 'function') {
testClass['setUp']();
}
try {
var dynamicTestClass: any = testClass;
var args = (parameters !== null && parameterSetIndex !== null) ? parameters[parameterSetIndex] : null;
dynamicTestClass[unitTestName].apply(testClass, args);
this.passes.push(new TestDescription(testsGroupName, unitTestName, parameterSetIndex, 'OK'));
} catch (err) {
this.errors.push(new TestDescription(testsGroupName, unitTestName, parameterSetIndex, err.toString()));
}
if (typeof testClass['tearDown'] === 'function') {
testClass['tearDown']();
}
}
private getTestResult() {
return this.errors.length === 0 ? 'Test Passed' : 'Test Failed';
}
private getTestSummary() {
return 'Total tests: <span id="tsUnitTotalCout">' + (this.passes.length + this.errors.length).toString() + '</span>. ' +
'Passed tests: <span id="tsUnitPassCount" class="good">' + this.passes.length + '</span>. ' +
'Failed tests: <span id="tsUnitFailCount" class="bad">' + this.errors.length + '</span>.';
}
private getTestResultList(testResults: TestDescription[]) {
var list = '';
var group = '';
var isFirst = true;
for (var i = 0; i < testResults.length; ++i) {
var result = testResults[i];
if (result.testName !== group) {
group = result.testName;
if (isFirst) {
isFirst = false;
} else {
list += '</li></ul>';
}
list += '<li>' + this.testRunLimiter.getLimiterForGroup(group) + result.testName + '<ul>';
}
var resultClass = (result.message === 'OK') ? 'success' : 'error';
var functionLabal = result.funcName + ((result.parameterSetNumber === null)
? '()'
: '(' + this.testRunLimiter.getLimiterForTest(group, result.funcName, result.parameterSetNumber) + ' paramater set: ' + result.parameterSetNumber + ')');
list += '<li class="' + resultClass + '">' + this.testRunLimiter.getLimiterForTest(group, result.funcName) + functionLabal + ': ' + this.encodeHtmlEntities(result.message) + '</li>';
}
return list + '</ul>';
}
private encodeHtmlEntities(input: string) {
return input.replace(/&/g, '&').replace(/</g, '<').replace(/>/g, '>');
}
}
export interface ITestRunLimiter {
isTestsGroupActive(groupName: string): boolean;
isTestActive(testName: string): boolean;
isParametersSetActive(paramatersSetNumber: number): boolean;
}
export interface IThrowsParameters {
fn: () => void;
message?: string;
errorString?: string;
}
class TestRunLimiterRunAll implements ITestRunLimiter {
isTestsGroupActive(groupName: string): boolean {
return true;
}
isTestActive(testName: string): boolean {
return true;
}
isParametersSetActive(paramatersSetNumber: number): boolean {
return true;
}
}
export class TestRunLimiter implements ITestRunLimiter {
private groupName: string | null = null;
private testName: string | null = null;
private parameterSet: number | null = null;
constructor() {
this.setRefreshOnLinksWithHash();
this.translateStringIntoTestsLimit(window.location.hash);
}
public isTestsGroupActive(groupName: string | null): boolean {
if (this.groupName === null) {
return true;
}
return this.groupName === groupName;
}
public isTestActive(testName: string): boolean {
if (this.testName === null) {
return true;
}
return this.testName === testName;
}
public isParametersSetActive(paramatersSet: number): boolean {
if (this.parameterSet === null) {
return true;
}
return this.parameterSet === paramatersSet;
}
public getLimiterForTest(groupName: string, testName: string, parameterSet: number | null = null): string {
if (parameterSet !== null) {
testName += '(' + parameterSet + ')';
}
return ' <a href="#' + groupName + '/' + testName + '\" class="ascii">►</a> ';
}
public getLimiterForGroup(groupName: string): string {
return ' <a href="#' + groupName + '" class="ascii">►</a> ';
}
public getLimitCleaner(): string {
return '<p><a href="#">Run all tests <span class="ascii">►</span></a></p>';
}
private setRefreshOnLinksWithHash() {
var previousHandler = window.onhashchange;
window.onhashchange = function (ev: HashChangeEvent) {
window.location.reload();
if (typeof previousHandler === 'function') {
previousHandler.call(window, ev);
}
};
}
private translateStringIntoTestsLimit(value: string) {
var regex = /^#([_a-zA-Z0-9]+)((\/([_a-zA-Z0-9]+))(\(([0-9]+)\))?)?$/
var result = regex.exec(value);
if (result === null) {
return;
}
if (result.length > 1 && !!result[1]) {
this.groupName = result[1];
}
if (result.length > 4 && !!result[4]) {
this.testName = result[4];
}
if (result.length > 6 && !!result[6]) {
this.parameterSet = parseInt(result[6], 10);
}
}
}
export class TestContext {
setUp() {
}
tearDown() {
}
protected areIdentical(expected: any, actual: any, message = ''): void {
if (expected !== actual) {
throw this.getError('areIdentical failed when given ' +
this.printVariable(expected) + ' and ' + this.printVariable(actual),
message);
}
}
protected areNotIdentical(expected: any, actual: any, message = ''): void {
if (expected === actual) {
throw this.getError('areNotIdentical failed when given ' +
this.printVariable(expected) + ' and ' + this.printVariable(actual),
message);
}
}
protected areCollectionsIdentical(expected: any[], actual: any[], message = ''): void {
function resultToString(result: number[]): string {
var msg = '';
while (result.length > 0) {
msg = '[' + result.pop() + ']' + msg;
}
return msg;
}
var compareArray = (expected: any[], actual: any[], result: number[]): void => {
var indexString = '';
if (expected === null) {
if (actual !== null) {
indexString = resultToString(result);
throw this.getError('areCollectionsIdentical failed when array a' +
indexString + ' is null and b' +
indexString + ' is not null',
message);
}
return; // correct: both are nulls
} else if (actual === null) {
indexString = resultToString(result);
throw this.getError('areCollectionsIdentical failed when array a' +
indexString + ' is not null and b' +
indexString + ' is null',
message);
}
if (expected.length !== actual.length) {
indexString = resultToString(result);
throw this.getError('areCollectionsIdentical failed when length of array a' +
indexString + ' (length: ' + expected.length + ') is different of length of array b' +
indexString + ' (length: ' + actual.length + ')',
message);
}
for (var i = 0; i < expected.length; i++) {
if ((expected[i] instanceof Array) && (actual[i] instanceof Array)) {
result.push(i);
compareArray(expected[i], actual[i], result);
result.pop();
} else if (expected[i] !== actual[i]) {
result.push(i);
indexString = resultToString(result);
throw this.getError('areCollectionsIdentical failed when element a' +
indexString + ' (' + this.printVariable(expected[i]) + ') is different than element b' +
indexString + ' (' + this.printVariable(actual[i]) + ')',
message);
}
}
return;
}
compareArray(expected, actual, []);
}
protected areCollectionsNotIdentical(expected: any[], actual: any[], message = ''): void {
try {
this.areCollectionsIdentical(expected, actual);
} catch (ex) {
return;
}
throw this.getError('areCollectionsNotIdentical failed when both collections are identical', message);
}
protected isTrue(actual: boolean, message = '') {
if (!actual) {
throw this.getError('isTrue failed when given ' + this.printVariable(actual), message);
}
}
protected isFalse(actual: boolean, message = '') {
if (actual) {
throw this.getError('isFalse failed when given ' + this.printVariable(actual), message);
}
}
protected isTruthy(actual: any, message = '') {
if (!actual) {
throw this.getError('isTrue failed when given ' + this.printVariable(actual), message);
}
}
protected isFalsey(actual: any, message = '') {
if (actual) {
throw this.getError('isFalse failed when given ' + this.printVariable(actual), message);
}
}
protected throws(params: IThrowsParameters): void;
protected throws(actual: () => void, message?: string): void;
protected throws(a: any, message = '', errorString = '') {
var actual: () => void;
if (typeof a === 'function') {
actual = a;
} else if (a.fn) {
actual = a.fn;
message = a.message;
errorString = a.exceptionString;
}
var isThrown = false;
try {
actual!();
} catch (ex) {
if (!errorString || ex.message === errorString) {
isThrown = true;
}
if (errorString && ex.message !== errorString) {
throw this.getError('different error string than supplied');
}
}
if (!isThrown) {
throw this.getError('did not throw an error', message || '');
}
}
protected doesNotThrow(actual: () => void, message?: string): void {
try {
actual();
} catch (ex) {
throw this.getError('threw an error ' + ex, message || '');
}
}
protected executesWithin(actual: () => void, timeLimit: number, message: string = ''): void {
function getTime() {
return window.performance.now();
}
function timeToString(value: number) {
return Math.round(value * 100) / 100;
}
var startOfExecution = getTime();
try {
actual();
} catch (ex) {
throw this.getError('isExecuteTimeLessThanLimit fails when given code throws an exception: "' + ex + '"', message);
}
var executingTime = getTime() - startOfExecution;
if (executingTime > timeLimit) {
throw this.getError('isExecuteTimeLessThanLimit fails when execution time of given code (' + timeToString(executingTime) + ' ms) ' +
'exceed the given limit(' + timeToString(timeLimit) + ' ms)',
message);
}
}
protected fail(message = '') {
throw this.getError('fail', message);
}
private getError(resultMessage: string, message: string = '') {
if (message) {
return new Error(resultMessage + '. ' + message);
}
return new Error(resultMessage);
}
private static getNameOfClass(inputClass: {}) {
// see: https://www.stevefenton.co.uk/Content/Blog/Date/201304/Blog/Obtaining-A-Class-Name-At-Runtime-In-TypeScript/
var funcNameRegex = /function (.{1,})\(/;
var results = (funcNameRegex).exec((<any>inputClass).constructor.toString());
return (results && results.length > 1) ? results[1] : '';
}
private printVariable(variable: any) {
if (variable === null) {
return '"null"';
}
if (typeof variable === 'object') {
return '{object: ' + TestContext.getNameOfClass(variable) + '}';
}
return '{' + (typeof variable) + '} "' + variable + '"';
}
}
export class TestClass extends TestContext {
protected parameterizeUnitTest(method: Function, parametersArray: any[][]) {
(<any>method).parameters = parametersArray;
}
}
export class FakeFactory {
static getFake<T>(obj: any, ...implementations: [string, any][]): T {
var fakeType: any = function () { };
this.populateFakeType(fakeType, obj);
var fake: any = new fakeType();
var propertyNames = FunctionPropertyHelper.getAllPropertyNames(obj);
for (var k = 0; k < propertyNames.length; k++) {
fake[propertyNames[k]] = function () { console.log('Default fake called.'); };
}
var memberNameIndex = 0;
var memberValueIndex = 1;
for (var i = 0; i < implementations.length; i++) {
var impl = implementations[i];
fake[impl[memberNameIndex]] = impl[memberValueIndex];
}
return <T>fake;
}
private static populateFakeType(fake: any, toCopy: any) {
let properties = FunctionPropertyHelper.getAllPropertyNames(toCopy);
for (var i = 0; i < properties.length; i++) {
var property = properties[i];
fake[property] = toCopy[property];
}
var __: any = function () {
this.constructor = fake;
}
__.prototype = toCopy.prototype;
fake.prototype = new __();
}
}
export class TestDefinition {
constructor(public testClass: TestClass, public name: string) {
}
}
export class TestDescription {
constructor(public testName: string, public funcName: string, public parameterSetNumber: number | null, public message: string) {
}
}
export class FunctionPropertyHelper {
static walkImpl(obj: any, results: Set<string>): void {
if (obj == null) {
return;
}
const ownPropertiesOfObj = Object.getOwnPropertyNames(obj);
ownPropertiesOfObj.forEach(mem => results.add(mem));
const prototype = Object.getPrototypeOf(obj);
if (prototype == null) {
return;
}
const propNames = Object.getOwnPropertyNames(prototype);
propNames.forEach(mem => results.add(mem));
this.walkImpl(obj.prototype, results);
this.walkImpl(prototype, results);
}
static walk(obj: any): string[] {
const results = new Set<string>();
this.walkImpl(obj, results);
return Array.from(results);
}
static getFunctionNames(type: any): string[] {
return this.walk(type)
.filter(mem => {
var method = type[mem];
return method instanceof Function &&
(method !== type &&
method.prototype !==
Object
.getPrototypeOf(type));
});
}
static getAllPropertyNames(type: any): string[] {
let properties = this.walk(type);
if (typeof type === "function") {
var functionProps = this.walk(Function);
return properties.filter(mem => !functionProps.some(funcProp => funcProp === mem));
}
return properties.filter(mem => {
var method = type[mem];
return method !== type &&
method.prototype !==
Object
.getPrototypeOf(type);
});
}
}