-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
url: extend url.format to support WHATWG URL
Removes the non-standard options on WHATWG URL toString and extends the existing url.format() API to support customizable serialization of the WHATWG URL object. This does not yet include the documentation updates because the documentation for the new WHATWG URL object has not yet landed. Example: ```js const url = require('url'); const URL = url.URL; const myURL = new URL('http://example.org/?a=b#c'); const str = url.format(myURL, {fragment: false, search: false}); console.log(str); // Prints: http://example.org/ ``` PR-URL: #10857 Reviewed-By: Joyee Cheung <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Timothy Gu <[email protected]> Reviewed-By: Brian White <[email protected]>
- Loading branch information
1 parent
fb2a3fd
commit 556c287
Showing
3 changed files
with
142 additions
and
37 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
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
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,102 @@ | ||
'use strict'; | ||
|
||
require('../common'); | ||
const assert = require('assert'); | ||
const url = require('url'); | ||
const URL = url.URL; | ||
|
||
const myURL = new URL('http://xn--lck1c3crb1723bpq4a.com/a?a=b#c'); | ||
|
||
assert.strictEqual( | ||
url.format(myURL), | ||
'http://xn--lck1c3crb1723bpq4a.com/a?a=b#c' | ||
); | ||
|
||
assert.strictEqual( | ||
url.format(myURL, {}), | ||
'http://xn--lck1c3crb1723bpq4a.com/a?a=b#c' | ||
); | ||
|
||
const errreg = /^TypeError: options must be an object$/; | ||
assert.throws(() => url.format(myURL, true), errreg); | ||
assert.throws(() => url.format(myURL, 1), errreg); | ||
assert.throws(() => url.format(myURL, 'test'), errreg); | ||
assert.throws(() => url.format(myURL, Infinity), errreg); | ||
|
||
// Any falsy value other than undefined will be treated as false. | ||
// Any truthy value will be treated as true. | ||
|
||
assert.strictEqual( | ||
url.format(myURL, {fragment: false}), | ||
'http://xn--lck1c3crb1723bpq4a.com/a?a=b' | ||
); | ||
|
||
assert.strictEqual( | ||
url.format(myURL, {fragment: ''}), | ||
'http://xn--lck1c3crb1723bpq4a.com/a?a=b' | ||
); | ||
|
||
assert.strictEqual( | ||
url.format(myURL, {fragment: 0}), | ||
'http://xn--lck1c3crb1723bpq4a.com/a?a=b' | ||
); | ||
|
||
assert.strictEqual( | ||
url.format(myURL, {fragment: 1}), | ||
'http://xn--lck1c3crb1723bpq4a.com/a?a=b#c' | ||
); | ||
|
||
assert.strictEqual( | ||
url.format(myURL, {fragment: {}}), | ||
'http://xn--lck1c3crb1723bpq4a.com/a?a=b#c' | ||
); | ||
|
||
assert.strictEqual( | ||
url.format(myURL, {search: false}), | ||
'http://xn--lck1c3crb1723bpq4a.com/a#c' | ||
); | ||
|
||
assert.strictEqual( | ||
url.format(myURL, {search: ''}), | ||
'http://xn--lck1c3crb1723bpq4a.com/a#c' | ||
); | ||
|
||
assert.strictEqual( | ||
url.format(myURL, {search: 0}), | ||
'http://xn--lck1c3crb1723bpq4a.com/a#c' | ||
); | ||
|
||
assert.strictEqual( | ||
url.format(myURL, {search: 1}), | ||
'http://xn--lck1c3crb1723bpq4a.com/a?a=b#c' | ||
); | ||
|
||
assert.strictEqual( | ||
url.format(myURL, {search: {}}), | ||
'http://xn--lck1c3crb1723bpq4a.com/a?a=b#c' | ||
); | ||
|
||
assert.strictEqual( | ||
url.format(myURL, {unicode: true}), | ||
'http://理容ナカムラ.com/a?a=b#c' | ||
); | ||
|
||
assert.strictEqual( | ||
url.format(myURL, {unicode: 1}), | ||
'http://理容ナカムラ.com/a?a=b#c' | ||
); | ||
|
||
assert.strictEqual( | ||
url.format(myURL, {unicode: {}}), | ||
'http://理容ナカムラ.com/a?a=b#c' | ||
); | ||
|
||
assert.strictEqual( | ||
url.format(myURL, {unicode: false}), | ||
'http://xn--lck1c3crb1723bpq4a.com/a?a=b#c' | ||
); | ||
|
||
assert.strictEqual( | ||
url.format(myURL, {unicode: 0}), | ||
'http://xn--lck1c3crb1723bpq4a.com/a?a=b#c' | ||
); |