mirror of
https://github.com/nodejs/node.git
synced 2025-05-16 02:01:52 +00:00

PR-URL: https://github.com/nodejs/node/pull/17489 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Myles Borins <myles.borins@gmail.com> Reviewed-By: Ali Ijaz Sheikh <ofrobots@google.com>
62 lines
2.4 KiB
JavaScript
62 lines
2.4 KiB
JavaScript
// 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();
|
|
}
|
|
]);
|