File: test_psl.js

package info (click to toggle)
publicsuffix 20190415.1030-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, buster-backports
  • size: 568 kB
  • sloc: python: 263; sh: 49; makefile: 36; perl: 33
file content (36 lines) | stat: -rw-r--r-- 1,283 bytes parent folder | download | duplicates (23)
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
var etld = Cc["@mozilla.org/network/effective-tld-service;1"]
             .getService(Ci.nsIEffectiveTLDService);

var idna = Cc["@mozilla.org/network/idn-service;1"]
           .getService(Ci.nsIIDNService);

var Cr = Components.results;

function run_test()
{
  var file = do_get_file("data/test_psl.txt");
  var ios = Cc["@mozilla.org/network/io-service;1"]
              .getService(Ci.nsIIOService);
  var uri = ios.newFileURI(file);
  var scriptLoader = Cc["@mozilla.org/moz/jssubscript-loader;1"]
                       .getService(Ci.mozIJSSubScriptLoader);
  var srvScope = {};
  scriptLoader.loadSubScript(uri.spec, srvScope, "utf-8");
}

function checkPublicSuffix(host, expectedSuffix)
{
  var actualSuffix = null;
  try {
    actualSuffix = etld.getBaseDomainFromHost(host);
  } catch (e if e.result == Cr.NS_ERROR_INSUFFICIENT_DOMAIN_LEVELS ||
                e.result == Cr.NS_ERROR_ILLEGAL_VALUE) {
  }
  // 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);
  }
  do_check_eq(actualSuffix, expectedSuffix);
}