toolkit/devtools/server/tests/unit/test_listsources-01.js

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

michael@0 1 /* Any copyright is dedicated to the Public Domain.
michael@0 2 http://creativecommons.org/publicdomain/zero/1.0/ */
michael@0 3
michael@0 4 /**
michael@0 5 * Check basic getSources functionality.
michael@0 6 */
michael@0 7
michael@0 8 var gDebuggee;
michael@0 9 var gClient;
michael@0 10 var gThreadClient;
michael@0 11
michael@0 12 var gNumTimesSourcesSent = 0;
michael@0 13
michael@0 14 function run_test()
michael@0 15 {
michael@0 16 initTestDebuggerServer();
michael@0 17 gDebuggee = addTestGlobal("test-stack");
michael@0 18 gClient = new DebuggerClient(DebuggerServer.connectPipe());
michael@0 19 gClient.request = (function (request) {
michael@0 20 return function (aRequest, aOnResponse) {
michael@0 21 if (aRequest.type === "sources") {
michael@0 22 ++gNumTimesSourcesSent;
michael@0 23 }
michael@0 24 return request.call(this, aRequest, aOnResponse);
michael@0 25 };
michael@0 26 }(gClient.request));
michael@0 27 gClient.connect(function () {
michael@0 28 attachTestTabAndResume(gClient, "test-stack", function (aResponse, aTabClient, aThreadClient) {
michael@0 29 gThreadClient = aThreadClient;
michael@0 30 test_simple_listsources();
michael@0 31 });
michael@0 32 });
michael@0 33 do_test_pending();
michael@0 34 }
michael@0 35
michael@0 36 function test_simple_listsources()
michael@0 37 {
michael@0 38 gThreadClient.addOneTimeListener("paused", function (aEvent, aPacket) {
michael@0 39 gThreadClient.getSources(function (aResponse) {
michael@0 40 do_check_true(aResponse.sources.some(function (s) {
michael@0 41 return s.url.match(/test_listsources-01.js$/);
michael@0 42 }));
michael@0 43
michael@0 44 do_check_true(gNumTimesSourcesSent <= 1,
michael@0 45 "Should only send one sources request at most, even though we"
michael@0 46 + " might have had to send one to determine feature support.");
michael@0 47
michael@0 48 gThreadClient.resume(function () {
michael@0 49 finishClient(gClient);
michael@0 50 });
michael@0 51 });
michael@0 52 });
michael@0 53
michael@0 54 gDebuggee.eval("var line0 = Error().lineNumber;\n" +
michael@0 55 "debugger;\n" + // line0 + 1
michael@0 56 "var a = 1;\n" + // line0 + 2
michael@0 57 "var b = 2;\n"); // line0 + 3
michael@0 58 }

mercurial