summaryrefslogtreecommitdiffstats
path: root/netwerk/test/unit/test_bug368702.js
blob: c77f40a71b8a864b183d4f168c0a7e0635a11956 (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
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
"use strict";

function run_test() {
  var tld = Services.eTLD;
  Assert.equal(tld.getPublicSuffixFromHost("localhost"), "localhost");
  Assert.equal(tld.getPublicSuffixFromHost("localhost."), "localhost.");
  Assert.equal(tld.getPublicSuffixFromHost("domain.com"), "com");
  Assert.equal(tld.getPublicSuffixFromHost("domain.com."), "com.");
  Assert.equal(tld.getPublicSuffixFromHost("domain.co.uk"), "co.uk");
  Assert.equal(tld.getPublicSuffixFromHost("domain.co.uk."), "co.uk.");
  Assert.equal(tld.getPublicSuffixFromHost("co.uk"), "co.uk");
  Assert.equal(tld.getBaseDomainFromHost("domain.co.uk"), "domain.co.uk");
  Assert.equal(tld.getBaseDomainFromHost("domain.co.uk."), "domain.co.uk.");

  try {
    tld.getPublicSuffixFromHost("");
    do_throw("this should fail");
  } catch (e) {
    Assert.equal(e.result, Cr.NS_ERROR_INSUFFICIENT_DOMAIN_LEVELS);
  }

  try {
    tld.getBaseDomainFromHost("domain.co.uk", 1);
    do_throw("this should fail");
  } catch (e) {
    Assert.equal(e.result, Cr.NS_ERROR_INSUFFICIENT_DOMAIN_LEVELS);
  }

  try {
    tld.getBaseDomainFromHost("co.uk");
    do_throw("this should fail");
  } catch (e) {
    Assert.equal(e.result, Cr.NS_ERROR_INSUFFICIENT_DOMAIN_LEVELS);
  }

  try {
    tld.getBaseDomainFromHost("");
    do_throw("this should fail");
  } catch (e) {
    Assert.equal(e.result, Cr.NS_ERROR_INSUFFICIENT_DOMAIN_LEVELS);
  }

  try {
    tld.getPublicSuffixFromHost("1.2.3.4");
    do_throw("this should fail");
  } catch (e) {
    Assert.equal(e.result, Cr.NS_ERROR_HOST_IS_IP_ADDRESS);
  }

  try {
    tld.getPublicSuffixFromHost("2010:836B:4179::836B:4179");
    do_throw("this should fail");
  } catch (e) {
    Assert.equal(e.result, Cr.NS_ERROR_HOST_IS_IP_ADDRESS);
  }

  try {
    tld.getPublicSuffixFromHost("3232235878");
    do_throw("this should fail");
  } catch (e) {
    Assert.equal(e.result, Cr.NS_ERROR_HOST_IS_IP_ADDRESS);
  }

  try {
    tld.getPublicSuffixFromHost("::ffff:192.9.5.5");
    do_throw("this should fail");
  } catch (e) {
    Assert.equal(e.result, Cr.NS_ERROR_HOST_IS_IP_ADDRESS);
  }

  try {
    tld.getPublicSuffixFromHost("::1");
    do_throw("this should fail");
  } catch (e) {
    Assert.equal(e.result, Cr.NS_ERROR_HOST_IS_IP_ADDRESS);
  }

  // Check IP addresses with trailing dot as well, Necko sometimes accepts
  // those (depending on operating system, see bug 380543)
  try {
    tld.getPublicSuffixFromHost("127.0.0.1.");
    do_throw("this should fail");
  } catch (e) {
    Assert.equal(e.result, Cr.NS_ERROR_HOST_IS_IP_ADDRESS);
  }

  try {
    tld.getPublicSuffixFromHost("::ffff:127.0.0.1.");
    do_throw("this should fail");
  } catch (e) {
    Assert.equal(e.result, Cr.NS_ERROR_HOST_IS_IP_ADDRESS);
  }

  // check normalization: output should be consistent with
  // nsIURI::GetAsciiHost(), i.e. lowercased and ASCII/ACE encoded
  var uri = Services.io.newURI("http://b\u00FCcher.co.uk");
  Assert.equal(tld.getBaseDomain(uri), "xn--bcher-kva.co.uk");
  Assert.equal(
    tld.getBaseDomainFromHost("b\u00FCcher.co.uk"),
    "xn--bcher-kva.co.uk"
  );
  Assert.equal(tld.getPublicSuffix(uri), "co.uk");
  Assert.equal(tld.getPublicSuffixFromHost("b\u00FCcher.co.uk"), "co.uk");

  // check that malformed hosts are rejected as invalid args
  try {
    tld.getBaseDomainFromHost("domain.co.uk..");
    do_throw("this should fail");
  } catch (e) {
    Assert.equal(e.result, Cr.NS_ERROR_ILLEGAL_VALUE);
  }

  try {
    tld.getBaseDomainFromHost("domain.co..uk");
    do_throw("this should fail");
  } catch (e) {
    Assert.equal(e.result, Cr.NS_ERROR_ILLEGAL_VALUE);
  }

  try {
    tld.getBaseDomainFromHost(".domain.co.uk");
    do_throw("this should fail");
  } catch (e) {
    Assert.equal(e.result, Cr.NS_ERROR_ILLEGAL_VALUE);
  }

  try {
    tld.getBaseDomainFromHost(".domain.co.uk");
    do_throw("this should fail");
  } catch (e) {
    Assert.equal(e.result, Cr.NS_ERROR_ILLEGAL_VALUE);
  }

  try {
    tld.getBaseDomainFromHost(".");
    do_throw("this should fail");
  } catch (e) {
    Assert.equal(e.result, Cr.NS_ERROR_ILLEGAL_VALUE);
  }

  try {
    tld.getBaseDomainFromHost("..");
    do_throw("this should fail");
  } catch (e) {
    Assert.equal(e.result, Cr.NS_ERROR_ILLEGAL_VALUE);
  }
}