2015-05-20 07:38:19 +00:00
|
|
|
// Copyright 2015 the V8 project authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2015-09-16 21:00:45 +00:00
|
|
|
(function (global, binding, v8) {
|
2015-05-20 07:38:19 +00:00
|
|
|
'use strict';
|
2015-09-16 21:00:45 +00:00
|
|
|
binding.testExtraShouldReturnFive = function() {
|
2015-05-20 07:38:19 +00:00
|
|
|
return 5;
|
|
|
|
};
|
2015-06-11 12:19:40 +00:00
|
|
|
|
2015-08-06 23:52:47 +00:00
|
|
|
binding.testExtraShouldCallToRuntime = function() {
|
|
|
|
return binding.runtime(3);
|
2015-06-11 12:19:40 +00:00
|
|
|
};
|
2015-09-16 21:00:45 +00:00
|
|
|
|
2016-02-05 12:33:20 +00:00
|
|
|
binding.testFunctionToString = function() {
|
|
|
|
function foo() { return 1; }
|
|
|
|
return foo.toString();
|
|
|
|
};
|
|
|
|
|
|
|
|
binding.testStackTrace = function(f) {
|
|
|
|
return f();
|
|
|
|
}
|
|
|
|
|
2015-09-16 21:00:45 +00:00
|
|
|
// Exercise all of the extras utils:
|
|
|
|
// - v8.createPrivateSymbol
|
|
|
|
// - v8.simpleBind, v8.uncurryThis
|
|
|
|
// - v8.InternalPackedArray
|
|
|
|
// - v8.createPromise, v8.resolvePromise, v8.rejectPromise
|
|
|
|
|
|
|
|
const Object = global.Object;
|
|
|
|
const hasOwn = v8.uncurryThis(Object.prototype.hasOwnProperty);
|
|
|
|
|
|
|
|
const Function = global.Function;
|
|
|
|
const call = v8.uncurryThis(Function.prototype.call);
|
|
|
|
const apply = v8.uncurryThis(Function.prototype.apply);
|
|
|
|
|
|
|
|
const Promise = global.Promise;
|
|
|
|
const Promise_resolve = v8.simpleBind(Promise.resolve, Promise);
|
|
|
|
|
2015-10-14 17:40:43 +00:00
|
|
|
const arrayToTest = new v8.InternalPackedArray();
|
|
|
|
arrayToTest.push(1);
|
|
|
|
arrayToTest.push(2);
|
|
|
|
arrayToTest.pop();
|
|
|
|
arrayToTest.unshift("a", "b", "c");
|
|
|
|
arrayToTest.shift();
|
|
|
|
arrayToTest.splice(0, 1);
|
|
|
|
const slicedArray = arrayToTest.slice();
|
|
|
|
const arraysOK = arrayToTest.length === 2 && arrayToTest[0] === "c" &&
|
|
|
|
arrayToTest[1] === 1 && slicedArray.length === 2 &&
|
|
|
|
slicedArray[0] === "c" && slicedArray[1] === 1;
|
|
|
|
|
2015-09-16 21:00:45 +00:00
|
|
|
binding.testExtraCanUseUtils = function() {
|
|
|
|
const fulfilledPromise = v8.createPromise();
|
|
|
|
v8.resolvePromise(
|
|
|
|
fulfilledPromise,
|
|
|
|
hasOwn({ test: 'test' }, 'test') ? 1 : -1
|
|
|
|
);
|
|
|
|
|
2015-10-14 17:40:43 +00:00
|
|
|
const fulfilledPromise2 = Promise_resolve(call(function (arg1, arg2) {
|
|
|
|
return (this.prop === arg1 && arg1 === 'value' && arg2) ? 2 : -1;
|
|
|
|
}, { prop: 'value' }, 'value', arraysOK));
|
2015-09-16 21:00:45 +00:00
|
|
|
|
|
|
|
const rejectedPromise = v8.createPromise();
|
|
|
|
v8.rejectPromise(rejectedPromise, apply(function (arg1, arg2) {
|
|
|
|
return (arg1 === arg2 && arg2 === 'x') ? 3 : -1;
|
|
|
|
}, null, new v8.InternalPackedArray('x', 'x')));
|
|
|
|
|
|
|
|
return {
|
|
|
|
privateSymbol: v8.createPrivateSymbol('sym'),
|
|
|
|
fulfilledPromise, // should be fulfilled with 1
|
|
|
|
fulfilledPromise2, // should be fulfilled with 2
|
|
|
|
rejectedPromise // should be rejected with 3
|
|
|
|
};
|
|
|
|
};
|
2015-05-20 07:38:19 +00:00
|
|
|
})
|