aboutsummaryrefslogtreecommitdiff
path: root/deps/v8/test/inspector/debugger/step-out-async-await.js
blob: 3b249dc7f368296dfacfd1e7f58aabd5bf1fecf5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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
71
72
// 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.

InspectorTest.log('StepOut from return position of async function.');

InspectorTest.addScript(`
  async function testFunction() {
    async function foo() {
      var p = Promise.resolve();
      await p;
      p.then(() => 1);
      debugger;
      return p;
    }
    await foo();
  }
`);

InspectorTest.setupScriptMap();
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) {
  return InspectorTest.logSourceLocation(message.params.callFrames[0].location);
}