blob: d9c0c2965d6479f2a2e75050f86a741c9dfad190 (
plain)
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
|
"use strict";
var idna = Cc["@mozilla.org/network/idn-service;1"].getService(
Ci.nsIIDNService
);
function run_test() {
var file = do_get_file("data/test_psl.txt");
var uri = Services.io.newFileURI(file);
var srvScope = {};
Services.scriptloader.loadSubScript(uri.spec, srvScope);
}
// Exported to the loaded script
/* exported checkPublicSuffix */
function checkPublicSuffix(host, expectedSuffix) {
var actualSuffix = null;
try {
actualSuffix = Services.eTLD.getBaseDomainFromHost(host);
} catch (e) {
if (
e.result != Cr.NS_ERROR_INSUFFICIENT_DOMAIN_LEVELS &&
e.result != Cr.NS_ERROR_ILLEGAL_VALUE
) {
throw e;
}
}
// The EffectiveTLDService always gives back punycoded labels.
// The test suite wants to get back what it put in.
if (
actualSuffix !== null &&
expectedSuffix !== null &&
/(^|\.)xn--/.test(actualSuffix) &&
!/(^|\.)xn--/.test(expectedSuffix)
) {
actualSuffix = idna.convertACEtoUTF8(actualSuffix);
}
Assert.equal(actualSuffix, expectedSuffix);
}
|