2016-10-02 21:22:49 +00:00
|
|
|
// 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.
|
|
|
|
|
2017-05-19 00:35:45 +00:00
|
|
|
let {session, contextGroup, Protocol} = InspectorTest.start("Tests that Runtime.compileScript and Runtime.runScript work with awaitPromise flag.");
|
2016-10-02 21:22:49 +00:00
|
|
|
|
|
|
|
InspectorTest.runTestSuite([
|
|
|
|
function testRunAndCompileWithoutAgentEnable(next)
|
|
|
|
{
|
2016-10-03 23:32:52 +00:00
|
|
|
Protocol.Runtime.compileScript({ expression: "", sourceURL: "", persistScript: true })
|
|
|
|
.then((result) => InspectorTest.logMessage(result))
|
|
|
|
.then(() => Protocol.Runtime.runScript({ scriptId: "1" }))
|
|
|
|
.then((result) => InspectorTest.logMessage(result))
|
2016-10-02 21:22:49 +00:00
|
|
|
.then(() => next());
|
|
|
|
},
|
|
|
|
|
|
|
|
function testSyntaxErrorInScript(next)
|
|
|
|
{
|
2016-10-03 23:32:52 +00:00
|
|
|
Protocol.Runtime.enable()
|
|
|
|
.then(() => Protocol.Runtime.compileScript({ expression: "\n }", sourceURL: "boo.js", persistScript: true }))
|
|
|
|
.then((result) => InspectorTest.logMessage(result))
|
|
|
|
.then(() => Protocol.Runtime.disable())
|
2016-10-02 21:22:49 +00:00
|
|
|
.then(() => next());
|
|
|
|
},
|
|
|
|
|
|
|
|
function testSyntaxErrorInEvalInScript(next)
|
|
|
|
{
|
2016-10-03 23:32:52 +00:00
|
|
|
Protocol.Runtime.enable()
|
|
|
|
.then(() => Protocol.Runtime.compileScript({ expression: "{\n eval(\"\\\n}\")\n}", sourceURL: "boo.js", persistScript: true }))
|
|
|
|
.then((result) => Protocol.Runtime.runScript({ scriptId: result.result.scriptId }))
|
|
|
|
.then((result) => InspectorTest.logMessage(result))
|
|
|
|
.then(() => Protocol.Runtime.disable())
|
2016-10-02 21:22:49 +00:00
|
|
|
.then(() => next());
|
|
|
|
},
|
|
|
|
|
|
|
|
function testRunNotCompiledScript(next)
|
|
|
|
{
|
2016-10-03 23:32:52 +00:00
|
|
|
Protocol.Runtime.enable()
|
|
|
|
.then((result) => Protocol.Runtime.runScript({ scriptId: "1" }))
|
|
|
|
.then((result) => InspectorTest.logMessage(result))
|
|
|
|
.then(() => Protocol.Runtime.disable())
|
2016-10-02 21:22:49 +00:00
|
|
|
.then(() => next());
|
|
|
|
},
|
|
|
|
|
|
|
|
function testRunCompiledScriptAfterAgentWasReenabled(next)
|
|
|
|
{
|
|
|
|
var scriptId;
|
2016-10-03 23:32:52 +00:00
|
|
|
Protocol.Runtime.enable()
|
|
|
|
.then(() => Protocol.Runtime.compileScript({ expression: "{\n eval(\"\\\n}\")\n}", sourceURL: "boo.js", persistScript: true }))
|
2016-10-02 21:22:49 +00:00
|
|
|
.then((result) => scriptId = result.result.scriptId)
|
2016-10-03 23:32:52 +00:00
|
|
|
.then(() => Protocol.Runtime.disable())
|
|
|
|
.then((result) => Protocol.Runtime.runScript({ scriptId: scriptId }))
|
|
|
|
.then((result) => InspectorTest.logMessage(result))
|
|
|
|
.then(() => Protocol.Runtime.enable())
|
|
|
|
.then((result) => Protocol.Runtime.runScript({ scriptId: scriptId }))
|
|
|
|
.then((result) => InspectorTest.logMessage(result))
|
|
|
|
.then(() => Protocol.Runtime.disable())
|
2016-10-02 21:22:49 +00:00
|
|
|
.then(() => next());
|
|
|
|
},
|
|
|
|
|
|
|
|
function testRunScriptWithPreview(next)
|
|
|
|
{
|
2016-10-03 23:32:52 +00:00
|
|
|
Protocol.Runtime.enable()
|
|
|
|
.then(() => Protocol.Runtime.compileScript({ expression: "({a:1})", sourceURL: "boo.js", persistScript: true }))
|
|
|
|
.then((result) => Protocol.Runtime.runScript({ scriptId: result.result.scriptId, generatePreview: true }))
|
|
|
|
.then((result) => InspectorTest.logMessage(result))
|
|
|
|
.then(() => Protocol.Runtime.disable())
|
2016-10-02 21:22:49 +00:00
|
|
|
.then(() => next());
|
|
|
|
},
|
|
|
|
|
|
|
|
function testRunScriptReturnByValue(next)
|
|
|
|
{
|
2016-10-03 23:32:52 +00:00
|
|
|
Protocol.Runtime.enable()
|
|
|
|
.then(() => Protocol.Runtime.compileScript({ expression: "({a:1})", sourceURL: "boo.js", persistScript: true }))
|
|
|
|
.then((result) => Protocol.Runtime.runScript({ scriptId: result.result.scriptId, returnByValue: true }))
|
|
|
|
.then((result) => InspectorTest.logMessage(result))
|
|
|
|
.then(() => Protocol.Runtime.disable())
|
2016-10-02 21:22:49 +00:00
|
|
|
.then(() => next());
|
|
|
|
},
|
|
|
|
|
|
|
|
function testAwaitNotPromise(next)
|
|
|
|
{
|
2016-10-03 23:32:52 +00:00
|
|
|
Protocol.Runtime.enable()
|
|
|
|
.then(() => Protocol.Runtime.compileScript({ expression: "({a:1})", sourceURL: "boo.js", persistScript: true }))
|
2017-08-14 22:21:45 +00:00
|
|
|
.then((result) => Protocol.Runtime.runScript({ scriptId: result.result.scriptId, awaitPromise: true, returnByValue: true }))
|
2016-10-03 23:32:52 +00:00
|
|
|
.then((result) => InspectorTest.logMessage(result))
|
|
|
|
.then(() => Protocol.Runtime.disable())
|
2016-10-02 21:22:49 +00:00
|
|
|
.then(() => next());
|
|
|
|
},
|
|
|
|
|
|
|
|
function testAwaitResolvedPromise(next)
|
|
|
|
{
|
2016-10-03 23:32:52 +00:00
|
|
|
Protocol.Runtime.enable()
|
|
|
|
.then(() => Protocol.Runtime.compileScript({ expression: "Promise.resolve({a:1})", sourceURL: "boo.js", persistScript: true }))
|
|
|
|
.then((result) => Protocol.Runtime.runScript({ scriptId: result.result.scriptId, awaitPromise: true, returnByValue: true }))
|
|
|
|
.then((result) => InspectorTest.logMessage(result))
|
|
|
|
.then(() => Protocol.Runtime.disable())
|
2016-10-02 21:22:49 +00:00
|
|
|
.then(() => next());
|
|
|
|
},
|
|
|
|
|
|
|
|
function testAwaitRejectedPromise(next)
|
|
|
|
{
|
2016-10-03 23:32:52 +00:00
|
|
|
Protocol.Runtime.enable()
|
|
|
|
.then(() => Protocol.Runtime.compileScript({ expression: "Promise.reject({a:1})", sourceURL: "boo.js", persistScript: true }))
|
|
|
|
.then((result) => Protocol.Runtime.runScript({ scriptId: result.result.scriptId, awaitPromise: true, returnByValue: true }))
|
|
|
|
.then((result) => InspectorTest.logMessage(result))
|
|
|
|
.then(() => Protocol.Runtime.disable())
|
2016-10-02 21:22:49 +00:00
|
|
|
.then(() => next());
|
|
|
|
}
|
|
|
|
]);
|