summaryrefslogtreecommitdiffstats
path: root/devtools/server/tests/unit/test_breakpoint-15.js
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /devtools/server/tests/unit/test_breakpoint-15.js
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'devtools/server/tests/unit/test_breakpoint-15.js')
-rw-r--r--devtools/server/tests/unit/test_breakpoint-15.js69
1 files changed, 69 insertions, 0 deletions
diff --git a/devtools/server/tests/unit/test_breakpoint-15.js b/devtools/server/tests/unit/test_breakpoint-15.js
new file mode 100644
index 000000000..6a3ab7c6f
--- /dev/null
+++ b/devtools/server/tests/unit/test_breakpoint-15.js
@@ -0,0 +1,69 @@
+/* Any copyright is dedicated to the Public Domain.
+ http://creativecommons.org/publicdomain/zero/1.0/ */
+
+/**
+ * Check that adding a breakpoint in the same place returns the same actor.
+ */
+
+var gDebuggee;
+var gClient;
+var gThreadClient;
+
+function run_test()
+{
+ initTestDebuggerServer();
+ gDebuggee = addTestGlobal("test-stack");
+ gClient = new DebuggerClient(DebuggerServer.connectPipe());
+ gClient.connect().then(function () {
+ attachTestTabAndResume(gClient, "test-stack", function (aResponse, aTabClient, aThreadClient) {
+ gThreadClient = aThreadClient;
+ testSameBreakpoint();
+ });
+ });
+ do_test_pending();
+}
+
+const SOURCE_URL = "http://example.com/source.js";
+
+const testSameBreakpoint = Task.async(function* () {
+ let packet = yield executeOnNextTickAndWaitForPause(evalCode, gClient);
+ let source = gThreadClient.source(packet.frame.where.source);
+
+ // Whole line
+ let wholeLineLocation = {
+ line: 2
+ };
+
+ let [firstResponse, firstBpClient] = yield setBreakpoint(source, wholeLineLocation);
+ let [secondResponse, secondBpClient] = yield setBreakpoint(source, wholeLineLocation);
+
+ do_check_eq(firstBpClient.actor, secondBpClient.actor, "Should get the same actor w/ whole line breakpoints");
+
+ // Specific column
+
+ let columnLocation = {
+ line: 2,
+ column: 6
+ };
+
+ [firstResponse, firstBpClient] = yield setBreakpoint(source, columnLocation);
+ [secondResponse, secondBpClient] = yield setBreakpoint(source, columnLocation);
+
+ do_check_eq(secondBpClient.actor, secondBpClient.actor, "Should get the same actor column breakpoints");
+
+ finishClient(gClient);
+});
+
+function evalCode() {
+ Components.utils.evalInSandbox(
+ "" + function doStuff(k) { // line 1
+ let arg = 15; // line 2 - Step in here
+ k(arg); // line 3
+ } + "\n" // line 4
+ + "debugger;", // line 5
+ gDebuggee,
+ "1.8",
+ SOURCE_URL,
+ 1
+ );
+}