2017-11-05 07:33:05 +00:00
|
|
|
// 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();
|
2018-06-05 14:16:34 +00:00
|
|
|
Protocol.Debugger.setAsyncCallStackDepth({maxDepth: 128});
|
|
|
|
|
2017-11-05 07:33:05 +00:00
|
|
|
let pausedPromise = Protocol.Debugger.oncePaused();
|
|
|
|
Protocol.Runtime.evaluate({
|
|
|
|
expression: 'setTimeout(() => 42, 0)//# sourceURL=test.js'
|
|
|
|
});
|
|
|
|
await pausedPromise;
|
|
|
|
Protocol.Debugger.stepInto({breakOnAsyncCall: true});
|
2017-11-21 19:34:34 +00:00
|
|
|
let {params: {callFrames, asyncCallStackTraceId}} =
|
|
|
|
await Protocol.Debugger.oncePaused();
|
2017-11-05 07:33:05 +00:00
|
|
|
session.logCallFrames(callFrames);
|
2017-11-21 19:34:34 +00:00
|
|
|
if (asyncCallStackTraceId) {
|
|
|
|
InspectorTest.log('asyncCallStackTraceId is set');
|
2017-11-05 07:33:05 +00:00
|
|
|
}
|
2017-11-21 19:34:34 +00:00
|
|
|
Protocol.Debugger.pauseOnAsyncCall(
|
|
|
|
{parentStackTraceId: asyncCallStackTraceId});
|
2017-11-05 07:33:05 +00:00
|
|
|
pausedPromise = Protocol.Debugger.oncePaused();
|
|
|
|
Protocol.Debugger.resume();
|
2017-11-21 19:34:34 +00:00
|
|
|
({params: {callFrames, asyncCallStackTraceId}} = await pausedPromise);
|
2017-11-05 07:33:05 +00:00
|
|
|
session.logCallFrames(callFrames);
|
2017-11-21 19:34:34 +00:00
|
|
|
if (!asyncCallStackTraceId) {
|
|
|
|
InspectorTest.log('asyncCallStackTraceId is empty');
|
2017-11-05 07:33:05 +00:00
|
|
|
}
|
|
|
|
await Protocol.Debugger.disable();
|
|
|
|
},
|
|
|
|
|
|
|
|
async function testPromiseThen() {
|
|
|
|
Protocol.Debugger.enable();
|
2018-06-05 14:16:34 +00:00
|
|
|
Protocol.Debugger.setAsyncCallStackDepth({maxDepth: 128});
|
|
|
|
|
2017-11-05 07:33:05 +00:00
|
|
|
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});
|
2017-11-21 19:34:34 +00:00
|
|
|
let {params: {callFrames, asyncCallStackTraceId}} =
|
|
|
|
await Protocol.Debugger.oncePaused();
|
2017-11-05 07:33:05 +00:00
|
|
|
session.logCallFrames(callFrames);
|
2017-11-21 19:34:34 +00:00
|
|
|
if (asyncCallStackTraceId) {
|
|
|
|
InspectorTest.log('asyncCallStackTraceId is set');
|
2017-11-05 07:33:05 +00:00
|
|
|
}
|
2017-11-21 19:34:34 +00:00
|
|
|
Protocol.Debugger.pauseOnAsyncCall(
|
|
|
|
{parentStackTraceId: asyncCallStackTraceId});
|
2017-11-05 07:33:05 +00:00
|
|
|
pausedPromise = Protocol.Debugger.oncePaused();
|
|
|
|
Protocol.Debugger.resume();
|
2017-11-21 19:34:34 +00:00
|
|
|
({params: {callFrames, asyncCallStackTraceId}} = await pausedPromise);
|
2017-11-05 07:33:05 +00:00
|
|
|
session.logCallFrames(callFrames);
|
2017-11-21 19:34:34 +00:00
|
|
|
if (!asyncCallStackTraceId) {
|
|
|
|
InspectorTest.log('asyncCallStackTraceId is empty');
|
2017-11-05 07:33:05 +00:00
|
|
|
}
|
|
|
|
await Protocol.Debugger.disable();
|
|
|
|
}
|
|
|
|
]);
|