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
|
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
// Tests that the inject commands works as they should
const TEST_URI = "http://example.com/browser/devtools/client/commandline/" +
"test/browser_cmd_inject.html";
function test() {
helpers.addTabWithToolbar(TEST_URI, function (options) {
return helpers.audit(options, [
{
setup: "inject",
check: {
input: "inject",
markup: "VVVVVV",
hints: " <library>",
status: "ERROR"
},
},
{
setup: "inject j",
check: {
input: "inject j",
markup: "VVVVVVVI",
hints: "Query",
status: "ERROR"
},
},
{
setup: "inject notauri",
check: {
input: "inject notauri",
hints: " -> http://notauri/",
markup: "VVVVVVVIIIIIII",
status: "ERROR",
args: {
library: {
value: undefined,
status: "INCOMPLETE"
}
}
}
},
{
setup: "inject http://example.com/browser/devtools/client/commandline/test/browser_cmd_inject.js",
check: {
input: "inject http://example.com/browser/devtools/client/commandline/test/browser_cmd_inject.js",
markup: "VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV",
hints: "",
status: "VALID",
args: {
library: {
value: function (library) {
is(library.type, "url", "inject type name");
is(library.url.origin, "http://example.com", "inject url hostname");
ok(library.url.pathname.indexOf("_inject.js") != -1, "inject url path");
},
status: "VALID"
}
}
},
exec: {
output: [ /http:\/\/example.com\/browser\/devtools\/client\/commandline\/test\/browser_cmd_inject.js loaded/ ]
}
}
]);
}).then(finish, helpers.handleError);
}
|