async-set-timeout.js 1.32 KB
Newer Older
1 2 3 4
// Copyright 2016 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.

5
let {session, contextGroup, Protocol} = InspectorTest.start('Checks that async stack contains setTimeout');
6

7
contextGroup.addScript(`
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
var resolveCallback;
function foo1() {
  function inner1() {
    debugger;
    resolveCallback();
  }
  inner1();
}
function foo2() {
  function inner2() {
    setTimeout(foo1, 0);
  }
  inner2();
}
function foo3() {
  var promise = new Promise(resolve => resolveCallback = resolve);
  function inner3() {
    setTimeout(foo2, 0);
  }
  inner3();
  return promise;
}
//# sourceURL=test.js`, 7, 26);

32
session.setupScriptMap();
33
Protocol.Debugger.onPaused(message => {
34
  session.logCallFrames(message.params.callFrames);
35 36 37
  var asyncStackTrace = message.params.asyncStackTrace;
  while (asyncStackTrace) {
    InspectorTest.log(`-- ${asyncStackTrace.description} --`);
38
    session.logCallFrames(asyncStackTrace.callFrames);
39 40 41 42 43 44 45 46 47 48
    asyncStackTrace = asyncStackTrace.parent;
  }
  InspectorTest.log('');
  Protocol.Debugger.resume();
});

Protocol.Debugger.enable();
Protocol.Debugger.setAsyncCallStackDepth({ maxDepth: 128 });
Protocol.Runtime.evaluate({ expression: "foo3()//# sourceURL=expr.js", awaitPromise: true })
  .then(InspectorTest.completeTest);