run-script-async.js 4.7 KB
Newer Older
1 2 3 4
// 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.

5
let {session, contextGroup, Protocol} = InspectorTest.start("Tests that Runtime.compileScript and Runtime.runScript work with awaitPromise flag.");
6 7 8 9

InspectorTest.runTestSuite([
  function testRunAndCompileWithoutAgentEnable(next)
  {
10 11 12 13
    Protocol.Runtime.compileScript({ expression: "", sourceURL: "", persistScript: true })
      .then((result) => InspectorTest.logMessage(result))
      .then(() => Protocol.Runtime.runScript({ scriptId: "1" }))
      .then((result) => InspectorTest.logMessage(result))
14 15 16 17 18
      .then(() => next());
  },

  function testSyntaxErrorInScript(next)
  {
19 20 21 22
    Protocol.Runtime.enable()
      .then(() => Protocol.Runtime.compileScript({ expression: "\n }", sourceURL: "boo.js", persistScript: true }))
      .then((result) => InspectorTest.logMessage(result))
      .then(() => Protocol.Runtime.disable())
23 24 25 26 27
      .then(() => next());
  },

  function testSyntaxErrorInEvalInScript(next)
  {
28 29 30 31 32
    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())
33 34 35 36 37
      .then(() => next());
  },

  function testRunNotCompiledScript(next)
  {
38 39 40 41
    Protocol.Runtime.enable()
      .then((result) => Protocol.Runtime.runScript({ scriptId: "1" }))
      .then((result) => InspectorTest.logMessage(result))
      .then(() => Protocol.Runtime.disable())
42 43 44 45 46 47
      .then(() => next());
  },

  function testRunCompiledScriptAfterAgentWasReenabled(next)
  {
    var scriptId;
48 49
    Protocol.Runtime.enable()
      .then(() => Protocol.Runtime.compileScript({ expression: "{\n eval(\"\\\n}\")\n}", sourceURL: "boo.js", persistScript: true }))
50
      .then((result) => scriptId = result.result.scriptId)
51 52 53 54 55 56 57
      .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())
58 59 60 61 62
      .then(() => next());
  },

  function testRunScriptWithPreview(next)
  {
63 64 65 66 67
    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())
68 69 70 71 72
      .then(() => next());
  },

  function testRunScriptReturnByValue(next)
  {
73 74 75 76 77
    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())
78 79 80 81 82
      .then(() => next());
  },

  function testAwaitNotPromise(next)
  {
83 84
    Protocol.Runtime.enable()
      .then(() => Protocol.Runtime.compileScript({ expression: "({a:1})", sourceURL: "boo.js", persistScript: true }))
85
      .then((result) => Protocol.Runtime.runScript({ scriptId: result.result.scriptId, awaitPromise: true, returnByValue: true }))
86 87
      .then((result) => InspectorTest.logMessage(result))
      .then(() => Protocol.Runtime.disable())
88 89 90 91 92
      .then(() => next());
  },

  function testAwaitResolvedPromise(next)
  {
93 94 95 96 97
    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())
98 99 100 101 102
      .then(() => next());
  },

  function testAwaitRejectedPromise(next)
  {
103 104 105 106 107
    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())
108 109 110
      .then(() => next());
  }
]);