forked from chakra-core/ChakraCore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUnitTestFramework.js
More file actions
357 lines (315 loc) · 14.5 KB
/
UnitTestFramework.js
File metadata and controls
357 lines (315 loc) · 14.5 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
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
// Unit test framework. The one API that can be used by unit tests.
// Usage:
// How to import UTF -- add the following to the beginning of your test:
// /// <reference path="../UnitTestFramework/UnitTestFramework.js" />
// if (this.WScript && this.WScript.LoadScriptFile) { // Check for running in ch
// this.WScript.LoadScriptFile("..\\UnitTestFramework\\UnitTestFramework.js");
// }
// How to define and run tests:
// var tests = [ { name: "test name 1", body: function () {} }, ...];
// testRunner.run(tests);
// How to output "pass" only if run passes so that we can skip baseline:
// testRunner.run(tests, {verbose: false});
// Or do this only when "summary" is given on command line:
// jshost -args summary -endargs
// testRunner.run(tests, { verbose: WScript.Arguments[0] != "summary" });
// How to use assert:
// assert.areEqual(expected, actual, "those two should be equal");
// assert.areNotEqual(expected, actual, "those two should NOT be equal");
// assert.fail("error");
// assert.throws(function, SyntaxError);
// assert.doesNotThrow(function, "this function should not throw anything");
// Some useful helpers:
// helpers.writeln("works in both", "console", "and", "browser);
// helpers.printObject(WScript);
// var isInBrowser = helpers.isInBrowser();
var helpers = function helpers() {
//private
var undefinedAsString = "undefined";
var isWScriptAvailable = this.WScript;
if (isWScriptAvailable && !this.WScript.LoadModuleFile) {
WScript.LoadModuleFile = function (fileName) {
WScript.LoadScriptFile(fileName, "module");
}
}
return {
isInBrowser: function isInBrowser() {
return typeof (document) !== undefinedAsString;
},
// TODO: instead of this hack consider exposing this/ScriptConfiguration through WScript.
get isCompatVersion9() {
return (typeof (ArrayBuffer) == undefinedAsString);
},
get isVersion10OrLater() {
return !this.isCompatVersion9;
},
// If propName is provided, thedummy object would have 1 property with name = propName, value = 0.
getDummyObject: function getDummyObject(propName) {
var dummy = this.isInBrowser() ? document : {};
//var dummy = {};
if (propName != undefined) {
dummy[propName] = 0;
}
return dummy;
},
writeln: function writeln() {
var line = "", i;
for (i = 0; i < arguments.length; i += 1) {
line = line.concat(arguments[i])
}
if (!this.isInBrowser() || isWScriptAvailable) {
WScript.Echo(line);
} else {
document.writeln(line);
document.writeln("<br/>");
}
},
printObject: function printObject(o) {
var name;
for (name in o) {
this.writeln(name, o.hasOwnProperty(name) ? "" : " (inherited)", ": ", o[name]);
}
},
withPropertyDeleted: function withPropertyDeleted(object, propertyName, callback) {
var descriptor = Object.getOwnPropertyDescriptor(object, propertyName);
try {
delete object[propertyName];
callback();
} finally {
Object.defineProperty(object, propertyName, descriptor);
}
},
}
}(); // helpers module.
var testRunner = function testRunner() {
var executedTestCount = 0;
var passedTestCount = 0;
var objectType = "object";
var _verbose = true; // If false, try to output "pass" only for passed run so we can skip baseline.
return {
runTests: function runTests(testsToRun, options) {
///<summary>Runs provided tests.<br/>
/// The 'testsToRun' is an object that has enumerable properties,<br/>
/// each property is an object that has 'name' and 'body' properties.
///</summary>
if (options && options.hasOwnProperty("verbose")) {
_verbose = options.verbose;
}
for (var i in testsToRun) {
var isRunnable = typeof testsToRun[i] === objectType;
if (isRunnable) {
this.runTest(i, testsToRun[i].name, testsToRun[i].body);
}
}
if (_verbose || executedTestCount != passedTestCount) {
helpers.writeln("Summary of tests: total executed: ", executedTestCount,
"; passed: ", passedTestCount, "; failed: ", executedTestCount - passedTestCount);
} else {
helpers.writeln("pass");
}
},
run: function run(tests, options) {
this.runTests(tests, options);
},
runTest: function runTest(testIndex, testName, testBody) {
///<summary>Runs test body catching all exceptions.<br/>
/// Result: prints PASSED/FAILED to the output.
///</summary>
function logTestNameIf(b) {
if (b) {
helpers.writeln("*** Running test #", executedTestCount + 1, " (", testIndex, "): ", testName);
}
}
logTestNameIf(_verbose);
var isSuccess = true;
try {
testBody();
} catch (ex) {
var message = ex.stack || ex.message || ex;
logTestNameIf(!_verbose);
helpers.writeln("Test threw exception: ", message);
isSuccess = false;
}
if (isSuccess) {
if (_verbose) {
helpers.writeln("PASSED");
}
++passedTestCount;
} else {
helpers.writeln("FAILED");
}
++executedTestCount;
}
}
}(); // testRunner.
var assert = function assert() {
// private
var isObject = function isObject(x) {
return x instanceof Object && typeof x !== "function";
};
var isNaN = function isNaN(x) {
return x !== x;
};
// returns true on success, and error message on failure
var compare = function compare(expected, actual) {
if (expected === actual) {
return true;
} else if (isObject(expected)) {
if (!isObject(actual)) return "actual is not an object";
var expectedFieldCount = 0, actualFieldCount = 0;
for (var i in expected) {
var compareResult = compare(expected[i], actual[i]);
if (compareResult !== true) return compareResult;
++expectedFieldCount;
}
for (var i in actual) {
++actualFieldCount;
}
if (expectedFieldCount !== actualFieldCount) {
return "actual has different number of fields than expected";
}
return true;
} else {
if (isObject(actual)) return "actual is an object";
if (isNaN(expected) && isNaN(actual)) return true;
return "expected: " + expected + " actual: " + actual;
}
};
var epsilon = (function () {
var next, result;
for (next = 1; 1 + next !== 1; next = next / 2) {
result = next;
}
return result;
}());
var compareAlmostEqualRelative = function compareAlmostEqualRelative(expected, actual) {
if (typeof expected !== "number" || typeof actual !== "number") {
return compare(expected, actual);
} else {
var diff = Math.abs(expected - actual);
var absExpected = Math.abs(expected);
var absActual = Math.abs(actual);
var largest = (absExpected > absActual) ? absExpected : absActual;
var maxRelDiff = epsilon * 5;
if (diff <= largest * maxRelDiff) {
return true;
} else {
return "expected almost: " + expected + " actual: " + actual + " difference: " + diff;
}
}
}
var validate = function validate(result, assertType, message) {
if (result !== true) {
var exMessage = addMessage("assert." + assertType + " failed: " + result);
exMessage = addMessage(exMessage, message);
throw exMessage;
}
}
var addMessage = function addMessage(baseMessage, message) {
if (message !== undefined) {
baseMessage += ": " + message;
}
return baseMessage;
}
return {
areEqual: function areEqual(expected, actual, message) {
/// <summary>
/// IMPORTANT: NaN compares equal.<br/>
/// IMPORTANT: for objects, assert.AreEqual checks the fields.<br/>
/// So, for 'var obj1={}, obj2={}' areEqual would be success, although in Javascript obj1 != obj2.<br/><br/>
/// Performs deep comparison of arguments.<br/>
/// This works for objects and simple types.<br/><br/>
///
/// TODO: account for other types?<br/>
/// TODO: account for missing vs undefined fields.
/// </summary>
validate(compare(expected, actual), "areEqual", message);
},
areNotEqual: function areNotEqual(expected, actual, message) {
validate(compare(expected, actual) !== true, "areNotEqual", message);
},
areAlmostEqual: function areAlmostEqual(expected, actual, message) {
/// <summary>
/// Compares numbers with an almost equal relative epsilon comparison.
/// Useful for verifying math functions.
/// </summary>
validate(compareAlmostEqualRelative(expected, actual), "areAlmostEqual", message);
},
isTrue: function isTrue(actual, message) {
validate(compare(true, actual), "isTrue", message);
},
isFalse: function isFalse(actual, message) {
validate(compare(false, actual), "isFalse", message);
},
isUndefined: function isUndefined(actual, message) {
validate(compare(undefined, actual), "isUndefined", message);
},
isNotUndefined: function isUndefined(actual, message) {
validate(compare(undefined, actual) !== true, "isNotUndefined", message);
},
throws: function throws(testFunction, expectedException, message, expectedErrorMessage) {
/// <summary>
/// Makes sure that the function specified by the 'testFunction' parameter
/// throws the exception specified by the 'expectedException' parameter.<br/><br/>
///
/// expectedException: A specific exception type, e.g. TypeError.
/// if undefined, this will pass if testFunction throws any exception.<br/>
/// message: Test-provided explanation of why this particular exception should be thrown.<br/>
/// expectedErrorMessage: If specified, verifies the thrown Error has expected message.<br/>
/// You only need to specify this if you are looking for a specific error message.<br/>
/// Does not require the prefix of e.g. "TypeError:" that would be printed by the host.<br/><br/>
///
/// Example:<br/>
/// assert.throws(function() { eval("{"); }, SyntaxError, "expected SyntaxError")<br/>
/// assert.throws(function() { eval("{"); }) // -- use this when you don't care which exception is thrown.<br/>
/// assert.throws(function() { eval("{"); }, SyntaxError, "expected SyntaxError with message about expected semicolon.", "Expected ';'")
/// </summary>
var noException = {}; // Some unique object which will not be equal to anything else.
var exception = noException; // Set default value.
try {
testFunction();
} catch (ex) {
exception = ex;
}
if (expectedException === undefined && exception !== noException) {
return; // Any exception thrown is OK.
}
var validationPart = exception;
if (exception !== noException && exception instanceof Object) {
validationPart = exception.constructor;
}
var validationErrorMessage = exception instanceof Error ? exception.message : undefined;
if (validationPart !== expectedException || (expectedErrorMessage && validationErrorMessage !== expectedErrorMessage)) {
var expectedString = expectedException !== undefined ?
expectedException.toString().replace(/\n/g, "").replace(/.*function (.*)\(.*/g, "$1") :
"<any exception>";
if (expectedErrorMessage) {
expectedString += " " + expectedErrorMessage;
}
var actual = exception !== noException ? exception : "<no exception>";
throw addMessage("assert.throws failed: expected: " + expectedString + ", actual: " + actual, message);
}
},
doesNotThrow: function doesNotThrow(testFunction, message) {
var noException = {};
var exception = noException;
try {
testFunction();
} catch (ex) {
exception = ex;
}
if (exception === noException) {
return;
}
throw addMessage("assert.doesNotThrow failed: expected: <no exception>, actual: " + exception, message);
},
fail: function fail(message) {
///<summary>Can be used to fail the test.</summary>
throw message;
}
}
}(); // assert.