blob: 6a7c2da9e47d1ca56b52c98b3afbd2a2b6d72b6c [file] [log] [blame]
Steve Blocka7e24c12009-10-30 11:49:00 +00001// Copyright 2008 the V8 project authors. All rights reserved.
2// Redistribution and use in source and binary forms, with or without
3// modification, are permitted provided that the following conditions are
4// met:
5//
6// * Redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer.
8// * Redistributions in binary form must reproduce the above
9// copyright notice, this list of conditions and the following
10// disclaimer in the documentation and/or other materials provided
11// with the distribution.
12// * Neither the name of Google Inc. nor the names of its
13// contributors may be used to endorse or promote products derived
14// from this software without specific prior written permission.
15//
16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28function MjsUnitAssertionError(message) {
29 this.message = message;
Kristian Monsen25f61362010-05-21 11:50:48 +010030 // This allows fetching the stack trace using TryCatch::StackTrace.
31 this.stack = new Error("").stack;
Steve Blocka7e24c12009-10-30 11:49:00 +000032}
33
Steve Blocka7e24c12009-10-30 11:49:00 +000034/*
35 * This file is included in all mini jsunit test cases. The test
36 * framework expects lines that signal failed tests to start with
37 * the f-word and ignore all other lines.
38 */
39
Ben Murdoch257744e2011-11-30 15:57:28 +000040
41MjsUnitAssertionError.prototype.toString = function () {
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000042 return this.message + "\n\nStack: " + this.stack;
Ben Murdoch257744e2011-11-30 15:57:28 +000043};
44
45
46// Expected and found values the same objects, or the same primitive
47// values.
48// For known primitive values, please use assertEquals.
49var assertSame;
50
51// Expected and found values are identical primitive values or functions
52// or similarly structured objects (checking internal properties
53// of, e.g., Number and Date objects, the elements of arrays
54// and the properties of non-Array objects).
55var assertEquals;
56
Ben Murdochb8a8cc12014-11-26 15:28:44 +000057
58// The difference between expected and found value is within certain tolerance.
59var assertEqualsDelta;
60
Ben Murdoch257744e2011-11-30 15:57:28 +000061// The found object is an Array with the same length and elements
62// as the expected object. The expected object doesn't need to be an Array,
63// as long as it's "array-ish".
64var assertArrayEquals;
65
66// The found object must have the same enumerable properties as the
67// expected object. The type of object isn't checked.
68var assertPropertiesEqual;
69
70// Assert that the string conversion of the found value is equal to
71// the expected string. Only kept for backwards compatability, please
72// check the real structure of the found value.
73var assertToStringEquals;
74
75// Checks that the found value is true. Use with boolean expressions
76// for tests that doesn't have their own assertXXX function.
77var assertTrue;
78
79// Checks that the found value is false.
80var assertFalse;
81
Ben Murdochb8a8cc12014-11-26 15:28:44 +000082// Checks that the found value is null. Kept for historical compatibility,
Ben Murdoch257744e2011-11-30 15:57:28 +000083// please just use assertEquals(null, expected).
84var assertNull;
85
86// Checks that the found value is *not* null.
87var assertNotNull;
88
89// Assert that the passed function or eval code throws an exception.
90// The optional second argument is an exception constructor that the
91// thrown exception is checked against with "instanceof".
92// The optional third argument is a message type string that is compared
93// to the type property on the thrown exception.
94var assertThrows;
95
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000096// Assert that the passed function throws an exception.
97// The exception is checked against the second argument using assertEquals.
98var assertThrowsEquals;
99
Ben Murdoch257744e2011-11-30 15:57:28 +0000100// Assert that the passed function or eval code does not throw an exception.
101var assertDoesNotThrow;
102
103// Asserts that the found value is an instance of the constructor passed
104// as the second argument.
105var assertInstanceof;
106
107// Assert that this code is never executed (i.e., always fails if executed).
108var assertUnreachable;
109
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000110// Assert that the function code is (not) optimized. If "no sync" is passed
111// as second argument, we do not wait for the concurrent optimization thread to
112// finish when polling for optimization status.
113// Only works with --allow-natives-syntax.
114var assertOptimized;
115var assertUnoptimized;
116
Ben Murdochc5610432016-08-08 18:44:38 +0100117// Assert that a string contains another expected substring.
118var assertContains;
119
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000120
Ben Murdoch257744e2011-11-30 15:57:28 +0000121(function () { // Scope for utility functions.
122
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000123 var ObjectPrototypeToString = Object.prototype.toString;
124 var NumberPrototypeValueOf = Number.prototype.valueOf;
125 var BooleanPrototypeValueOf = Boolean.prototype.valueOf;
126 var StringPrototypeValueOf = String.prototype.valueOf;
127 var DatePrototypeValueOf = Date.prototype.valueOf;
128 var RegExpPrototypeToString = RegExp.prototype.toString;
129 var ArrayPrototypeMap = Array.prototype.map;
130 var ArrayPrototypeJoin = Array.prototype.join;
131
Ben Murdoch257744e2011-11-30 15:57:28 +0000132 function classOf(object) {
133 // Argument must not be null or undefined.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000134 var string = ObjectPrototypeToString.call(object);
Ben Murdoch257744e2011-11-30 15:57:28 +0000135 // String has format [object <ClassName>].
136 return string.substring(8, string.length - 1);
137 }
138
139
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000140 function ValueOf(value) {
141 switch (classOf(value)) {
142 case "Number":
143 return NumberPrototypeValueOf.call(value);
144 case "String":
145 return StringPrototypeValueOf.call(value);
146 case "Boolean":
147 return BooleanPrototypeValueOf.call(value);
148 case "Date":
149 return DatePrototypeValueOf.call(value);
150 default:
151 return value;
152 }
153 }
154
155
Ben Murdoch257744e2011-11-30 15:57:28 +0000156 function PrettyPrint(value) {
157 switch (typeof value) {
158 case "string":
159 return JSON.stringify(value);
160 case "number":
161 if (value === 0 && (1 / value) < 0) return "-0";
162 // FALLTHROUGH.
163 case "boolean":
164 case "undefined":
165 case "function":
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000166 case "symbol":
Ben Murdoch257744e2011-11-30 15:57:28 +0000167 return String(value);
168 case "object":
169 if (value === null) return "null";
170 var objectClass = classOf(value);
171 switch (objectClass) {
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000172 case "Number":
173 case "String":
174 case "Boolean":
175 case "Date":
176 return objectClass + "(" + PrettyPrint(ValueOf(value)) + ")";
177 case "RegExp":
178 return RegExpPrototypeToString.call(value);
179 case "Array":
180 var mapped = ArrayPrototypeMap.call(value, PrettyPrintArrayElement);
181 var joined = ArrayPrototypeJoin.call(mapped, ",");
182 return "[" + joined + "]";
183 case "Object":
184 break;
185 default:
186 return objectClass + "()";
Ben Murdoch257744e2011-11-30 15:57:28 +0000187 }
188 // [[Class]] is "Object".
189 var name = value.constructor.name;
190 if (name) return name + "()";
191 return "Object()";
192 default:
193 return "-- unknown value --";
194 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000195 }
Steve Block44f0eee2011-05-26 01:26:41 +0100196
Ben Murdoch257744e2011-11-30 15:57:28 +0000197
198 function PrettyPrintArrayElement(value, index, array) {
199 if (value === undefined && !(index in array)) return "";
200 return PrettyPrint(value);
201 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000202
203
Ben Murdoch257744e2011-11-30 15:57:28 +0000204 function fail(expectedText, found, name_opt) {
205 var message = "Fail" + "ure";
206 if (name_opt) {
207 // Fix this when we ditch the old test runner.
208 message += " (" + name_opt + ")";
209 }
210
211 message += ": expected <" + expectedText +
212 "> found <" + PrettyPrint(found) + ">";
213 throw new MjsUnitAssertionError(message);
214 }
215
216
217 function deepObjectEquals(a, b) {
218 var aProps = Object.keys(a);
219 aProps.sort();
220 var bProps = Object.keys(b);
221 bProps.sort();
222 if (!deepEquals(aProps, bProps)) {
Steve Blocka7e24c12009-10-30 11:49:00 +0000223 return false;
Ben Murdoch257744e2011-11-30 15:57:28 +0000224 }
225 for (var i = 0; i < aProps.length; i++) {
226 if (!deepEquals(a[aProps[i]], b[aProps[i]])) {
Steve Blocka7e24c12009-10-30 11:49:00 +0000227 return false;
228 }
229 }
230 return true;
Ben Murdoch257744e2011-11-30 15:57:28 +0000231 }
232
233
234 function deepEquals(a, b) {
235 if (a === b) {
236 // Check for -0.
237 if (a === 0) return (1 / a) === (1 / b);
238 return true;
239 }
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000240 if (typeof a !== typeof b) return false;
241 if (typeof a === "number") return isNaN(a) && isNaN(b);
Ben Murdoch257744e2011-11-30 15:57:28 +0000242 if (typeof a !== "object" && typeof a !== "function") return false;
243 // Neither a nor b is primitive.
244 var objectClass = classOf(a);
245 if (objectClass !== classOf(b)) return false;
246 if (objectClass === "RegExp") {
247 // For RegExp, just compare pattern and flags using its toString.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000248 return RegExpPrototypeToString.call(a) ===
249 RegExpPrototypeToString.call(b);
Ben Murdoch257744e2011-11-30 15:57:28 +0000250 }
251 // Functions are only identical to themselves.
252 if (objectClass === "Function") return false;
253 if (objectClass === "Array") {
254 var elementCount = 0;
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000255 if (a.length !== b.length) {
Ben Murdoch257744e2011-11-30 15:57:28 +0000256 return false;
257 }
258 for (var i = 0; i < a.length; i++) {
259 if (!deepEquals(a[i], b[i])) return false;
260 }
261 return true;
262 }
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000263 if (objectClass === "String" || objectClass === "Number" ||
264 objectClass === "Boolean" || objectClass === "Date") {
265 if (ValueOf(a) !== ValueOf(b)) return false;
Ben Murdoch257744e2011-11-30 15:57:28 +0000266 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000267 return deepObjectEquals(a, b);
268 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000269
Ben Murdoch257744e2011-11-30 15:57:28 +0000270 assertSame = function assertSame(expected, found, name_opt) {
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100271 // TODO(mstarzinger): We should think about using Harmony's egal operator
272 // or the function equivalent Object.is() here.
Ben Murdoch257744e2011-11-30 15:57:28 +0000273 if (found === expected) {
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000274 if (expected !== 0 || (1 / expected) === (1 / found)) return;
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100275 } else if ((expected !== expected) && (found !== found)) {
Ben Murdoch257744e2011-11-30 15:57:28 +0000276 return;
Steve Blocka7e24c12009-10-30 11:49:00 +0000277 }
Ben Murdoch257744e2011-11-30 15:57:28 +0000278 fail(PrettyPrint(expected), found, name_opt);
279 };
Steve Blocka7e24c12009-10-30 11:49:00 +0000280
281
Ben Murdoch257744e2011-11-30 15:57:28 +0000282 assertEquals = function assertEquals(expected, found, name_opt) {
283 if (!deepEquals(found, expected)) {
284 fail(PrettyPrint(expected), found, name_opt);
Steve Blocka7e24c12009-10-30 11:49:00 +0000285 }
Ben Murdoch257744e2011-11-30 15:57:28 +0000286 };
Steve Blocka7e24c12009-10-30 11:49:00 +0000287
288
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000289 assertEqualsDelta =
290 function assertEqualsDelta(expected, found, delta, name_opt) {
291 assertTrue(Math.abs(expected - found) <= delta, name_opt);
292 };
293
294
Ben Murdoch257744e2011-11-30 15:57:28 +0000295 assertArrayEquals = function assertArrayEquals(expected, found, name_opt) {
296 var start = "";
297 if (name_opt) {
298 start = name_opt + " - ";
Steve Blocka7e24c12009-10-30 11:49:00 +0000299 }
Ben Murdoch257744e2011-11-30 15:57:28 +0000300 assertEquals(expected.length, found.length, start + "array length");
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000301 if (expected.length === found.length) {
Ben Murdoch257744e2011-11-30 15:57:28 +0000302 for (var i = 0; i < expected.length; ++i) {
303 assertEquals(expected[i], found[i],
304 start + "array element at index " + i);
305 }
306 }
307 };
Steve Blocka7e24c12009-10-30 11:49:00 +0000308
309
Ben Murdoch257744e2011-11-30 15:57:28 +0000310 assertPropertiesEqual = function assertPropertiesEqual(expected, found,
311 name_opt) {
312 // Check properties only.
313 if (!deepObjectEquals(expected, found)) {
314 fail(expected, found, name_opt);
315 }
316 };
317
318
319 assertToStringEquals = function assertToStringEquals(expected, found,
320 name_opt) {
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000321 if (expected !== String(found)) {
Ben Murdoch257744e2011-11-30 15:57:28 +0000322 fail(expected, found, name_opt);
323 }
324 };
325
326
327 assertTrue = function assertTrue(value, name_opt) {
328 assertEquals(true, value, name_opt);
329 };
330
331
332 assertFalse = function assertFalse(value, name_opt) {
333 assertEquals(false, value, name_opt);
334 };
335
336
337 assertNull = function assertNull(value, name_opt) {
338 if (value !== null) {
339 fail("null", value, name_opt);
340 }
341 };
342
343
344 assertNotNull = function assertNotNull(value, name_opt) {
345 if (value === null) {
346 fail("not null", value, name_opt);
347 }
348 };
349
350
351 assertThrows = function assertThrows(code, type_opt, cause_opt) {
352 var threwException = true;
353 try {
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000354 if (typeof code === 'function') {
Ben Murdoch257744e2011-11-30 15:57:28 +0000355 code();
356 } else {
357 eval(code);
358 }
359 threwException = false;
360 } catch (e) {
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000361 if (typeof type_opt === 'function') {
Ben Murdoch257744e2011-11-30 15:57:28 +0000362 assertInstanceof(e, type_opt);
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000363 } else if (type_opt !== void 0) {
364 fail("invalid use of assertThrows, maybe you want assertThrowsEquals");
Ben Murdoch257744e2011-11-30 15:57:28 +0000365 }
366 if (arguments.length >= 3) {
367 assertEquals(e.type, cause_opt);
368 }
369 // Success.
370 return;
371 }
372 throw new MjsUnitAssertionError("Did not throw exception");
373 };
374
375
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000376 assertThrowsEquals = function assertThrowsEquals(fun, val) {
377 try {
378 fun();
379 } catch(e) {
380 assertEquals(val, e);
381 return;
382 }
383 throw new MjsUnitAssertionError("Did not throw exception");
384 };
385
386
Ben Murdoch257744e2011-11-30 15:57:28 +0000387 assertInstanceof = function assertInstanceof(obj, type) {
388 if (!(obj instanceof type)) {
389 var actualTypeName = null;
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000390 var actualConstructor = Object.getPrototypeOf(obj).constructor;
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000391 if (typeof actualConstructor === "function") {
Ben Murdoch257744e2011-11-30 15:57:28 +0000392 actualTypeName = actualConstructor.name || String(actualConstructor);
393 }
394 fail("Object <" + PrettyPrint(obj) + "> is not an instance of <" +
395 (type.name || type) + ">" +
396 (actualTypeName ? " but of < " + actualTypeName + ">" : ""));
397 }
398 };
399
400
401 assertDoesNotThrow = function assertDoesNotThrow(code, name_opt) {
402 try {
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000403 if (typeof code === 'function') {
Ben Murdoch257744e2011-11-30 15:57:28 +0000404 code();
405 } else {
406 eval(code);
407 }
408 } catch (e) {
409 fail("threw an exception: ", e.message || e, name_opt);
410 }
411 };
412
413 assertUnreachable = function assertUnreachable(name_opt) {
414 // Fix this when we ditch the old test runner.
415 var message = "Fail" + "ure: unreachable";
416 if (name_opt) {
417 message += " - " + name_opt;
418 }
419 throw new MjsUnitAssertionError(message);
420 };
421
Ben Murdochc5610432016-08-08 18:44:38 +0100422 assertContains = function(sub, value, name_opt) {
423 if (value == null ? (sub != null) : value.indexOf(sub) == -1) {
424 fail("contains '" + String(sub) + "'", value, name_opt);
425 }
426 };
427
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000428 var OptimizationStatusImpl = undefined;
Ben Murdoch257744e2011-11-30 15:57:28 +0000429
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000430 var OptimizationStatus = function(fun, sync_opt) {
431 if (OptimizationStatusImpl === undefined) {
432 try {
433 OptimizationStatusImpl = new Function(
434 "fun", "sync", "return %GetOptimizationStatus(fun, sync);");
435 } catch (e) {
436 throw new Error("natives syntax not allowed");
437 }
438 }
439 return OptimizationStatusImpl(fun, sync_opt);
440 }
441
442 assertUnoptimized = function assertUnoptimized(fun, sync_opt, name_opt) {
443 if (sync_opt === undefined) sync_opt = "";
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000444 assertTrue(OptimizationStatus(fun, sync_opt) !== 1, name_opt);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000445 }
446
447 assertOptimized = function assertOptimized(fun, sync_opt, name_opt) {
448 if (sync_opt === undefined) sync_opt = "";
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000449 assertTrue(OptimizationStatus(fun, sync_opt) !== 2, name_opt);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000450 }
451
452})();