step-into-next-script.js 1.42 KB
Newer Older
1 2 3 4
// Copyright 2017 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('Debugger breaks in next script after stepOut from previous one.');
6

7
contextGroup.addScript(`
8 9 10 11 12 13 14 15
function test() {
  setTimeout('var a = 1;//# sourceURL=timeout1.js', 0);
  setTimeout(foo, 0);
  setTimeout('var a = 3;//# sourceURL=timeout3.js', 0);
  debugger;
}
//# sourceURL=foo.js`, 7, 26);

16
contextGroup.addScript(`
17 18 19 20 21
function foo() {
  return 42;
}
//# sourceURL=timeout2.js`)

22
session.setupScriptMap();
23 24
var stepAction;
Protocol.Debugger.onPaused(message => {
25
  session.logCallFrames(message.params.callFrames);
26 27 28 29 30 31 32 33
  InspectorTest.log('');
  Protocol.Debugger[stepAction]();
});
Protocol.Debugger.enable()
InspectorTest.runTestSuite([
  function testStepOut(next) {
    stepAction = 'stepOut';
    Protocol.Runtime.evaluate({ expression: 'test()' })
34
      .then(() => InspectorTest.waitForPendingTasks())
35 36 37 38 39 40
      .then(next);
  },

  function testStepOver(next) {
    stepAction = 'stepOver';
    Protocol.Runtime.evaluate({ expression: 'test()' })
41
      .then(() => InspectorTest.waitForPendingTasks())
42 43 44 45 46 47
      .then(next);
  },

  function testStepInto(next) {
    stepAction = 'stepInto';
    Protocol.Runtime.evaluate({ expression: 'test()' })
48
      .then(() => InspectorTest.waitForPendingTasks())
49 50 51
      .then(next);
  }
]);