|
1 /* Any copyright is dedicated to the Public Domain. |
|
2 http://creativecommons.org/publicdomain/zero/1.0/ */ |
|
3 |
|
4 /** |
|
5 * Check basic breakpoint functionality. |
|
6 */ |
|
7 |
|
8 var gDebuggee; |
|
9 var gClient; |
|
10 var gThreadClient; |
|
11 |
|
12 function run_test() |
|
13 { |
|
14 initTestDebuggerServer(); |
|
15 gDebuggee = addTestGlobal("test-stack"); |
|
16 gClient = new DebuggerClient(DebuggerServer.connectPipe()); |
|
17 gClient.connect(function () { |
|
18 attachTestTabAndResume(gClient, "test-stack", function (aResponse, aTabClient, aThreadClient) { |
|
19 gThreadClient = aThreadClient; |
|
20 test_simple_breakpoint(); |
|
21 }); |
|
22 }); |
|
23 do_test_pending(); |
|
24 } |
|
25 |
|
26 function test_simple_breakpoint() |
|
27 { |
|
28 gThreadClient.addOneTimeListener("paused", function (aEvent, aPacket) { |
|
29 let path = getFilePath('test_breakpoint-01.js'); |
|
30 let location = { |
|
31 url: path, |
|
32 line: gDebuggee.line0 + 3 |
|
33 }; |
|
34 gThreadClient.setBreakpoint(location, function (aResponse, bpClient) { |
|
35 gThreadClient.addOneTimeListener("paused", function (aEvent, aPacket) { |
|
36 // Check the return value. |
|
37 do_check_eq(aPacket.type, "paused"); |
|
38 do_check_eq(aPacket.frame.where.url, path); |
|
39 do_check_eq(aPacket.frame.where.line, location.line); |
|
40 do_check_eq(aPacket.why.type, "breakpoint"); |
|
41 do_check_eq(aPacket.why.actors[0], bpClient.actor); |
|
42 // Check that the breakpoint worked. |
|
43 do_check_eq(gDebuggee.a, 1); |
|
44 do_check_eq(gDebuggee.b, undefined); |
|
45 |
|
46 // Remove the breakpoint. |
|
47 bpClient.remove(function (aResponse) { |
|
48 gThreadClient.resume(function () { |
|
49 finishClient(gClient); |
|
50 }); |
|
51 }); |
|
52 |
|
53 }); |
|
54 // Continue until the breakpoint is hit. |
|
55 gThreadClient.resume(); |
|
56 |
|
57 }); |
|
58 |
|
59 }); |
|
60 |
|
61 Components.utils.evalInSandbox("var line0 = Error().lineNumber;\n" + |
|
62 "debugger;\n" + // line0 + 1 |
|
63 "var a = 1;\n" + // line0 + 2 |
|
64 "var b = 2;\n", // line0 + 3 |
|
65 gDebuggee); |
|
66 } |