step-out-async-await.js 2.64 KB
Newer Older
1 2 3 4 5 6 7 8
// 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.

// TODO(kozyatinskiy): on StepOut and probably StepNext at return position
// of async generator we should break at next instruction of resumed generator
// instead of next scheduled microtask.

9
let {session, contextGroup, Protocol} = InspectorTest.start('StepOut from return position of async function.');
10

11
contextGroup.addScript(`
12 13 14 15 16 17 18 19 20 21 22 23
  async function testFunction() {
    async function foo() {
      var p = Promise.resolve();
      await p;
      p.then(() => 1);
      debugger;
      return p;
    }
    await foo();
  }
`);

24
session.setupScriptMap();
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
Protocol.Debugger.enable();
InspectorTest.runAsyncTestSuite([
  async function testStepInto() {
    Protocol.Runtime.evaluate({expression: 'testFunction()'});
    await logPauseLocation(await Protocol.Debugger.oncePaused());
    Protocol.Debugger.stepInto();
    await logPauseLocation(await Protocol.Debugger.oncePaused());
    Protocol.Debugger.stepInto();
    await logPauseLocation(await Protocol.Debugger.oncePaused());
    Protocol.Debugger.stepInto();
    await logPauseLocation(await Protocol.Debugger.oncePaused());
    Protocol.Debugger.resume();
  },

  async function testStepOver() {
    Protocol.Runtime.evaluate({expression: 'testFunction()'});
    await logPauseLocation(await Protocol.Debugger.oncePaused());
    Protocol.Debugger.stepInto();
    await logPauseLocation(await Protocol.Debugger.oncePaused());
    Protocol.Debugger.stepInto();
    await logPauseLocation(await Protocol.Debugger.oncePaused());
    Protocol.Debugger.stepOver();
    await logPauseLocation(await Protocol.Debugger.oncePaused());
    Protocol.Debugger.stepOver();
    await logPauseLocation(await Protocol.Debugger.oncePaused());
    Protocol.Debugger.stepOver();
    await logPauseLocation(await Protocol.Debugger.oncePaused());
    Protocol.Debugger.resume();
  },

  async function testStepOut() {
    Protocol.Runtime.evaluate({expression: 'testFunction()'});
    await logPauseLocation(await Protocol.Debugger.oncePaused());
    Protocol.Debugger.stepInto();
    await logPauseLocation(await Protocol.Debugger.oncePaused());
    Protocol.Debugger.stepInto();
    await logPauseLocation(await Protocol.Debugger.oncePaused());
    Protocol.Debugger.stepOut();
    await logPauseLocation(await Protocol.Debugger.oncePaused());
    Protocol.Debugger.stepOut();
    await logPauseLocation(await Protocol.Debugger.oncePaused());
    Protocol.Debugger.resume();
  },
]);

function logPauseLocation(message) {
71
  return session.logSourceLocation(message.params.callFrames[0].location);
72
}