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
|
"use strict";
add_task(async function test_case_insensitive_substitutions() {
let resProto = Services.io
.getProtocolHandler("resource")
.QueryInterface(Ci.nsISubstitutingProtocolHandler);
let uri = Services.io.newFileURI(do_get_file("data"));
resProto.setSubstitution("FooBar", uri);
resProto.setSubstitutionWithFlags("BarBaz", uri, 0);
equal(
resProto.resolveURI(Services.io.newURI("resource://foobar/")),
uri.spec,
"Got correct resolved URI for setSubstitution"
);
equal(
resProto.resolveURI(Services.io.newURI("resource://foobar/")),
uri.spec,
"Got correct resolved URI for setSubstitutionWithFlags"
);
ok(
resProto.hasSubstitution("foobar"),
"hasSubstitution works with all-lower-case root"
);
ok(
resProto.hasSubstitution("FooBar"),
"hasSubstitution works with mixed-case root"
);
equal(
resProto.getSubstitution("foobar").spec,
uri.spec,
"getSubstitution works with all-lower-case root"
);
equal(
resProto.getSubstitution("FooBar").spec,
uri.spec,
"getSubstitution works with mixed-case root"
);
resProto.setSubstitution("foobar", null);
resProto.setSubstitution("barbaz", null);
Assert.throws(
() => resProto.resolveURI(Services.io.newURI("resource://foobar/")),
e => e.result == Cr.NS_ERROR_NOT_AVAILABLE,
"Correctly unregistered case-insensitive substitution in setSubstitution"
);
Assert.throws(
() => resProto.resolveURI(Services.io.newURI("resource://barbaz/")),
e => e.result == Cr.NS_ERROR_NOT_AVAILABLE,
"Correctly unregistered case-insensitive substitution in setSubstitutionWithFlags"
);
Assert.throws(
() => resProto.getSubstitution("foobar"),
e => e.result == Cr.NS_ERROR_NOT_AVAILABLE,
"foobar substitution has been removed"
);
});
|