Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / url / script-tests / ipv6.js
blobbc007a9a8db6706afa1bbb16055a3fc5d05d1c4f
1 description("Canonicalization of IPv6 addresses.");
3 cases = [ 
4     ["[", ""],
5     ["[:", ""],
6     ["]", ""],
7     [":]", ""],
8     ["[]", ""],
9     ["[:]", ""],
11     // Regular IP address is invalid without bounding '[' and ']'.
12     ["2001:db8::1", ""],
13     ["[2001:db8::1", ""],
14     ["2001:db8::1]", ""],
16     // Regular IP addresses.
17     ["[::]", "[::]"],
18     ["[::1]", "[::1]"],
19     ["[1::]", "[1::]"],
20     ["[::192.168.0.1]", "[::c0a8:1]"],
21     ["[::ffff:192.168.0.1]", "[::ffff:c0a8:1]"],
23     // Leading zeros should be stripped.
24     ["[000:01:02:003:004:5:6:007]", "[0:1:2:3:4:5:6:7]"],
26     // Upper case letters should be lowercased.
27     ["[A:b:c:DE:fF:0:1:aC]", "[a:b:c:de:ff:0:1:ac]"],
29     // The same address can be written with different contractions, but should
30     // get canonicalized to the same thing.
31     ["[1:0:0:2::3:0]", "[1::2:0:0:3:0]"],
32     ["[1::2:0:0:3:0]", "[1::2:0:0:3:0]"],
34     // IPv4 addresses
35     // Only mapped and compat addresses can have IPv4 syntax embedded.
36     ["[::eeee:192.168.0.1]", ""],
37     ["[2001::192.168.0.1]", ""],
38     ["[1:2:192.168.0.1:5:6]", ""],
40     // IPv4 with last component missing.
41     ["[::ffff:192.1.2]", "[::ffff:c001:2]"],
43     // IPv4 using hex.
44     // FIXME: Should this format be disallowed?
45     ["[::ffff:0xC0.0Xa8.0x0.0x1]", "[::ffff:c0a8:1]"],
47     // There may be zeros surrounding the "::" contraction.
48     ["[0:0::0:0:8]", "[::8]"],
50     ["[2001:db8::1]", "[2001:db8::1]"],
52     // Can only have one "::" contraction in an IPv6 string literal.
53     ["[2001::db8::1]", ""],
55     // No more than 2 consecutive ':'s.
56     ["[2001:db8:::1]", ""],
57     ["[:::]", ""],
59     // Non-IP addresses due to invalid characters.
60     ["[2001::.com]", ""],
62     // Too many components means not an IP address.  Similarly with too few if using IPv4 compat or mapped addresses.
63     ["[::192.168.0.0.1]", ""],
64     ["[::ffff:192.168.0.0.1]", ""],
65     ["[1:2:3:4:5:6:7:8:9]", ""],
67     // Too many bits (even though 8 comonents, the last one holds 32 bits).
68     ["[0:0:0:0:0:0:0:192.168.0.1]", ""],
70     // Too many bits specified -- the contraction would have to be zero-length
71     // to not exceed 128 bits.
72     ["[1:2:3:4:5:6::192.168.0.1]", ""],
74     // The contraction is for 16 bits of zero. RFC 5952, Section 4.2.2.
75     ["[1:2:3:4:5:6::8]", "[1:2:3:4:5:6:0:8]"],
77     // Cannot have a trailing colon.
78     ["[1:2:3:4:5:6:7:8:]", ""],
79     ["[1:2:3:4:5:6:192.168.0.1:]", ""],
81     // Cannot have negative numbers.
82     ["[-1:2:3:4:5:6:7:8]", ""],
84     // Scope ID -- the URL may contain an optional ["%" <scope_id>] section.
85     // The scope_id should be included in the canonicalized URL, and is an
86     // unsigned decimal number.
88     // Don't allow scope-id
89     ["[1::%1]", ""],
90     ["[1::%eth0]", ""],
91     ["[1::%]", ""],
92     ["[%]", ""],
93     ["[::%:]", ""],
95     // Don't allow leading or trailing colons.
96     ["[:0:0::0:0:8]", ""],
97     ["[0:0::0:0:8:]", ""],
98     ["[:0:0::0:0:8:]", ""],
100     // Two dots in a row means not an IP address.
101     ["[::192.168..1]", ""],
103     // Spaces should be rejected.
104     ["[::1 hello]", ""]
107 for (var i = 0; i < cases.length; ++i) {
108   test_vector = cases[i][0];
109   expected_result = cases[i][1];
110   if (expected_result === "")
111     expected_result = test_vector;
112   shouldBe("canonicalize('http://" + test_vector + "/')",
113            "'http://" + expected_result + "/'");