Index: test/inspector/debugger/schedule-step-into-async-set-timeout.js |
diff --git a/test/inspector/debugger/schedule-step-into-async-set-timeout.js b/test/inspector/debugger/schedule-step-into-async-set-timeout.js |
new file mode 100644 |
index 0000000000000000000000000000000000000000..f6ffe6e0a7d9a5eaa689aa8d96363d863e6e06a1 |
--- /dev/null |
+++ b/test/inspector/debugger/schedule-step-into-async-set-timeout.js |
@@ -0,0 +1,75 @@ |
+// 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. |
+ |
+InspectorTest.log('Checks Debugger.scheduleStepIntoAsync with setTimeout.'); |
+InspectorTest.setupScriptMap(); |
+Protocol.Debugger.enable(); |
+InspectorTest.runAsyncTestSuite([ |
+ async function testSetTimeout() { |
+ Protocol.Runtime.evaluate({expression: 'debugger; setTimeout(() => 1, 0);'}); |
+ await Protocol.Debugger.oncePaused(); |
+ Protocol.Debugger.stepOver(); |
+ await waitPauseAndDumpLocation(); |
+ Protocol.Debugger.scheduleStepIntoAsync(); |
+ Protocol.Debugger.stepOver(); |
+ await waitPauseAndDumpLocation(); |
+ await Protocol.Debugger.resume(); |
+ }, |
+ |
+ async function testDebuggerStmtBeforeCallback1() { |
+ Protocol.Runtime.evaluate({expression: 'debugger; setTimeout(() => 1, 0);debugger;'}); |
+ Protocol.Runtime.evaluate({expression: 'setTimeout(\'debugger//should-break-here\', 0)'}); |
+ await Protocol.Debugger.oncePaused(); |
+ Protocol.Debugger.stepOver(); |
+ await waitPauseAndDumpLocation(); |
+ Protocol.Debugger.scheduleStepIntoAsync(); |
+ Protocol.Debugger.stepOver(); |
+ await waitPauseAndDumpLocation(); |
+ await Protocol.Debugger.resume(); |
+ await waitPauseAndDumpLocation(); |
+ await Protocol.Debugger.resume(); |
+ }, |
+ |
+ async function testDebuggerStmtBeforeCallback2() { |
+ Protocol.Runtime.evaluate({expression: 'debugger;\nsetTimeout(\'debugger//should-break-here\', 0);\nsetTimeout(() => 1, 0);'}); |
+ await Protocol.Debugger.oncePaused(); |
+ Protocol.Debugger.stepOver(); |
+ await Protocol.Debugger.oncePaused(); |
+ Protocol.Debugger.stepOver(); |
+ await waitPauseAndDumpLocation(); |
+ Protocol.Debugger.scheduleStepIntoAsync(); |
+ Protocol.Debugger.stepOver(); |
+ await waitPauseAndDumpLocation(); |
+ await Protocol.Debugger.resume(); |
+ await InspectorTest.waitPendingTasks(); |
+ }, |
+ |
+ async function testSetTimeoutWithoutJS() { |
+ Protocol.Runtime.evaluate({expression: 'debugger; setTimeout(\'}\', 0);\nsetTimeout(\'var a = 239;\', 0);\nsetTimeout(\'debugger//should-break-here\', 0);'}); |
+ await Protocol.Debugger.oncePaused(); |
+ Protocol.Debugger.stepOver(); |
+ await waitPauseAndDumpLocation(); |
+ Protocol.Debugger.scheduleStepIntoAsync(); |
+ Protocol.Debugger.stepOver(); |
+ await waitPauseAndDumpLocation(); |
+ await Protocol.Debugger.resume(); |
+ }, |
+ |
+ async function testResume() { |
+ Protocol.Debugger.pause(); |
+ Protocol.Runtime.evaluate({expression: 'setTimeout(() => 42, 0)'}); |
+ await waitPauseAndDumpLocation(); |
+ Protocol.Debugger.scheduleStepIntoAsync(); |
+ Protocol.Debugger.resume(); |
+ await waitPauseAndDumpLocation(); |
+ await Protocol.Debugger.resume(); |
+ } |
+]); |
+ |
+async function waitPauseAndDumpLocation() { |
+ var message = await Protocol.Debugger.oncePaused(); |
+ InspectorTest.log('paused at:'); |
+ await InspectorTest.logSourceLocation(message.params.callFrames[0].location); |
+ return message; |
+} |