-
-
Notifications
You must be signed in to change notification settings - Fork 35.5k
Expand file tree
/
Copy pathtest-url-format-whatwg.js
More file actions
159 lines (130 loc) · 4.09 KB
/
test-url-format-whatwg.js
File metadata and controls
159 lines (130 loc) · 4.09 KB
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
148
149
150
151
152
153
154
155
156
157
158
159
'use strict';
const { hasIntl } = require('../common');
const assert = require('node:assert');
const url = require('node:url');
const { test } = require('node:test');
const myURL = new URL('http://user:[email protected]/a?a=b#c');
test('should format', { skip: !hasIntl }, () => {
assert.strictEqual(
url.format(myURL),
'http://user:[email protected]/a?a=b#c'
);
assert.strictEqual(
url.format(myURL, {}),
'http://user:[email protected]/a?a=b#c'
);
});
test('handle invalid arguments', { skip: !hasIntl }, () => {
for (const value of [true, 1, 'test', Infinity]) {
assert.throws(
() => url.format(myURL, value),
{
code: 'ERR_INVALID_ARG_TYPE',
name: 'TypeError',
}
);
}
});
test('any falsy value other than undefined will be treated as false', { skip: !hasIntl }, () => {
assert.strictEqual(
url.format(myURL, { auth: false }),
'http://xn--lck1c3crb1723bpq4a.com/a?a=b#c'
);
assert.strictEqual(
url.format(myURL, { auth: '' }),
'http://xn--lck1c3crb1723bpq4a.com/a?a=b#c'
);
assert.strictEqual(
url.format(myURL, { auth: 0 }),
'http://xn--lck1c3crb1723bpq4a.com/a?a=b#c'
);
assert.strictEqual(
url.format(myURL, { auth: 1 }),
'http://user:[email protected]/a?a=b#c'
);
assert.strictEqual(
url.format(myURL, { auth: {} }),
'http://user:[email protected]/a?a=b#c'
);
assert.strictEqual(
url.format(myURL, { fragment: false }),
'http://user:[email protected]/a?a=b'
);
assert.strictEqual(
url.format(myURL, { fragment: '' }),
'http://user:[email protected]/a?a=b'
);
assert.strictEqual(
url.format(myURL, { fragment: 0 }),
'http://user:[email protected]/a?a=b'
);
assert.strictEqual(
url.format(myURL, { fragment: 1 }),
'http://user:[email protected]/a?a=b#c'
);
assert.strictEqual(
url.format(myURL, { fragment: {} }),
'http://user:[email protected]/a?a=b#c'
);
assert.strictEqual(
url.format(myURL, { search: false }),
'http://user:[email protected]/a#c'
);
assert.strictEqual(
url.format(myURL, { search: '' }),
'http://user:[email protected]/a#c'
);
assert.strictEqual(
url.format(myURL, { search: 0 }),
'http://user:[email protected]/a#c'
);
assert.strictEqual(
url.format(myURL, { search: 1 }),
'http://user:[email protected]/a?a=b#c'
);
assert.strictEqual(
url.format(myURL, { search: {} }),
'http://user:[email protected]/a?a=b#c'
);
assert.strictEqual(
url.format(myURL, { unicode: true }),
'http://user:pass@理容ナカムラ.com/a?a=b#c'
);
assert.strictEqual(
url.format(myURL, { unicode: 1 }),
'http://user:pass@理容ナカムラ.com/a?a=b#c'
);
assert.strictEqual(
url.format(myURL, { unicode: {} }),
'http://user:pass@理容ナカムラ.com/a?a=b#c'
);
assert.strictEqual(
url.format(myURL, { unicode: false }),
'http://user:[email protected]/a?a=b#c'
);
assert.strictEqual(
url.format(myURL, { unicode: 0 }),
'http://user:[email protected]/a?a=b#c'
);
});
test('should format with unicode: true', { skip: !hasIntl }, () => {
assert.strictEqual(
url.format(new URL('http://user:[email protected]:8080/path'), { unicode: true }),
'http://user:pass@测试.com:8080/path'
);
});
test('should format tel: prefix', { skip: !hasIntl }, () => {
assert.strictEqual(
url.format(new URL('tel:123')),
url.format(new URL('tel:123'), { unicode: true })
);
});
// Regression test: url.format should not crash on URLs that ada::url_aggregator
// can parse but ada::url cannot (e.g. special scheme URLs with opaque paths).
test('should not crash on URLs with invalid IDN hostnames', () => {
const u = new URL('ws:xn-\u022B');
// doesNotThrow
url.format(u, { fragment: false, unicode: false, auth: false, search: false });
// Same problem with re-parsing
url.port = 80;
});