mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
143 lines
4.9 KiB
143 lines
4.9 KiB
8 years ago
|
'use strict';
|
||
|
const common = require('../common');
|
||
|
const path = require('path');
|
||
|
const { URL, URLSearchParams } = require('url');
|
||
|
const { test, assert_equals, assert_true, assert_throws } = common.WPT;
|
||
|
|
||
|
if (!common.hasIntl) {
|
||
|
// A handful of the tests fail when ICU is not included.
|
||
|
common.skip('missing Intl');
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
const request = {
|
||
|
response: require(path.join(common.fixturesDir, 'url-tests.json'))
|
||
|
};
|
||
|
|
||
|
/* eslint-disable */
|
||
|
/* WPT Refs:
|
||
|
https://github.com/w3c/web-platform-tests/blob/8791bed/url/url-constructor.html
|
||
|
License: http://www.w3.org/Consortium/Legal/2008/04-testsuite-copyright.html
|
||
|
*/
|
||
|
function runURLConstructorTests() {
|
||
|
// var setup = async_test("Loading data…")
|
||
|
// setup.step(function() {
|
||
|
// var request = new XMLHttpRequest()
|
||
|
// request.open("GET", "urltestdata.json")
|
||
|
// request.send()
|
||
|
// request.responseType = "json"
|
||
|
// request.onload = setup.step_func(function() {
|
||
|
runURLTests(request.response)
|
||
|
// setup.done()
|
||
|
// })
|
||
|
// })
|
||
|
}
|
||
|
|
||
|
function bURL(url, base) {
|
||
|
return new URL(url, base || "about:blank")
|
||
|
}
|
||
|
|
||
|
|
||
|
function runURLTests(urltests) {
|
||
|
for(var i = 0, l = urltests.length; i < l; i++) {
|
||
|
var expected = urltests[i]
|
||
|
if (typeof expected === "string") continue // skip comments
|
||
|
|
||
|
test(function() {
|
||
|
if (expected.failure) {
|
||
|
assert_throws(new TypeError(), function() {
|
||
|
bURL(expected.input, expected.base)
|
||
|
})
|
||
|
return
|
||
|
}
|
||
|
|
||
|
var url = bURL(expected.input, expected.base)
|
||
|
assert_equals(url.href, expected.href, "href")
|
||
|
assert_equals(url.protocol, expected.protocol, "protocol")
|
||
|
assert_equals(url.username, expected.username, "username")
|
||
|
assert_equals(url.password, expected.password, "password")
|
||
|
assert_equals(url.host, expected.host, "host")
|
||
|
assert_equals(url.hostname, expected.hostname, "hostname")
|
||
|
assert_equals(url.port, expected.port, "port")
|
||
|
assert_equals(url.pathname, expected.pathname, "pathname")
|
||
|
assert_equals(url.search, expected.search, "search")
|
||
|
if ("searchParams" in expected) {
|
||
|
assert_true("searchParams" in url)
|
||
|
// assert_equals(url.searchParams.toString(), expected.searchParams, "searchParams")
|
||
|
}
|
||
|
assert_equals(url.hash, expected.hash, "hash")
|
||
|
}, "Parsing: <" + expected.input + "> against <" + expected.base + ">")
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function runURLSearchParamTests() {
|
||
|
test(function() {
|
||
|
var url = bURL('http://example.org/?a=b')
|
||
|
assert_true("searchParams" in url)
|
||
|
var searchParams = url.searchParams
|
||
|
assert_true(url.searchParams === searchParams, 'Object identity should hold.')
|
||
|
}, 'URL.searchParams getter')
|
||
|
|
||
|
test(function() {
|
||
|
var url = bURL('http://example.org/?a=b')
|
||
|
assert_true("searchParams" in url)
|
||
|
var searchParams = url.searchParams
|
||
|
assert_equals(searchParams.toString(), 'a=b')
|
||
|
|
||
|
searchParams.set('a', 'b')
|
||
|
assert_equals(url.searchParams.toString(), 'a=b')
|
||
|
assert_equals(url.search, '?a=b')
|
||
|
url.search = ''
|
||
|
assert_equals(url.searchParams.toString(), '')
|
||
|
assert_equals(url.search, '')
|
||
|
assert_equals(searchParams.toString(), '')
|
||
|
}, 'URL.searchParams updating, clearing')
|
||
|
|
||
|
test(function() {
|
||
|
'use strict'
|
||
|
var urlString = 'http://example.org'
|
||
|
var url = bURL(urlString)
|
||
|
assert_throws(TypeError(), function() { url.searchParams = new URLSearchParams(urlString) })
|
||
|
}, 'URL.searchParams setter, invalid values')
|
||
|
|
||
|
test(function() {
|
||
|
var url = bURL('http://example.org/file?a=b&c=d')
|
||
|
assert_true("searchParams" in url)
|
||
|
var searchParams = url.searchParams
|
||
|
assert_equals(url.search, '?a=b&c=d')
|
||
|
assert_equals(searchParams.toString(), 'a=b&c=d')
|
||
|
|
||
|
// Test that setting 'search' propagates to the URL object's query object.
|
||
|
url.search = 'e=f&g=h'
|
||
|
assert_equals(url.search, '?e=f&g=h')
|
||
|
assert_equals(searchParams.toString(), 'e=f&g=h')
|
||
|
|
||
|
// ..and same but with a leading '?'.
|
||
|
url.search = '?e=f&g=h'
|
||
|
assert_equals(url.search, '?e=f&g=h')
|
||
|
assert_equals(searchParams.toString(), 'e=f&g=h')
|
||
|
|
||
|
// And in the other direction, altering searchParams propagates
|
||
|
// back to 'search'.
|
||
|
// searchParams.append('i', ' j ')
|
||
|
// assert_equals(url.search, '?e=f&g=h&i=+j+')
|
||
|
// assert_equals(url.searchParams.toString(), 'e=f&g=h&i=+j+')
|
||
|
// assert_equals(searchParams.get('i'), ' j ')
|
||
|
|
||
|
// searchParams.set('e', 'updated')
|
||
|
// assert_equals(url.search, '?e=updated&g=h&i=+j+')
|
||
|
// assert_equals(searchParams.get('e'), 'updated')
|
||
|
|
||
|
// var url2 = bURL('http://example.org/file??a=b&c=d')
|
||
|
// assert_equals(url2.search, '??a=b&c=d')
|
||
|
// assert_equals(url2.searchParams.toString(), '%3Fa=b&c=d')
|
||
|
|
||
|
// url2.href = 'http://example.org/file??a=b'
|
||
|
// assert_equals(url2.search, '??a=b')
|
||
|
// assert_equals(url2.searchParams.toString(), '%3Fa=b')
|
||
|
}, 'URL.searchParams and URL.search setters, update propagation')
|
||
|
}
|
||
|
runURLSearchParamTests()
|
||
|
runURLConstructorTests()
|
||
|
/* eslint-enable */
|