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
|
// Tests for nsITextToSubURI.unEscapeNonAsciiURI
function run_test() {
const textToSubURI = Components.classes["@mozilla.org/intl/texttosuburi;1"].getService(Components.interfaces.nsITextToSubURI);
// Tests whether nsTextToSubURI does UTF-16 unescaping (it shouldn't)
const testURI = "data:text/html,%FE%FF";
do_check_eq(textToSubURI.unEscapeNonAsciiURI("UTF-16", testURI), testURI);
// Tests whether incomplete multibyte sequences throw.
const tests = [{
input: "http://example.com/?p=%E9",
throws: Components.results.NS_ERROR_ILLEGAL_INPUT,
}, {
input: "http://example.com/?p=%E9%80",
throws: Components.results.NS_ERROR_ILLEGAL_INPUT,
}, {
input: "http://example.com/?p=%E9%80%80",
expected: "http://example.com/?p=\u9000",
}, {
input: "http://example.com/?p=%E9e",
throws: Components.results.NS_ERROR_ILLEGAL_INPUT,
}, {
input: "http://example.com/?p=%E9%E9",
throws: Components.results.NS_ERROR_ILLEGAL_INPUT,
}, {
input: "http://example.com/?name=M%FCller/",
throws: Components.results.NS_ERROR_ILLEGAL_INPUT,
}, {
input: "http://example.com/?name=M%C3%BCller/",
expected: "http://example.com/?name=Müller/",
}];
for (const t of tests) {
if (t.throws !== undefined) {
let thrown = undefined;
try {
textToSubURI.unEscapeNonAsciiURI("UTF-8", t.input);
} catch (e) {
thrown = e.result;
}
do_check_eq(thrown, t.throws);
} else {
do_check_eq(textToSubURI.unEscapeNonAsciiURI("UTF-8", t.input), t.expected);
}
}
}
|