257f9494a6
This patch: - teaches Runtime.callFunctionOn to accept executionContextId instead of objectId. - adds the optional objectGroup parameter to the Runtime.callFunctionOn. R=kozy TBR=pfeldman BUG=chromium:760367 Cq-Include-Trybots: master.tryserver.blink:linux_trusty_blink_rel Change-Id: I024654860f23a9e79fb57865ba5bd472692ea526 Reviewed-on: https://chromium-review.googlesource.com/641921 Commit-Queue: Andrey Lushnikov <lushnikov@chromium.org> Reviewed-by: Pavel Feldman <pfeldman@chromium.org> Reviewed-by: Aleksey Kozyatinskiy <kozyatinskiy@chromium.org> Cr-Commit-Position: refs/heads/master@{#47725}
151 lines
5.0 KiB
JavaScript
151 lines
5.0 KiB
JavaScript
// Copyright 2016 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.
|
|
|
|
let {session, contextGroup, Protocol} = InspectorTest.start('Tests that Runtime.callFunctionOn works with awaitPromise flag.');
|
|
let callFunctionOn = Protocol.Runtime.callFunctionOn.bind(Protocol.Runtime);
|
|
|
|
let remoteObject1;
|
|
let remoteObject2;
|
|
let executionContextId;
|
|
|
|
Protocol.Runtime.enable();
|
|
Protocol.Runtime.onExecutionContextCreated(messageObject => {
|
|
executionContextId = messageObject.params.context.id;
|
|
InspectorTest.runAsyncTestSuite(testSuite);
|
|
});
|
|
|
|
let testSuite = [
|
|
async function prepareTestSuite() {
|
|
let result = await Protocol.Runtime.evaluate({ expression: '({a : 1})' });
|
|
remoteObject1 = result.result.result;
|
|
result = await Protocol.Runtime.evaluate({ expression: '({a : 2})' });
|
|
remoteObject2 = result.result.result;
|
|
|
|
await Protocol.Runtime.evaluate({ expression: 'globalObjectProperty = 42;' });
|
|
},
|
|
|
|
async function testArguments() {
|
|
InspectorTest.logMessage(await callFunctionOn({
|
|
objectId: remoteObject1.objectId,
|
|
functionDeclaration: 'function(arg1, arg2, arg3, arg4) { return \'\' + arg1 + \'|\' + arg2 + \'|\' + arg3 + \'|\' + arg4; }',
|
|
arguments: prepareArguments([undefined, NaN, remoteObject2, remoteObject1]),
|
|
returnByValue: true,
|
|
generatePreview: false,
|
|
awaitPromise: false
|
|
}));
|
|
},
|
|
|
|
async function testComplexArguments() {
|
|
InspectorTest.logMessage(await callFunctionOn({
|
|
objectId: remoteObject1.objectId,
|
|
functionDeclaration: 'function(arg) { return arg.foo; }',
|
|
arguments: prepareArguments([{foo: 'bar'}]),
|
|
returnByValue: true,
|
|
generatePreview: false,
|
|
awaitPromise: false
|
|
}));
|
|
},
|
|
|
|
async function testSyntaxErrorInFunction() {
|
|
InspectorTest.logMessage(await callFunctionOn({
|
|
objectId: remoteObject1.objectId,
|
|
functionDeclaration: '\n }',
|
|
arguments: prepareArguments([]),
|
|
returnByValue: false,
|
|
generatePreview: false,
|
|
awaitPromise: true
|
|
}));
|
|
},
|
|
|
|
async function testExceptionInFunctionExpression() {
|
|
InspectorTest.logMessage(await callFunctionOn({
|
|
objectId: remoteObject1.objectId,
|
|
functionDeclaration: '(function() { throw new Error() })()',
|
|
arguments: prepareArguments([]),
|
|
returnByValue: false,
|
|
generatePreview: false,
|
|
awaitPromise: true
|
|
}));
|
|
},
|
|
|
|
async function testFunctionReturnNotPromise() {
|
|
InspectorTest.logMessage(await callFunctionOn({
|
|
objectId: remoteObject1.objectId,
|
|
functionDeclaration: '(function() { return 239; })',
|
|
arguments: prepareArguments([]),
|
|
returnByValue: true,
|
|
generatePreview: false,
|
|
awaitPromise: true
|
|
}));
|
|
},
|
|
|
|
async function testFunctionReturnResolvedPromiseReturnByValue() {
|
|
InspectorTest.logMessage(await callFunctionOn({
|
|
objectId: remoteObject1.objectId,
|
|
functionDeclaration: '(function(arg) { return Promise.resolve({a : this.a + arg.a}); })',
|
|
arguments: prepareArguments([ remoteObject2 ]),
|
|
returnByValue: true,
|
|
generatePreview: false,
|
|
awaitPromise: true
|
|
}));
|
|
},
|
|
|
|
async function testFunctionReturnResolvedPromiseWithPreview() {
|
|
InspectorTest.logMessage(await callFunctionOn({
|
|
objectId: remoteObject1.objectId,
|
|
functionDeclaration: '(function(arg) { return Promise.resolve({a : this.a + arg.a}); })',
|
|
arguments: prepareArguments([ remoteObject2 ]),
|
|
returnByValue: false,
|
|
generatePreview: true,
|
|
awaitPromise: true
|
|
}));
|
|
},
|
|
|
|
async function testFunctionReturnRejectedPromise() {
|
|
InspectorTest.logMessage(await callFunctionOn({
|
|
objectId: remoteObject1.objectId,
|
|
functionDeclaration: '(function(arg) { return Promise.reject({a : this.a + arg.a}); })',
|
|
arguments: prepareArguments([ remoteObject2 ]),
|
|
returnByValue: true,
|
|
generatePreview: false,
|
|
awaitPromise: true
|
|
}));
|
|
},
|
|
|
|
async function testEvaluateOnExecutionContext() {
|
|
InspectorTest.logMessage(await callFunctionOn({
|
|
executionContextId,
|
|
functionDeclaration: '(function(arg) { return this.globalObjectProperty + arg; })',
|
|
arguments: prepareArguments([ 28 ]),
|
|
returnByValue: true,
|
|
generatePreview: false,
|
|
awaitPromise: false
|
|
}));
|
|
},
|
|
|
|
async function testPassingBothObjectIdAndExecutionContextId() {
|
|
InspectorTest.logMessage(await callFunctionOn({
|
|
executionContextId,
|
|
objectId: remoteObject1.objectId,
|
|
functionDeclaration: '(function() { return 42; })',
|
|
arguments: prepareArguments([]),
|
|
returnByValue: true,
|
|
generatePreview: false,
|
|
awaitPromise: false
|
|
}));
|
|
},
|
|
];
|
|
|
|
function prepareArguments(args) {
|
|
return args.map(arg => {
|
|
if (Object.is(arg, -0))
|
|
return {unserializableValue: '-0'};
|
|
if (Object.is(arg, NaN) || Object.is(arg, Infinity) || Object.is(arg, -Infinity))
|
|
return {unserializableValue: arg + ''};
|
|
if (arg && arg.objectId)
|
|
return {objectId: arg.objectId};
|
|
return {value: arg};
|
|
});
|
|
}
|