6ceee53698
This one allows us to support custom promises implementation. With awaitPromise flag Runtime.evaluate awaits Promise.resolve(<expression result>). This also allows to await for any non-Promise value, similar to await expression, which is more convenient for most protocol users. R=dgozman@chromium.org Bug: chromium:755104 Cq-Include-Trybots: master.tryserver.blink:linux_trusty_blink_rel Change-Id: Iee798b33b6fb7de7d393372e164c0481d1bbf7eb Reviewed-on: https://chromium-review.googlesource.com/614308 Commit-Queue: Aleksey Kozyatinskiy <kozyatinskiy@chromium.org> Reviewed-by: Dmitry Gozman <dgozman@chromium.org> Cr-Commit-Position: refs/heads/master@{#47354}
111 lines
4.7 KiB
JavaScript
111 lines
4.7 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.compileScript and Runtime.runScript work with awaitPromise flag.");
|
|
|
|
InspectorTest.runTestSuite([
|
|
function testRunAndCompileWithoutAgentEnable(next)
|
|
{
|
|
Protocol.Runtime.compileScript({ expression: "", sourceURL: "", persistScript: true })
|
|
.then((result) => InspectorTest.logMessage(result))
|
|
.then(() => Protocol.Runtime.runScript({ scriptId: "1" }))
|
|
.then((result) => InspectorTest.logMessage(result))
|
|
.then(() => next());
|
|
},
|
|
|
|
function testSyntaxErrorInScript(next)
|
|
{
|
|
Protocol.Runtime.enable()
|
|
.then(() => Protocol.Runtime.compileScript({ expression: "\n }", sourceURL: "boo.js", persistScript: true }))
|
|
.then((result) => InspectorTest.logMessage(result))
|
|
.then(() => Protocol.Runtime.disable())
|
|
.then(() => next());
|
|
},
|
|
|
|
function testSyntaxErrorInEvalInScript(next)
|
|
{
|
|
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())
|
|
.then(() => next());
|
|
},
|
|
|
|
function testRunNotCompiledScript(next)
|
|
{
|
|
Protocol.Runtime.enable()
|
|
.then((result) => Protocol.Runtime.runScript({ scriptId: "1" }))
|
|
.then((result) => InspectorTest.logMessage(result))
|
|
.then(() => Protocol.Runtime.disable())
|
|
.then(() => next());
|
|
},
|
|
|
|
function testRunCompiledScriptAfterAgentWasReenabled(next)
|
|
{
|
|
var scriptId;
|
|
Protocol.Runtime.enable()
|
|
.then(() => Protocol.Runtime.compileScript({ expression: "{\n eval(\"\\\n}\")\n}", sourceURL: "boo.js", persistScript: true }))
|
|
.then((result) => scriptId = result.result.scriptId)
|
|
.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())
|
|
.then(() => next());
|
|
},
|
|
|
|
function testRunScriptWithPreview(next)
|
|
{
|
|
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())
|
|
.then(() => next());
|
|
},
|
|
|
|
function testRunScriptReturnByValue(next)
|
|
{
|
|
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())
|
|
.then(() => next());
|
|
},
|
|
|
|
function testAwaitNotPromise(next)
|
|
{
|
|
Protocol.Runtime.enable()
|
|
.then(() => Protocol.Runtime.compileScript({ expression: "({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())
|
|
.then(() => next());
|
|
},
|
|
|
|
function testAwaitResolvedPromise(next)
|
|
{
|
|
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())
|
|
.then(() => next());
|
|
},
|
|
|
|
function testAwaitRejectedPromise(next)
|
|
{
|
|
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())
|
|
.then(() => next());
|
|
}
|
|
]);
|