summaryrefslogtreecommitdiffstats
path: root/devtools/server/tests/unit/test_xpcshell_debugging.js
blob: 7026a02b344c4d9d512a0faac81aded452e093f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

// Test the xpcshell-test debug support.  Ideally we should have this test
// next to the xpcshell support code, but that's tricky...

function run_test() {
  let testFile = do_get_file("xpcshell_debugging_script.js");

  // _setupDebuggerServer is from xpcshell-test's head.js
  let testResumed = false;
  let DebuggerServer = _setupDebuggerServer([testFile.path], () => testResumed = true);
  let transport = DebuggerServer.connectPipe();
  let client = new DebuggerClient(transport);
  client.connect().then(() => {
    // Even though we have no tabs, listTabs gives us the chromeDebugger.
    client.getProcess().then(response => {
      let actor = response.form.actor;
      client.attachTab(actor, (response, tabClient) => {
        tabClient.attachThread(null, (response, threadClient) => {
          threadClient.addOneTimeListener("paused", (event, packet) => {
            equal(packet.why.type, "breakpoint",
                "yay - hit the breakpoint at the first line in our script");
            // Resume again - next stop should be our "debugger" statement.
            threadClient.addOneTimeListener("paused", (event, packet) => {
              equal(packet.why.type, "debuggerStatement",
                    "yay - hit the 'debugger' statement in our script");
              threadClient.resume(() => {
                finishClient(client);
              });
            });
            threadClient.resume();
          });
          // tell the thread to do the initial resume.  This would cause the
          // xpcshell test harness to resume and load the file under test.
          threadClient.resume(response => {
            // should have been told to resume the test itself.
            ok(testResumed);
            // Now load our test script.
            load(testFile.path);
            // and our "paused" listener above should get hit.
          });
        });
      });
    });
  });
  do_test_pending();
}