Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5)

Unified Diff: test/inspector/debugger/schedule-step-into-async-set-timeout.js

Issue 2746743002: [inspector] support setTimeout in Debugger.scheduleStepIntoAsync method (Closed)
Patch Set: addressed comments Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
+}
« no previous file with comments | « src/inspector/v8-debugger-agent-impl.cc ('k') | test/inspector/debugger/schedule-step-into-async-set-timeout-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698