-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tests for whatwg/url#53 and friends.
- Loading branch information
Showing
2 changed files
with
134 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
[ | ||
"This resource is focused on highlighting issues with UTS #46 ToASCII", | ||
{ | ||
"comment": "Label longer than 63 code points", | ||
"input": "x01234567890123456789012345678901234567890123456789012345678901x" | ||
}, | ||
{ | ||
"input": "x01234567890123456789012345678901234567890123456789012345678901†", | ||
"output": "xn--x01234567890123456789012345678901234567890123456789012345678901-6963b" | ||
}, | ||
{ | ||
"comment": "Label with hyphens in 3rd and 4th position", | ||
"input": "aa--" | ||
}, | ||
{ | ||
"input": "a†--", | ||
"output": "xn--a---kp0a" | ||
}, | ||
{ | ||
"input": "ab--c" | ||
}, | ||
{ | ||
"comment": "Label with leading hyphen", | ||
"input": "-x" | ||
}, | ||
{ | ||
"input": "-†", | ||
"output": "xn----xhn" | ||
}, | ||
{ | ||
"comment": "Invalid Punycode", | ||
"input": "xn--a", | ||
"output": null | ||
}, | ||
{ | ||
"input": "xn--a.xn--nxa", | ||
"output": null | ||
}, | ||
{ | ||
"input": "xn--a.β", | ||
"output": null | ||
}, | ||
{ | ||
"comment": "Valid Punycode", | ||
"input": "xn--nxa.xn--nxa" | ||
}, | ||
{ | ||
"comment": "Mixed", | ||
"input": "xn--nxa.β", | ||
"output": "xn--nxa.xn--nxa" | ||
}, | ||
{ | ||
"input": "ab--c.xn--nxa" | ||
}, | ||
{ | ||
"input": "ab--c.β", | ||
"output": "ab--c.xn--nxa" | ||
}, | ||
{ | ||
"comment": "CheckJoiners is false", | ||
"input": "👩⚕️", | ||
"output": "xn--1ug39w1n45b" | ||
}, | ||
{ | ||
"comment": "CheckBidi is true", | ||
"input": "يa", | ||
"output": null | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
async_test(t => { | ||
const request = new XMLHttpRequest() | ||
request.open("GET", "toascii.json") | ||
request.send() | ||
request.responseType = "json" | ||
request.onload = t.step_func_done(() => { | ||
runTests(request.response) | ||
}) | ||
}, "Loading data…") | ||
|
||
function makeURL(type, input) { | ||
input = "https://" + input + "/x" | ||
if(type === "url") { | ||
return new URL(input) | ||
} else { | ||
const url = document.createElement(type) | ||
url.href = input | ||
return url | ||
} | ||
} | ||
|
||
function runTests(tests) { | ||
for(var i = 0, l = tests.length; i < l; i++) { | ||
let hostTest = tests[i] | ||
if (typeof hostTest === "string") { | ||
continue // skip comments | ||
} | ||
if(hostTest.output === undefined) { | ||
hostTest.output = hostTest.input | ||
} | ||
const typeName = { "url": "URL", "a": "<a>", "area": "<area>" } | ||
;["url", "a", "area"].forEach((type) => { | ||
test(() => { | ||
if(hostTest.output !== null) { | ||
const url = makeURL("url", hostTest.input) | ||
assert_equals(url.host, hostTest.output) | ||
assert_equals(url.hostname, hostTest.output) | ||
assert_equals(url.pathname, "/x") | ||
assert_equals(url.href, "https://" + hostTest.output + "/x") | ||
} else { | ||
if(type === "url") { | ||
assert_throws(new TypeError, () => makeURL("url", hostTest.input)) | ||
} else { | ||
const url = makeURL(type, hostTest.input) | ||
assert_equals(url.host, "") | ||
assert_equals(url.hostname, "") | ||
assert_equals(url.pathname, "") | ||
assert_equals(url.href, "https://" + hostTest.input + "/x") | ||
} | ||
} | ||
}, hostTest.input + " (using " + typeName[type] + ")") | ||
;["host", "hostname"].forEach((val) => { | ||
test(() => { | ||
const url = makeURL(type, "x") | ||
url[val] = hostTest.input | ||
if(hostTest.output !== null) { | ||
assert_equals(url[val], hostTest.output) | ||
} else { | ||
assert_equals(url[val], "x") | ||
} | ||
}, hostTest.input + " (using " + typeName[type] + "." + val + ")") | ||
}) | ||
}) | ||
} | ||
} |