2008-09-09 20:08:45 +00:00
|
|
|
// Copyright 2008 the V8 project authors. All rights reserved.
|
2008-08-14 13:41:48 +00:00
|
|
|
// Redistribution and use in source and binary forms, with or without
|
|
|
|
// modification, are permitted provided that the following conditions are
|
|
|
|
// met:
|
|
|
|
//
|
|
|
|
// * Redistributions of source code must retain the above copyright
|
|
|
|
// notice, this list of conditions and the following disclaimer.
|
|
|
|
// * Redistributions in binary form must reproduce the above
|
|
|
|
// copyright notice, this list of conditions and the following
|
|
|
|
// disclaimer in the documentation and/or other materials provided
|
|
|
|
// with the distribution.
|
|
|
|
// * Neither the name of Google Inc. nor the names of its
|
|
|
|
// contributors may be used to endorse or promote products derived
|
|
|
|
// from this software without specific prior written permission.
|
|
|
|
//
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
2008-08-22 13:33:59 +00:00
|
|
|
function MjsUnitAssertionError(message) {
|
|
|
|
this.message = message;
|
2010-05-14 10:00:24 +00:00
|
|
|
// This allows fetching the stack trace using TryCatch::StackTrace.
|
|
|
|
this.stack = new Error("").stack;
|
2008-08-22 13:33:59 +00:00
|
|
|
}
|
|
|
|
|
2008-08-14 13:41:48 +00:00
|
|
|
/*
|
|
|
|
* This file is included in all mini jsunit test cases. The test
|
|
|
|
* framework expects lines that signal failed tests to start with
|
|
|
|
* the f-word and ignore all other lines.
|
|
|
|
*/
|
|
|
|
|
2011-04-14 09:05:43 +00:00
|
|
|
|
|
|
|
MjsUnitAssertionError.prototype.toString = function () {
|
2015-10-09 13:11:53 +00:00
|
|
|
return this.message + "\n\nStack: " + this.stack;
|
2011-04-14 09:05:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-04-15 11:35:36 +00:00
|
|
|
// Expected and found values the same objects, or the same primitive
|
|
|
|
// values.
|
|
|
|
// For known primitive values, please use assertEquals.
|
|
|
|
var assertSame;
|
|
|
|
|
|
|
|
// Expected and found values are identical primitive values or functions
|
|
|
|
// or similarly structured objects (checking internal properties
|
|
|
|
// of, e.g., Number and Date objects, the elements of arrays
|
|
|
|
// and the properties of non-Array objects).
|
|
|
|
var assertEquals;
|
|
|
|
|
2013-11-20 15:04:37 +00:00
|
|
|
|
|
|
|
// The difference between expected and found value is within certain tolerance.
|
|
|
|
var assertEqualsDelta;
|
|
|
|
|
2011-04-15 11:35:36 +00:00
|
|
|
// The found object is an Array with the same length and elements
|
|
|
|
// as the expected object. The expected object doesn't need to be an Array,
|
|
|
|
// as long as it's "array-ish".
|
|
|
|
var assertArrayEquals;
|
|
|
|
|
|
|
|
// The found object must have the same enumerable properties as the
|
|
|
|
// expected object. The type of object isn't checked.
|
|
|
|
var assertPropertiesEqual;
|
|
|
|
|
|
|
|
// Assert that the string conversion of the found value is equal to
|
|
|
|
// the expected string. Only kept for backwards compatability, please
|
|
|
|
// check the real structure of the found value.
|
|
|
|
var assertToStringEquals;
|
|
|
|
|
|
|
|
// Checks that the found value is true. Use with boolean expressions
|
|
|
|
// for tests that doesn't have their own assertXXX function.
|
|
|
|
var assertTrue;
|
|
|
|
|
|
|
|
// Checks that the found value is false.
|
|
|
|
var assertFalse;
|
|
|
|
|
2012-04-16 13:20:50 +00:00
|
|
|
// Checks that the found value is null. Kept for historical compatibility,
|
2011-04-15 11:35:36 +00:00
|
|
|
// please just use assertEquals(null, expected).
|
|
|
|
var assertNull;
|
|
|
|
|
|
|
|
// Checks that the found value is *not* null.
|
|
|
|
var assertNotNull;
|
|
|
|
|
|
|
|
// Assert that the passed function or eval code throws an exception.
|
|
|
|
// The optional second argument is an exception constructor that the
|
|
|
|
// thrown exception is checked against with "instanceof".
|
|
|
|
// The optional third argument is a message type string that is compared
|
|
|
|
// to the type property on the thrown exception.
|
|
|
|
var assertThrows;
|
|
|
|
|
2016-01-07 14:48:57 +00:00
|
|
|
// Assert that the passed function throws an exception.
|
|
|
|
// The exception is checked against the second argument using assertEquals.
|
|
|
|
var assertThrowsEquals;
|
|
|
|
|
2011-04-15 11:35:36 +00:00
|
|
|
// Assert that the passed function or eval code does not throw an exception.
|
|
|
|
var assertDoesNotThrow;
|
|
|
|
|
|
|
|
// Asserts that the found value is an instance of the constructor passed
|
|
|
|
// as the second argument.
|
|
|
|
var assertInstanceof;
|
|
|
|
|
|
|
|
// Assert that this code is never executed (i.e., always fails if executed).
|
|
|
|
var assertUnreachable;
|
|
|
|
|
2013-07-22 09:16:33 +00:00
|
|
|
// Assert that the function code is (not) optimized. If "no sync" is passed
|
2013-08-22 16:14:37 +00:00
|
|
|
// as second argument, we do not wait for the concurrent optimization thread to
|
2013-07-22 09:16:33 +00:00
|
|
|
// finish when polling for optimization status.
|
|
|
|
// Only works with --allow-natives-syntax.
|
|
|
|
var assertOptimized;
|
|
|
|
var assertUnoptimized;
|
|
|
|
|
2016-04-21 08:35:21 +00:00
|
|
|
// Assert that a string contains another expected substring.
|
|
|
|
var assertContains;
|
|
|
|
|
2016-10-12 09:17:12 +00:00
|
|
|
// Assert that a string matches a given regex.
|
|
|
|
var assertMatches;
|
|
|
|
|
2017-03-30 14:52:13 +00:00
|
|
|
// Assert the result of a promise.
|
|
|
|
var assertPromiseResult;
|
|
|
|
|
2017-05-10 16:18:55 +00:00
|
|
|
var promiseTestChain;
|
|
|
|
var promiseTestCount = 0;
|
|
|
|
|
2017-01-27 10:13:53 +00:00
|
|
|
// These bits must be in sync with bits defined in Runtime_GetOptimizationStatus
|
|
|
|
var V8OptimizationStatus = {
|
|
|
|
kIsFunction: 1 << 0,
|
|
|
|
kNeverOptimize: 1 << 1,
|
|
|
|
kAlwaysOptimize: 1 << 2,
|
|
|
|
kMaybeDeopted: 1 << 3,
|
|
|
|
kOptimized: 1 << 4,
|
|
|
|
kTurboFanned: 1 << 5,
|
|
|
|
kInterpreted: 1 << 6
|
|
|
|
};
|
|
|
|
|
2017-04-28 13:33:43 +00:00
|
|
|
// Returns true if --no-opt mode is on.
|
2017-01-27 10:13:53 +00:00
|
|
|
var isNeverOptimize;
|
|
|
|
|
|
|
|
// Returns true if --always-opt mode is on.
|
|
|
|
var isAlwaysOptimize;
|
|
|
|
|
|
|
|
// Returns true if given function in interpreted.
|
|
|
|
var isInterpreted;
|
|
|
|
|
|
|
|
// Returns true if given function is optimized.
|
|
|
|
var isOptimized;
|
|
|
|
|
|
|
|
// Returns true if given function is compiled by Crankshaft.
|
|
|
|
var isCrankshafted;
|
|
|
|
|
|
|
|
// Returns true if given function is compiled by TurboFan.
|
|
|
|
var isTurboFanned;
|
|
|
|
|
2017-03-16 18:20:19 +00:00
|
|
|
// Monkey-patchable all-purpose failure handler.
|
|
|
|
var failWithMessage;
|
|
|
|
|
2013-07-22 09:16:33 +00:00
|
|
|
|
2011-04-15 11:35:36 +00:00
|
|
|
(function () { // Scope for utility functions.
|
|
|
|
|
2015-11-19 16:11:00 +00:00
|
|
|
var ObjectPrototypeToString = Object.prototype.toString;
|
|
|
|
var NumberPrototypeValueOf = Number.prototype.valueOf;
|
|
|
|
var BooleanPrototypeValueOf = Boolean.prototype.valueOf;
|
|
|
|
var StringPrototypeValueOf = String.prototype.valueOf;
|
|
|
|
var DatePrototypeValueOf = Date.prototype.valueOf;
|
|
|
|
var RegExpPrototypeToString = RegExp.prototype.toString;
|
|
|
|
var ArrayPrototypeMap = Array.prototype.map;
|
|
|
|
var ArrayPrototypeJoin = Array.prototype.join;
|
|
|
|
|
2011-04-15 11:35:36 +00:00
|
|
|
function classOf(object) {
|
|
|
|
// Argument must not be null or undefined.
|
2015-11-19 16:11:00 +00:00
|
|
|
var string = ObjectPrototypeToString.call(object);
|
2011-04-15 11:35:36 +00:00
|
|
|
// String has format [object <ClassName>].
|
|
|
|
return string.substring(8, string.length - 1);
|
|
|
|
}
|
2011-04-14 09:05:43 +00:00
|
|
|
|
|
|
|
|
2015-11-19 16:11:00 +00:00
|
|
|
function ValueOf(value) {
|
|
|
|
switch (classOf(value)) {
|
|
|
|
case "Number":
|
|
|
|
return NumberPrototypeValueOf.call(value);
|
|
|
|
case "String":
|
|
|
|
return StringPrototypeValueOf.call(value);
|
|
|
|
case "Boolean":
|
|
|
|
return BooleanPrototypeValueOf.call(value);
|
|
|
|
case "Date":
|
|
|
|
return DatePrototypeValueOf.call(value);
|
|
|
|
default:
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-04-15 11:35:36 +00:00
|
|
|
function PrettyPrint(value) {
|
|
|
|
switch (typeof value) {
|
|
|
|
case "string":
|
|
|
|
return JSON.stringify(value);
|
|
|
|
case "number":
|
|
|
|
if (value === 0 && (1 / value) < 0) return "-0";
|
|
|
|
// FALLTHROUGH.
|
|
|
|
case "boolean":
|
|
|
|
case "undefined":
|
|
|
|
case "function":
|
2015-10-27 10:23:25 +00:00
|
|
|
case "symbol":
|
2011-04-15 11:35:36 +00:00
|
|
|
return String(value);
|
|
|
|
case "object":
|
|
|
|
if (value === null) return "null";
|
|
|
|
var objectClass = classOf(value);
|
|
|
|
switch (objectClass) {
|
2015-11-19 16:11:00 +00:00
|
|
|
case "Number":
|
|
|
|
case "String":
|
|
|
|
case "Boolean":
|
|
|
|
case "Date":
|
|
|
|
return objectClass + "(" + PrettyPrint(ValueOf(value)) + ")";
|
|
|
|
case "RegExp":
|
|
|
|
return RegExpPrototypeToString.call(value);
|
|
|
|
case "Array":
|
|
|
|
var mapped = ArrayPrototypeMap.call(value, PrettyPrintArrayElement);
|
|
|
|
var joined = ArrayPrototypeJoin.call(mapped, ",");
|
|
|
|
return "[" + joined + "]";
|
2017-03-22 12:25:31 +00:00
|
|
|
case "Uint8Array":
|
|
|
|
case "Int8Array":
|
|
|
|
case "Int16Array":
|
|
|
|
case "Uint16Array":
|
|
|
|
case "Uint32Array":
|
|
|
|
case "Int32Array":
|
|
|
|
case "Float32Array":
|
|
|
|
case "Float64Array":
|
|
|
|
var joined = ArrayPrototypeJoin.call(value, ",");
|
|
|
|
return objectClass + "([" + joined + "])";
|
2015-11-19 16:11:00 +00:00
|
|
|
case "Object":
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return objectClass + "()";
|
2011-04-15 11:35:36 +00:00
|
|
|
}
|
|
|
|
// [[Class]] is "Object".
|
|
|
|
var name = value.constructor.name;
|
|
|
|
if (name) return name + "()";
|
|
|
|
return "Object()";
|
|
|
|
default:
|
|
|
|
return "-- unknown value --";
|
|
|
|
}
|
2011-03-25 13:24:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-04-15 11:35:36 +00:00
|
|
|
function PrettyPrintArrayElement(value, index, array) {
|
|
|
|
if (value === undefined && !(index in array)) return "";
|
|
|
|
return PrettyPrint(value);
|
2008-08-14 13:41:48 +00:00
|
|
|
}
|
2011-03-25 13:24:20 +00:00
|
|
|
|
2008-08-14 13:41:48 +00:00
|
|
|
|
2017-03-16 18:20:19 +00:00
|
|
|
failWithMessage = function failWithMessage(message) {
|
2016-10-17 09:34:22 +00:00
|
|
|
throw new MjsUnitAssertionError(message);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-04-15 11:35:36 +00:00
|
|
|
function fail(expectedText, found, name_opt) {
|
|
|
|
var message = "Fail" + "ure";
|
2016-10-15 06:33:47 +00:00
|
|
|
if (name_opt) {
|
|
|
|
// Fix this when we ditch the old test runner.
|
|
|
|
message += " (" + name_opt + ")";
|
2011-04-15 11:35:36 +00:00
|
|
|
}
|
2016-10-15 06:33:47 +00:00
|
|
|
|
2016-11-10 13:10:07 +00:00
|
|
|
var foundText = PrettyPrint(found);
|
|
|
|
if (expectedText.length <= 40 && foundText.length <= 40) {
|
|
|
|
message += ": expected <" + expectedText + "> found <" + foundText + ">";
|
|
|
|
} else {
|
|
|
|
message += ":\nexpected:\n" + expectedText + "\nfound:\n" + foundText;
|
|
|
|
}
|
2017-03-16 18:20:19 +00:00
|
|
|
return failWithMessage(message);
|
2011-04-14 09:05:43 +00:00
|
|
|
}
|
2009-04-24 08:13:09 +00:00
|
|
|
|
|
|
|
|
2011-04-15 11:35:36 +00:00
|
|
|
function deepObjectEquals(a, b) {
|
|
|
|
var aProps = Object.keys(a);
|
|
|
|
aProps.sort();
|
|
|
|
var bProps = Object.keys(b);
|
|
|
|
bProps.sort();
|
|
|
|
if (!deepEquals(aProps, bProps)) {
|
2009-01-14 11:32:23 +00:00
|
|
|
return false;
|
2011-04-15 11:35:36 +00:00
|
|
|
}
|
|
|
|
for (var i = 0; i < aProps.length; i++) {
|
|
|
|
if (!deepEquals(a[aProps[i]], b[aProps[i]])) {
|
2009-01-14 11:32:23 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-04-15 11:35:36 +00:00
|
|
|
function deepEquals(a, b) {
|
|
|
|
if (a === b) {
|
|
|
|
// Check for -0.
|
|
|
|
if (a === 0) return (1 / a) === (1 / b);
|
|
|
|
return true;
|
|
|
|
}
|
2015-02-17 12:07:51 +00:00
|
|
|
if (typeof a !== typeof b) return false;
|
|
|
|
if (typeof a === "number") return isNaN(a) && isNaN(b);
|
2011-04-15 11:35:36 +00:00
|
|
|
if (typeof a !== "object" && typeof a !== "function") return false;
|
|
|
|
// Neither a nor b is primitive.
|
|
|
|
var objectClass = classOf(a);
|
|
|
|
if (objectClass !== classOf(b)) return false;
|
|
|
|
if (objectClass === "RegExp") {
|
|
|
|
// For RegExp, just compare pattern and flags using its toString.
|
2015-11-19 16:11:00 +00:00
|
|
|
return RegExpPrototypeToString.call(a) ===
|
|
|
|
RegExpPrototypeToString.call(b);
|
2011-04-15 11:35:36 +00:00
|
|
|
}
|
|
|
|
// Functions are only identical to themselves.
|
|
|
|
if (objectClass === "Function") return false;
|
|
|
|
if (objectClass === "Array") {
|
|
|
|
var elementCount = 0;
|
2015-02-17 12:07:51 +00:00
|
|
|
if (a.length !== b.length) {
|
2011-04-15 11:35:36 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
for (var i = 0; i < a.length; i++) {
|
|
|
|
if (!deepEquals(a[i], b[i])) return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2015-02-17 12:07:51 +00:00
|
|
|
if (objectClass === "String" || objectClass === "Number" ||
|
|
|
|
objectClass === "Boolean" || objectClass === "Date") {
|
2015-11-19 16:11:00 +00:00
|
|
|
if (ValueOf(a) !== ValueOf(b)) return false;
|
2011-04-15 11:35:36 +00:00
|
|
|
}
|
|
|
|
return deepObjectEquals(a, b);
|
2011-02-18 10:53:38 +00:00
|
|
|
}
|
|
|
|
|
2011-04-15 11:35:36 +00:00
|
|
|
assertSame = function assertSame(expected, found, name_opt) {
|
2012-03-08 12:49:24 +00:00
|
|
|
// TODO(mstarzinger): We should think about using Harmony's egal operator
|
|
|
|
// or the function equivalent Object.is() here.
|
2011-04-15 11:35:36 +00:00
|
|
|
if (found === expected) {
|
2015-02-17 12:07:51 +00:00
|
|
|
if (expected !== 0 || (1 / expected) === (1 / found)) return;
|
2011-10-28 09:09:51 +00:00
|
|
|
} else if ((expected !== expected) && (found !== found)) {
|
2011-04-15 11:35:36 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
fail(PrettyPrint(expected), found, name_opt);
|
|
|
|
};
|
2008-08-14 13:41:48 +00:00
|
|
|
|
|
|
|
|
2011-04-15 11:35:36 +00:00
|
|
|
assertEquals = function assertEquals(expected, found, name_opt) {
|
|
|
|
if (!deepEquals(found, expected)) {
|
|
|
|
fail(PrettyPrint(expected), found, name_opt);
|
2008-08-14 13:41:48 +00:00
|
|
|
}
|
2011-04-15 11:35:36 +00:00
|
|
|
};
|
2008-08-14 13:41:48 +00:00
|
|
|
|
|
|
|
|
2013-11-20 15:04:37 +00:00
|
|
|
assertEqualsDelta =
|
|
|
|
function assertEqualsDelta(expected, found, delta, name_opt) {
|
2017-03-20 16:14:23 +00:00
|
|
|
if (Math.abs(expected - found) > delta) {
|
|
|
|
fail(PrettyPrint(expected) + " +- " + PrettyPrint(delta), found, name_opt);
|
|
|
|
}
|
2013-11-20 15:04:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-04-15 11:35:36 +00:00
|
|
|
assertArrayEquals = function assertArrayEquals(expected, found, name_opt) {
|
|
|
|
var start = "";
|
|
|
|
if (name_opt) {
|
|
|
|
start = name_opt + " - ";
|
|
|
|
}
|
|
|
|
assertEquals(expected.length, found.length, start + "array length");
|
2015-02-17 12:07:51 +00:00
|
|
|
if (expected.length === found.length) {
|
2011-04-15 11:35:36 +00:00
|
|
|
for (var i = 0; i < expected.length; ++i) {
|
|
|
|
assertEquals(expected[i], found[i],
|
|
|
|
start + "array element at index " + i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2008-08-14 13:41:48 +00:00
|
|
|
|
|
|
|
|
2011-04-15 11:35:36 +00:00
|
|
|
assertPropertiesEqual = function assertPropertiesEqual(expected, found,
|
|
|
|
name_opt) {
|
|
|
|
// Check properties only.
|
|
|
|
if (!deepObjectEquals(expected, found)) {
|
|
|
|
fail(expected, found, name_opt);
|
|
|
|
}
|
|
|
|
};
|
2008-08-14 13:41:48 +00:00
|
|
|
|
|
|
|
|
2011-04-15 11:35:36 +00:00
|
|
|
assertToStringEquals = function assertToStringEquals(expected, found,
|
|
|
|
name_opt) {
|
2015-02-17 12:07:51 +00:00
|
|
|
if (expected !== String(found)) {
|
2011-04-15 11:35:36 +00:00
|
|
|
fail(expected, found, name_opt);
|
|
|
|
}
|
|
|
|
};
|
2008-08-14 13:41:48 +00:00
|
|
|
|
|
|
|
|
2011-04-15 11:35:36 +00:00
|
|
|
assertTrue = function assertTrue(value, name_opt) {
|
|
|
|
assertEquals(true, value, name_opt);
|
|
|
|
};
|
2009-04-16 16:05:17 +00:00
|
|
|
|
|
|
|
|
2011-04-15 11:35:36 +00:00
|
|
|
assertFalse = function assertFalse(value, name_opt) {
|
|
|
|
assertEquals(false, value, name_opt);
|
|
|
|
};
|
2009-04-16 16:05:17 +00:00
|
|
|
|
|
|
|
|
2011-04-15 11:35:36 +00:00
|
|
|
assertNull = function assertNull(value, name_opt) {
|
|
|
|
if (value !== null) {
|
|
|
|
fail("null", value, name_opt);
|
2009-04-24 08:13:09 +00:00
|
|
|
}
|
2011-04-15 11:35:36 +00:00
|
|
|
};
|
2008-08-14 13:41:48 +00:00
|
|
|
|
|
|
|
|
2011-04-15 11:35:36 +00:00
|
|
|
assertNotNull = function assertNotNull(value, name_opt) {
|
|
|
|
if (value === null) {
|
|
|
|
fail("not null", value, name_opt);
|
|
|
|
}
|
|
|
|
};
|
2008-08-14 13:41:48 +00:00
|
|
|
|
|
|
|
|
2011-04-15 11:35:36 +00:00
|
|
|
assertThrows = function assertThrows(code, type_opt, cause_opt) {
|
|
|
|
try {
|
2015-02-17 12:07:51 +00:00
|
|
|
if (typeof code === 'function') {
|
2011-04-15 11:35:36 +00:00
|
|
|
code();
|
|
|
|
} else {
|
|
|
|
eval(code);
|
|
|
|
}
|
|
|
|
} catch (e) {
|
2015-02-17 12:07:51 +00:00
|
|
|
if (typeof type_opt === 'function') {
|
2011-04-15 11:35:36 +00:00
|
|
|
assertInstanceof(e, type_opt);
|
2016-01-07 14:48:57 +00:00
|
|
|
} else if (type_opt !== void 0) {
|
2017-03-22 13:32:59 +00:00
|
|
|
failWithMessage(
|
|
|
|
'invalid use of assertThrows, maybe you want assertThrowsEquals');
|
2011-04-15 11:35:36 +00:00
|
|
|
}
|
|
|
|
if (arguments.length >= 3) {
|
2017-06-26 11:39:04 +00:00
|
|
|
if (cause_opt instanceof RegExp) {
|
|
|
|
assertMatches(cause_opt, e.message, "Error message");
|
|
|
|
} else {
|
|
|
|
assertEquals(cause_opt, e.message, "Error message");
|
|
|
|
}
|
2011-04-15 11:35:36 +00:00
|
|
|
}
|
|
|
|
// Success.
|
|
|
|
return;
|
2009-08-17 09:31:58 +00:00
|
|
|
}
|
2017-03-22 13:32:59 +00:00
|
|
|
failWithMessage('Did not throw exception');
|
2011-04-15 11:35:36 +00:00
|
|
|
};
|
2008-08-14 13:41:48 +00:00
|
|
|
|
|
|
|
|
2016-01-07 14:48:57 +00:00
|
|
|
assertThrowsEquals = function assertThrowsEquals(fun, val) {
|
|
|
|
try {
|
|
|
|
fun();
|
|
|
|
} catch(e) {
|
|
|
|
assertEquals(val, e);
|
|
|
|
return;
|
|
|
|
}
|
2016-10-17 09:34:22 +00:00
|
|
|
failWithMessage("Did not throw exception");
|
2016-01-07 14:48:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-04-15 11:35:36 +00:00
|
|
|
assertInstanceof = function assertInstanceof(obj, type) {
|
|
|
|
if (!(obj instanceof type)) {
|
|
|
|
var actualTypeName = null;
|
2012-06-28 16:29:53 +00:00
|
|
|
var actualConstructor = Object.getPrototypeOf(obj).constructor;
|
2015-02-17 12:07:51 +00:00
|
|
|
if (typeof actualConstructor === "function") {
|
2011-04-15 11:35:36 +00:00
|
|
|
actualTypeName = actualConstructor.name || String(actualConstructor);
|
|
|
|
}
|
2016-10-20 17:55:20 +00:00
|
|
|
failWithMessage("Object <" + PrettyPrint(obj) + "> is not an instance of <" +
|
2011-04-15 11:35:36 +00:00
|
|
|
(type.name || type) + ">" +
|
2016-10-17 09:34:22 +00:00
|
|
|
(actualTypeName ? " but of <" + actualTypeName + ">" : ""));
|
2011-04-15 11:35:36 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
assertDoesNotThrow = function assertDoesNotThrow(code, name_opt) {
|
|
|
|
try {
|
2015-02-17 12:07:51 +00:00
|
|
|
if (typeof code === 'function') {
|
2011-04-15 11:35:36 +00:00
|
|
|
code();
|
|
|
|
} else {
|
|
|
|
eval(code);
|
|
|
|
}
|
|
|
|
} catch (e) {
|
2016-10-17 09:34:22 +00:00
|
|
|
failWithMessage("threw an exception: " + (e.message || e));
|
2011-04-15 11:35:36 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
assertUnreachable = function assertUnreachable(name_opt) {
|
|
|
|
// Fix this when we ditch the old test runner.
|
|
|
|
var message = "Fail" + "ure: unreachable";
|
|
|
|
if (name_opt) {
|
|
|
|
message += " - " + name_opt;
|
|
|
|
}
|
2016-10-17 09:34:22 +00:00
|
|
|
failWithMessage(message);
|
2011-04-15 11:35:36 +00:00
|
|
|
};
|
|
|
|
|
2016-04-21 08:35:21 +00:00
|
|
|
assertContains = function(sub, value, name_opt) {
|
|
|
|
if (value == null ? (sub != null) : value.indexOf(sub) == -1) {
|
|
|
|
fail("contains '" + String(sub) + "'", value, name_opt);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-10-12 09:17:12 +00:00
|
|
|
assertMatches = function(regexp, str, name_opt) {
|
|
|
|
if (!(regexp instanceof RegExp)) {
|
|
|
|
regexp = new RegExp(regexp);
|
|
|
|
}
|
|
|
|
if (!str.match(regexp)) {
|
|
|
|
fail("should match '" + regexp + "'", str, name_opt);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-03-30 14:52:13 +00:00
|
|
|
assertPromiseResult = function(promise, success, fail) {
|
|
|
|
// Use --allow-natives-syntax to use this function. Note that this function
|
|
|
|
// overwrites {failWithMessage} permanently with %AbortJS.
|
|
|
|
|
|
|
|
// We have to patch mjsunit because normal assertion failures just throw
|
|
|
|
// exceptions which are swallowed in a then clause.
|
|
|
|
// We use eval here to avoid parsing issues with the natives syntax.
|
2017-05-10 16:18:55 +00:00
|
|
|
if (!success) success = () => {};
|
|
|
|
|
2017-03-30 14:52:13 +00:00
|
|
|
failWithMessage = (msg) => eval("%AbortJS(msg)");
|
2017-05-10 16:18:55 +00:00
|
|
|
if (!fail) {
|
2017-03-30 14:52:13 +00:00
|
|
|
fail = result => failWithMessage("assertPromiseResult failed: " + result);
|
2017-05-10 16:18:55 +00:00
|
|
|
}
|
2017-03-30 14:52:13 +00:00
|
|
|
|
2017-05-10 16:18:55 +00:00
|
|
|
var test_promise =
|
|
|
|
promise.then(
|
|
|
|
result => {
|
|
|
|
try {
|
|
|
|
success(result);
|
|
|
|
} catch (e) {
|
|
|
|
failWithMessage(e);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
result => {
|
|
|
|
fail(result);
|
|
|
|
}
|
|
|
|
)
|
|
|
|
.then((x)=> {
|
|
|
|
if (--promiseTestCount == 0) testRunner.notifyDone();
|
|
|
|
});
|
|
|
|
|
|
|
|
if (!promiseTestChain) promiseTestChain = Promise.resolve();
|
|
|
|
// waitUntilDone is idempotent.
|
|
|
|
testRunner.waitUntilDone();
|
|
|
|
++promiseTestCount;
|
|
|
|
return promiseTestChain.then(test_promise);
|
2017-03-30 14:52:13 +00:00
|
|
|
};
|
|
|
|
|
2014-05-27 12:52:15 +00:00
|
|
|
var OptimizationStatusImpl = undefined;
|
|
|
|
|
2014-05-27 11:53:12 +00:00
|
|
|
var OptimizationStatus = function(fun, sync_opt) {
|
2014-05-27 12:52:15 +00:00
|
|
|
if (OptimizationStatusImpl === undefined) {
|
|
|
|
try {
|
|
|
|
OptimizationStatusImpl = new Function(
|
|
|
|
"fun", "sync", "return %GetOptimizationStatus(fun, sync);");
|
|
|
|
} catch (e) {
|
|
|
|
throw new Error("natives syntax not allowed");
|
|
|
|
}
|
2013-07-22 09:16:33 +00:00
|
|
|
}
|
2014-06-25 08:01:13 +00:00
|
|
|
return OptimizationStatusImpl(fun, sync_opt);
|
2013-07-22 09:16:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
assertUnoptimized = function assertUnoptimized(fun, sync_opt, name_opt) {
|
|
|
|
if (sync_opt === undefined) sync_opt = "";
|
2017-01-27 10:13:53 +00:00
|
|
|
var opt_status = OptimizationStatus(fun, sync_opt);
|
2017-06-08 16:23:27 +00:00
|
|
|
// Tests that use assertUnoptimized() do not make sense if --always-opt
|
2017-01-27 10:13:53 +00:00
|
|
|
// option is provided. Such tests must add --no-always-opt to flags comment.
|
|
|
|
assertFalse((opt_status & V8OptimizationStatus.kAlwaysOptimize) !== 0,
|
|
|
|
"test does not make sense with --always-opt");
|
|
|
|
assertTrue((opt_status & V8OptimizationStatus.kIsFunction) !== 0, name_opt);
|
2017-01-27 11:58:47 +00:00
|
|
|
if ((opt_status & V8OptimizationStatus.kMaybeDeopted) !== 0) {
|
|
|
|
// When --deopt-every-n-times flag is specified it's no longer guaranteed
|
|
|
|
// that particular function is still deoptimized, so keep running the test
|
|
|
|
// to stress test the deoptimizer.
|
|
|
|
return;
|
|
|
|
}
|
2017-01-27 10:13:53 +00:00
|
|
|
assertFalse((opt_status & V8OptimizationStatus.kOptimized) !== 0, name_opt);
|
2013-07-22 09:16:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
assertOptimized = function assertOptimized(fun, sync_opt, name_opt) {
|
|
|
|
if (sync_opt === undefined) sync_opt = "";
|
2017-01-27 10:13:53 +00:00
|
|
|
var opt_status = OptimizationStatus(fun, sync_opt);
|
2017-04-28 13:33:43 +00:00
|
|
|
// Tests that use assertOptimized() do not make sense if --no-opt
|
|
|
|
// option is provided. Such tests must add --opt to flags comment.
|
2017-01-27 10:13:53 +00:00
|
|
|
assertFalse((opt_status & V8OptimizationStatus.kNeverOptimize) !== 0,
|
2017-04-28 13:33:43 +00:00
|
|
|
"test does not make sense with --no-opt");
|
2017-01-27 10:13:53 +00:00
|
|
|
assertTrue((opt_status & V8OptimizationStatus.kIsFunction) !== 0, name_opt);
|
|
|
|
if ((opt_status & V8OptimizationStatus.kMaybeDeopted) !== 0) {
|
|
|
|
// When --deopt-every-n-times flag is specified it's no longer guaranteed
|
|
|
|
// that particular function is still optimized, so keep running the test
|
|
|
|
// to stress test the deoptimizer.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
assertTrue((opt_status & V8OptimizationStatus.kOptimized) !== 0, name_opt);
|
|
|
|
}
|
|
|
|
|
|
|
|
isNeverOptimize = function isNeverOptimize() {
|
|
|
|
var opt_status = OptimizationStatus(undefined, "");
|
|
|
|
return (opt_status & V8OptimizationStatus.kNeverOptimize) !== 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
isAlwaysOptimize = function isAlwaysOptimize() {
|
|
|
|
var opt_status = OptimizationStatus(undefined, "");
|
|
|
|
return (opt_status & V8OptimizationStatus.kAlwaysOptimize) !== 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
isInterpreted = function isInterpreted(fun) {
|
|
|
|
var opt_status = OptimizationStatus(fun, "");
|
|
|
|
assertTrue((opt_status & V8OptimizationStatus.kIsFunction) !== 0,
|
|
|
|
"not a function");
|
|
|
|
return (opt_status & V8OptimizationStatus.kOptimized) === 0 &&
|
|
|
|
(opt_status & V8OptimizationStatus.kInterpreted) !== 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
isOptimized = function isOptimized(fun) {
|
|
|
|
var opt_status = OptimizationStatus(fun, "");
|
|
|
|
assertTrue((opt_status & V8OptimizationStatus.kIsFunction) !== 0,
|
|
|
|
"not a function");
|
|
|
|
return (opt_status & V8OptimizationStatus.kOptimized) !== 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
isCrankshafted = function isCrankshafted(fun) {
|
|
|
|
var opt_status = OptimizationStatus(fun, "");
|
|
|
|
assertTrue((opt_status & V8OptimizationStatus.kIsFunction) !== 0,
|
|
|
|
"not a function");
|
|
|
|
return (opt_status & V8OptimizationStatus.kOptimized) !== 0 &&
|
|
|
|
(opt_status & V8OptimizationStatus.kTurboFanned) === 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
isTurboFanned = function isTurboFanned(fun) {
|
|
|
|
var opt_status = OptimizationStatus(fun, "");
|
|
|
|
assertTrue((opt_status & V8OptimizationStatus.kIsFunction) !== 0,
|
|
|
|
"not a function");
|
|
|
|
return (opt_status & V8OptimizationStatus.kOptimized) !== 0 &&
|
|
|
|
(opt_status & V8OptimizationStatus.kTurboFanned) !== 0;
|
2013-07-22 09:16:33 +00:00
|
|
|
}
|
|
|
|
|
2011-04-15 11:35:36 +00:00
|
|
|
})();
|