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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
/* -*- js-indent-level: 2; indent-tabs-mode: nil -*- */
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
var gDebuggee;
var gClient;
var gThreadClient;
// This test ensures that we can create SourceActors and SourceClients properly,
// and that they can communicate over the protocol to fetch the source text for
// a given script.
function run_test()
{
initTestDebuggerServer();
gDebuggee = addTestGlobal("test-grips");
Cu.evalInSandbox(
"" + function stopMe(arg1) {
debugger;
},
gDebuggee,
"1.8",
getFileUrl("test_source-01.js")
);
gClient = new DebuggerClient(DebuggerServer.connectPipe());
gClient.connect().then(function () {
attachTestTabAndResume(gClient, "test-grips", function (aResponse, aTabClient, aThreadClient) {
gThreadClient = aThreadClient;
test_source();
});
});
do_test_pending();
}
const SOURCE_URL = "http://example.com/foobar.js";
const SOURCE_CONTENT = "stopMe()";
function test_source()
{
DebuggerServer.LONG_STRING_LENGTH = 200;
gThreadClient.addOneTimeListener("paused", function (aEvent, aPacket) {
gThreadClient.getSources(function (aResponse) {
do_check_true(!!aResponse);
do_check_true(!!aResponse.sources);
let source = aResponse.sources.filter(function (s) {
return s.url === SOURCE_URL;
})[0];
do_check_true(!!source);
let sourceClient = gThreadClient.source(source);
sourceClient.source(function (aResponse) {
do_check_true(!!aResponse);
do_check_true(!aResponse.error);
do_check_true(!!aResponse.contentType);
do_check_true(aResponse.contentType.includes("javascript"));
do_check_true(!!aResponse.source);
do_check_eq(SOURCE_CONTENT,
aResponse.source);
gThreadClient.resume(function () {
finishClient(gClient);
});
});
});
});
Cu.evalInSandbox(
SOURCE_CONTENT,
gDebuggee,
"1.8",
SOURCE_URL
);
}
|