summaryrefslogtreecommitdiff
path: root/deps/v8/test/inspector/debugger/step-into-break-on-async-call.js
blob: 6a185c045f2926214ff1aa6d697c4b6147d84c40 (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
// 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.

let {session, contextGroup, Protocol} =
    InspectorTest.start('Test for Debugger.stepInto with breakOnAsyncCall.');

InspectorTest.runAsyncTestSuite([
  async function testSetTimeout() {
    Protocol.Debugger.enable();
    Protocol.Debugger.pause();
    let pausedPromise = Protocol.Debugger.oncePaused();
    Protocol.Runtime.evaluate({
      expression: 'setTimeout(() => 42, 0)//# sourceURL=test.js'
    });
    await pausedPromise;
    Protocol.Debugger.stepInto({breakOnAsyncCall: true});
    let {params: {callFrames, asyncCallStackTraceId}} =
        await Protocol.Debugger.oncePaused();
    session.logCallFrames(callFrames);
    if (asyncCallStackTraceId) {
      InspectorTest.log('asyncCallStackTraceId is set');
    }
    Protocol.Debugger.pauseOnAsyncCall(
        {parentStackTraceId: asyncCallStackTraceId});
    pausedPromise = Protocol.Debugger.oncePaused();
    Protocol.Debugger.resume();
    ({params: {callFrames, asyncCallStackTraceId}} = await pausedPromise);
    session.logCallFrames(callFrames);
    if (!asyncCallStackTraceId) {
      InspectorTest.log('asyncCallStackTraceId is empty');
    }
    await Protocol.Debugger.disable();
  },

  async function testPromiseThen() {
    Protocol.Debugger.enable();
    Protocol.Runtime.evaluate({expression: 'var p = Promise.resolve()'});
    Protocol.Debugger.pause();
    let pausedPromise = Protocol.Debugger.oncePaused();
    Protocol.Runtime.evaluate({expression: 'p.then(() => 42)//# sourceURL=test.js'});
    await pausedPromise;
    Protocol.Debugger.stepInto({breakOnAsyncCall: true});
    let {params: {callFrames, asyncCallStackTraceId}} =
        await Protocol.Debugger.oncePaused();
    session.logCallFrames(callFrames);
    if (asyncCallStackTraceId) {
      InspectorTest.log('asyncCallStackTraceId is set');
    }
    Protocol.Debugger.pauseOnAsyncCall(
        {parentStackTraceId: asyncCallStackTraceId});
    pausedPromise = Protocol.Debugger.oncePaused();
    Protocol.Debugger.resume();
    ({params: {callFrames, asyncCallStackTraceId}} = await pausedPromise);
    session.logCallFrames(callFrames);
    if (!asyncCallStackTraceId) {
      InspectorTest.log('asyncCallStackTraceId is empty');
    }
    await Protocol.Debugger.disable();
  }
]);