cdk-common 2.0.1260 → 2.0.1262

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. package/.jsii +2 -2
  2. package/lib/main.js +1 -1
  3. package/node_modules/fast-uri/.github/workflows/ci.yml +45 -2
  4. package/node_modules/fast-uri/.github/workflows/package-manager-ci.yml +5 -1
  5. package/node_modules/fast-uri/LICENSE +3 -1
  6. package/node_modules/fast-uri/README.md +37 -24
  7. package/node_modules/fast-uri/benchmark/benchmark.mjs +159 -0
  8. package/node_modules/fast-uri/benchmark/equal.mjs +51 -0
  9. package/node_modules/fast-uri/benchmark/non-simple-domain.mjs +22 -0
  10. package/node_modules/fast-uri/benchmark/package.json +17 -0
  11. package/node_modules/fast-uri/benchmark/string-array-to-hex-stripped.mjs +24 -0
  12. package/node_modules/fast-uri/benchmark/ws-is-secure.mjs +65 -0
  13. package/node_modules/fast-uri/index.js +95 -58
  14. package/node_modules/fast-uri/lib/schemes.js +160 -81
  15. package/node_modules/fast-uri/lib/utils.js +214 -122
  16. package/node_modules/fast-uri/package.json +7 -6
  17. package/node_modules/fast-uri/test/ajv.test.js +7 -3
  18. package/node_modules/fast-uri/test/equal.test.js +7 -2
  19. package/node_modules/fast-uri/test/fixtures/uri-js-parse.json +501 -0
  20. package/node_modules/fast-uri/test/fixtures/uri-js-serialize.json +120 -0
  21. package/node_modules/fast-uri/test/parse.test.js +31 -31
  22. package/node_modules/fast-uri/test/resolve.test.js +52 -49
  23. package/node_modules/fast-uri/test/rfc-3986.test.js +90 -0
  24. package/node_modules/fast-uri/test/serialize.test.js +55 -47
  25. package/node_modules/fast-uri/test/uri-js-compatibility.test.js +33 -0
  26. package/node_modules/fast-uri/test/uri-js.test.js +230 -230
  27. package/node_modules/fast-uri/test/util.test.js +23 -8
  28. package/node_modules/fast-uri/tsconfig.json +9 -0
  29. package/node_modules/fast-uri/types/index.d.ts +7 -0
  30. package/package.json +1 -1
  31. package/node_modules/fast-uri/benchmark.js +0 -105
  32. package/node_modules/fast-uri/lib/scopedChars.js +0 -30
  33. package/node_modules/fast-uri/test/.gitkeep +0 -0
  34. package/node_modules/fast-uri/test/compatibility.test.js +0 -131
@@ -1,13 +1,13 @@
1
1
  'use strict'
2
2
 
3
3
  const test = require('tape')
4
- const URI = require('../')
4
+ const fastURI = require('..')
5
5
 
6
6
  test('URI parse', (t) => {
7
7
  let components
8
8
 
9
9
  // scheme
10
- components = URI.parse('uri:')
10
+ components = fastURI.parse('uri:')
11
11
  t.equal(components.error, undefined, 'scheme errors')
12
12
  t.equal(components.scheme, 'uri', 'scheme')
13
13
  // t.equal(components.authority, undefined, "authority");
@@ -19,7 +19,7 @@ test('URI parse', (t) => {
19
19
  t.equal(components.fragment, undefined, 'fragment')
20
20
 
21
21
  // userinfo
22
- components = URI.parse('//@')
22
+ components = fastURI.parse('//@')
23
23
  t.equal(components.error, undefined, 'userinfo errors')
24
24
  t.equal(components.scheme, undefined, 'scheme')
25
25
  // t.equal(components.authority, "@", "authority");
@@ -31,7 +31,7 @@ test('URI parse', (t) => {
31
31
  t.equal(components.fragment, undefined, 'fragment')
32
32
 
33
33
  // host
34
- components = URI.parse('//')
34
+ components = fastURI.parse('//')
35
35
  t.equal(components.error, undefined, 'host errors')
36
36
  t.equal(components.scheme, undefined, 'scheme')
37
37
  // t.equal(components.authority, "", "authority");
@@ -43,7 +43,7 @@ test('URI parse', (t) => {
43
43
  t.equal(components.fragment, undefined, 'fragment')
44
44
 
45
45
  // port
46
- components = URI.parse('//:')
46
+ components = fastURI.parse('//:')
47
47
  t.equal(components.error, undefined, 'port errors')
48
48
  t.equal(components.scheme, undefined, 'scheme')
49
49
  // t.equal(components.authority, ":", "authority");
@@ -55,7 +55,7 @@ test('URI parse', (t) => {
55
55
  t.equal(components.fragment, undefined, 'fragment')
56
56
 
57
57
  // path
58
- components = URI.parse('')
58
+ components = fastURI.parse('')
59
59
  t.equal(components.error, undefined, 'path errors')
60
60
  t.equal(components.scheme, undefined, 'scheme')
61
61
  // t.equal(components.authority, undefined, "authority");
@@ -67,7 +67,7 @@ test('URI parse', (t) => {
67
67
  t.equal(components.fragment, undefined, 'fragment')
68
68
 
69
69
  // query
70
- components = URI.parse('?')
70
+ components = fastURI.parse('?')
71
71
  t.equal(components.error, undefined, 'query errors')
72
72
  t.equal(components.scheme, undefined, 'scheme')
73
73
  // t.equal(components.authority, undefined, "authority");
@@ -79,7 +79,7 @@ test('URI parse', (t) => {
79
79
  t.equal(components.fragment, undefined, 'fragment')
80
80
 
81
81
  // fragment
82
- components = URI.parse('#')
82
+ components = fastURI.parse('#')
83
83
  t.equal(components.error, undefined, 'fragment errors')
84
84
  t.equal(components.scheme, undefined, 'scheme')
85
85
  // t.equal(components.authority, undefined, "authority");
@@ -91,7 +91,7 @@ test('URI parse', (t) => {
91
91
  t.equal(components.fragment, '', 'fragment')
92
92
 
93
93
  // fragment with character tabulation
94
- components = URI.parse('#\t')
94
+ components = fastURI.parse('#\t')
95
95
  t.equal(components.error, undefined, 'path errors')
96
96
  t.equal(components.scheme, undefined, 'scheme')
97
97
  // t.equal(components.authority, undefined, "authority");
@@ -103,7 +103,7 @@ test('URI parse', (t) => {
103
103
  t.equal(components.fragment, '%09', 'fragment')
104
104
 
105
105
  // fragment with line feed
106
- components = URI.parse('#\n')
106
+ components = fastURI.parse('#\n')
107
107
  t.equal(components.error, undefined, 'path errors')
108
108
  t.equal(components.scheme, undefined, 'scheme')
109
109
  // t.equal(components.authority, undefined, "authority");
@@ -115,7 +115,7 @@ test('URI parse', (t) => {
115
115
  t.equal(components.fragment, '%0A', 'fragment')
116
116
 
117
117
  // fragment with line tabulation
118
- components = URI.parse('#\v')
118
+ components = fastURI.parse('#\v')
119
119
  t.equal(components.error, undefined, 'path errors')
120
120
  t.equal(components.scheme, undefined, 'scheme')
121
121
  // t.equal(components.authority, undefined, "authority");
@@ -127,7 +127,7 @@ test('URI parse', (t) => {
127
127
  t.equal(components.fragment, '%0B', 'fragment')
128
128
 
129
129
  // fragment with form feed
130
- components = URI.parse('#\f')
130
+ components = fastURI.parse('#\f')
131
131
  t.equal(components.error, undefined, 'path errors')
132
132
  t.equal(components.scheme, undefined, 'scheme')
133
133
  // t.equal(components.authority, undefined, "authority");
@@ -139,7 +139,7 @@ test('URI parse', (t) => {
139
139
  t.equal(components.fragment, '%0C', 'fragment')
140
140
 
141
141
  // fragment with carriage return
142
- components = URI.parse('#\r')
142
+ components = fastURI.parse('#\r')
143
143
  t.equal(components.error, undefined, 'path errors')
144
144
  t.equal(components.scheme, undefined, 'scheme')
145
145
  // t.equal(components.authority, undefined, "authority");
@@ -151,7 +151,7 @@ test('URI parse', (t) => {
151
151
  t.equal(components.fragment, '%0D', 'fragment')
152
152
 
153
153
  // all
154
- components = URI.parse('uri://user:pass@example.com:123/one/two.three?q1=a1&q2=a2#body')
154
+ components = fastURI.parse('uri://user:pass@example.com:123/one/two.three?q1=a1&q2=a2#body')
155
155
  t.equal(components.error, undefined, 'all errors')
156
156
  t.equal(components.scheme, 'uri', 'scheme')
157
157
  // t.equal(components.authority, "user:pass@example.com:123", "authority");
@@ -163,7 +163,7 @@ test('URI parse', (t) => {
163
163
  t.equal(components.fragment, 'body', 'fragment')
164
164
 
165
165
  // IPv4address
166
- components = URI.parse('//10.10.10.10')
166
+ components = fastURI.parse('//10.10.10.10')
167
167
  t.equal(components.error, undefined, 'IPv4address errors')
168
168
  t.equal(components.scheme, undefined, 'scheme')
169
169
  t.equal(components.userinfo, undefined, 'userinfo')
@@ -174,7 +174,7 @@ test('URI parse', (t) => {
174
174
  t.equal(components.fragment, undefined, 'fragment')
175
175
 
176
176
  // IPv4address with unformated 0 stay as-is
177
- components = URI.parse('//10.10.000.10') // not valid as per https://datatracker.ietf.org/doc/html/rfc5954#section-4.1
177
+ components = fastURI.parse('//10.10.000.10') // not valid as per https://datatracker.ietf.org/doc/html/rfc5954#section-4.1
178
178
  t.equal(components.error, undefined, 'IPv4address errors')
179
179
  t.equal(components.scheme, undefined, 'scheme')
180
180
  t.equal(components.userinfo, undefined, 'userinfo')
@@ -183,7 +183,7 @@ test('URI parse', (t) => {
183
183
  t.equal(components.path, '', 'path')
184
184
  t.equal(components.query, undefined, 'query')
185
185
  t.equal(components.fragment, undefined, 'fragment')
186
- components = URI.parse('//01.01.01.01') // not valid in URIs: https://datatracker.ietf.org/doc/html/rfc3986#section-7.4
186
+ components = fastURI.parse('//01.01.01.01') // not valid in URIs: https://datatracker.ietf.org/doc/html/rfc3986#section-7.4
187
187
  t.equal(components.error, undefined, 'IPv4address errors')
188
188
  t.equal(components.scheme, undefined, 'scheme')
189
189
  t.equal(components.userinfo, undefined, 'userinfo')
@@ -194,7 +194,7 @@ test('URI parse', (t) => {
194
194
  t.equal(components.fragment, undefined, 'fragment')
195
195
 
196
196
  // IPv6address
197
- components = URI.parse('//[2001:db8::7]')
197
+ components = fastURI.parse('//[2001:db8::7]')
198
198
  t.equal(components.error, undefined, 'IPv4address errors')
199
199
  t.equal(components.scheme, undefined, 'scheme')
200
200
  t.equal(components.userinfo, undefined, 'userinfo')
@@ -205,11 +205,11 @@ test('URI parse', (t) => {
205
205
  t.equal(components.fragment, undefined, 'fragment')
206
206
 
207
207
  // invalid IPv6
208
- components = URI.parse('//[2001:dbZ::7]')
208
+ components = fastURI.parse('//[2001:dbZ::7]')
209
209
  t.equal(components.host, '[2001:dbz::7]')
210
210
 
211
211
  // mixed IPv4address & IPv6address
212
- components = URI.parse('//[::ffff:129.144.52.38]')
212
+ components = fastURI.parse('//[::ffff:129.144.52.38]')
213
213
  t.equal(components.error, undefined, 'IPv4address errors')
214
214
  t.equal(components.scheme, undefined, 'scheme')
215
215
  t.equal(components.userinfo, undefined, 'userinfo')
@@ -220,7 +220,7 @@ test('URI parse', (t) => {
220
220
  t.equal(components.fragment, undefined, 'fragment')
221
221
 
222
222
  // mixed IPv4address & reg-name, example from terion-name (https://github.com/garycourt/uri-js/issues/4)
223
- components = URI.parse('uri://10.10.10.10.example.com/en/process')
223
+ components = fastURI.parse('uri://10.10.10.10.example.com/en/process')
224
224
  t.equal(components.error, undefined, 'mixed errors')
225
225
  t.equal(components.scheme, 'uri', 'scheme')
226
226
  t.equal(components.userinfo, undefined, 'userinfo')
@@ -231,7 +231,7 @@ test('URI parse', (t) => {
231
231
  t.equal(components.fragment, undefined, 'fragment')
232
232
 
233
233
  // IPv6address, example from bkw (https://github.com/garycourt/uri-js/pull/16)
234
- components = URI.parse('//[2606:2800:220:1:248:1893:25c8:1946]/test')
234
+ components = fastURI.parse('//[2606:2800:220:1:248:1893:25c8:1946]/test')
235
235
  t.equal(components.error, undefined, 'IPv6address errors')
236
236
  t.equal(components.scheme, undefined, 'scheme')
237
237
  t.equal(components.userinfo, undefined, 'userinfo')
@@ -242,7 +242,7 @@ test('URI parse', (t) => {
242
242
  t.equal(components.fragment, undefined, 'fragment')
243
243
 
244
244
  // IPv6address, example from RFC 5952
245
- components = URI.parse('//[2001:db8::1]:80')
245
+ components = fastURI.parse('//[2001:db8::1]:80')
246
246
  t.equal(components.error, undefined, 'IPv6address errors')
247
247
  t.equal(components.scheme, undefined, 'scheme')
248
248
  t.equal(components.userinfo, undefined, 'userinfo')
@@ -253,7 +253,7 @@ test('URI parse', (t) => {
253
253
  t.equal(components.fragment, undefined, 'fragment')
254
254
 
255
255
  // IPv6address with zone identifier, RFC 6874
256
- components = URI.parse('//[fe80::a%25en1]')
256
+ components = fastURI.parse('//[fe80::a%25en1]')
257
257
  t.equal(components.error, undefined, 'IPv4address errors')
258
258
  t.equal(components.scheme, undefined, 'scheme')
259
259
  t.equal(components.userinfo, undefined, 'userinfo')
@@ -264,7 +264,7 @@ test('URI parse', (t) => {
264
264
  t.equal(components.fragment, undefined, 'fragment')
265
265
 
266
266
  // IPv6address with an unescaped interface specifier, example from pekkanikander (https://github.com/garycourt/uri-js/pull/22)
267
- components = URI.parse('//[2001:db8::7%en0]')
267
+ components = fastURI.parse('//[2001:db8::7%en0]')
268
268
  t.equal(components.error, undefined, 'IPv6address interface errors')
269
269
  t.equal(components.scheme, undefined, 'scheme')
270
270
  t.equal(components.userinfo, undefined, 'userinfo')
@@ -275,7 +275,7 @@ test('URI parse', (t) => {
275
275
  t.equal(components.fragment, undefined, 'fragment')
276
276
 
277
277
  // UUID V1
278
- components = URI.parse('urn:uuid:b571b0bc-4713-11ec-81d3-0242ac130003')
278
+ components = fastURI.parse('urn:uuid:b571b0bc-4713-11ec-81d3-0242ac130003')
279
279
  t.equal(components.error, undefined, 'errors')
280
280
  t.equal(components.scheme, 'urn', 'scheme')
281
281
  // t.equal(components.authority, undefined, "authority");
@@ -290,13 +290,13 @@ test('URI parse', (t) => {
290
290
  t.equal(components.uuid, 'b571b0bc-4713-11ec-81d3-0242ac130003', 'uuid')
291
291
 
292
292
  // UUID v4
293
- components = URI.parse('urn:uuid:97a32222-89b7-420e-8507-4360723e2c2a')
293
+ components = fastURI.parse('urn:uuid:97a32222-89b7-420e-8507-4360723e2c2a')
294
294
  t.equal(components.uuid, '97a32222-89b7-420e-8507-4360723e2c2a', 'uuid')
295
295
 
296
- components = URI.parse('urn:uuid:notauuid-7dec-11d0-a765-00a0c91e6bf6')
296
+ components = fastURI.parse('urn:uuid:notauuid-7dec-11d0-a765-00a0c91e6bf6')
297
297
  t.notSame(components.error, undefined, 'errors')
298
298
 
299
- components = URI.parse('urn:foo:a123,456')
299
+ components = fastURI.parse('urn:foo:a123,456')
300
300
  t.equal(components.error, undefined, 'errors')
301
301
  t.equal(components.scheme, 'urn', 'scheme')
302
302
  // t.equal(components.authority, undefined, "authority");
@@ -309,10 +309,10 @@ test('URI parse', (t) => {
309
309
  t.equal(components.nid, 'foo', 'nid')
310
310
  t.equal(components.nss, 'a123,456', 'nss')
311
311
 
312
- components = URI.parse('//[2606:2800:220:1:248:1893:25c8:1946:43209]')
312
+ components = fastURI.parse('//[2606:2800:220:1:248:1893:25c8:1946:43209]')
313
313
  t.equal(components.host, '[2606:2800:220:1:248:1893:25c8:1946:43209]')
314
314
 
315
- components = URI.parse('urn:foo:|\\24fpl')
315
+ components = fastURI.parse('urn:foo:|\\24fpl')
316
316
  t.equal(components.error, 'URN can not be parsed.')
317
317
  t.end()
318
318
  })
@@ -1,61 +1,64 @@
1
1
  'use strict'
2
2
 
3
3
  const test = require('tape')
4
- const URI = require('../')
4
+ const fastURI = require('..')
5
5
 
6
6
  test('URI Resolving', (t) => {
7
7
  // normal examples from RFC 3986
8
8
  const base = 'uri://a/b/c/d;p?q'
9
- t.equal(URI.resolve(base, 'g:h'), 'g:h', 'g:h')
10
- t.equal(URI.resolve(base, 'g:h'), 'g:h', 'g:h')
11
- t.equal(URI.resolve(base, 'g'), 'uri://a/b/c/g', 'g')
12
- t.equal(URI.resolve(base, './g'), 'uri://a/b/c/g', './g')
13
- t.equal(URI.resolve(base, 'g/'), 'uri://a/b/c/g/', 'g/')
14
- t.equal(URI.resolve(base, '/g'), 'uri://a/g', '/g')
15
- t.equal(URI.resolve(base, '//g'), 'uri://g', '//g')
16
- t.equal(URI.resolve(base, '?y'), 'uri://a/b/c/d;p?y', '?y')
17
- t.equal(URI.resolve(base, 'g?y'), 'uri://a/b/c/g?y', 'g?y')
18
- t.equal(URI.resolve(base, '#s'), 'uri://a/b/c/d;p?q#s', '#s')
19
- t.equal(URI.resolve(base, 'g#s'), 'uri://a/b/c/g#s', 'g#s')
20
- t.equal(URI.resolve(base, 'g?y#s'), 'uri://a/b/c/g?y#s', 'g?y#s')
21
- t.equal(URI.resolve(base, ';x'), 'uri://a/b/c/;x', ';x')
22
- t.equal(URI.resolve(base, 'g;x'), 'uri://a/b/c/g;x', 'g;x')
23
- t.equal(URI.resolve(base, 'g;x?y#s'), 'uri://a/b/c/g;x?y#s', 'g;x?y#s')
24
- t.equal(URI.resolve(base, ''), 'uri://a/b/c/d;p?q', '')
25
- t.equal(URI.resolve(base, '.'), 'uri://a/b/c/', '.')
26
- t.equal(URI.resolve(base, './'), 'uri://a/b/c/', './')
27
- t.equal(URI.resolve(base, '..'), 'uri://a/b/', '..')
28
- t.equal(URI.resolve(base, '../'), 'uri://a/b/', '../')
29
- t.equal(URI.resolve(base, '../g'), 'uri://a/b/g', '../g')
30
- t.equal(URI.resolve(base, '../..'), 'uri://a/', '../..')
31
- t.equal(URI.resolve(base, '../../'), 'uri://a/', '../../')
32
- t.equal(URI.resolve(base, '../../g'), 'uri://a/g', '../../g')
9
+ t.equal(fastURI.resolve(base, 'g:h'), 'g:h', 'g:h')
10
+ t.equal(fastURI.resolve(base, 'g:h'), 'g:h', 'g:h')
11
+ t.equal(fastURI.resolve(base, 'g'), 'uri://a/b/c/g', 'g')
12
+ t.equal(fastURI.resolve(base, './g'), 'uri://a/b/c/g', './g')
13
+ t.equal(fastURI.resolve(base, 'g/'), 'uri://a/b/c/g/', 'g/')
14
+ t.equal(fastURI.resolve(base, '/g'), 'uri://a/g', '/g')
15
+ t.equal(fastURI.resolve(base, '//g'), 'uri://g', '//g')
16
+ t.equal(fastURI.resolve(base, '?y'), 'uri://a/b/c/d;p?y', '?y')
17
+ t.equal(fastURI.resolve(base, 'g?y'), 'uri://a/b/c/g?y', 'g?y')
18
+ t.equal(fastURI.resolve(base, '#s'), 'uri://a/b/c/d;p?q#s', '#s')
19
+ t.equal(fastURI.resolve(base, 'g#s'), 'uri://a/b/c/g#s', 'g#s')
20
+ t.equal(fastURI.resolve(base, 'g?y#s'), 'uri://a/b/c/g?y#s', 'g?y#s')
21
+ t.equal(fastURI.resolve(base, ';x'), 'uri://a/b/c/;x', ';x')
22
+ t.equal(fastURI.resolve(base, 'g;x'), 'uri://a/b/c/g;x', 'g;x')
23
+ t.equal(fastURI.resolve(base, 'g;x?y#s'), 'uri://a/b/c/g;x?y#s', 'g;x?y#s')
24
+ t.equal(fastURI.resolve(base, ''), 'uri://a/b/c/d;p?q', '')
25
+ t.equal(fastURI.resolve(base, '.'), 'uri://a/b/c/', '.')
26
+ t.equal(fastURI.resolve(base, './'), 'uri://a/b/c/', './')
27
+ t.equal(fastURI.resolve(base, '..'), 'uri://a/b/', '..')
28
+ t.equal(fastURI.resolve(base, '../'), 'uri://a/b/', '../')
29
+ t.equal(fastURI.resolve(base, '../g'), 'uri://a/b/g', '../g')
30
+ t.equal(fastURI.resolve(base, '../..'), 'uri://a/', '../..')
31
+ t.equal(fastURI.resolve(base, '../../'), 'uri://a/', '../../')
32
+ t.equal(fastURI.resolve(base, '../../g'), 'uri://a/g', '../../g')
33
33
 
34
34
  // abnormal examples from RFC 3986
35
- t.equal(URI.resolve(base, '../../../g'), 'uri://a/g', '../../../g')
36
- t.equal(URI.resolve(base, '../../../../g'), 'uri://a/g', '../../../../g')
35
+ t.equal(fastURI.resolve(base, '../../../g'), 'uri://a/g', '../../../g')
36
+ t.equal(fastURI.resolve(base, '../../../../g'), 'uri://a/g', '../../../../g')
37
37
 
38
- t.equal(URI.resolve(base, '/./g'), 'uri://a/g', '/./g')
39
- t.equal(URI.resolve(base, '/../g'), 'uri://a/g', '/../g')
40
- t.equal(URI.resolve(base, 'g.'), 'uri://a/b/c/g.', 'g.')
41
- t.equal(URI.resolve(base, '.g'), 'uri://a/b/c/.g', '.g')
42
- t.equal(URI.resolve(base, 'g..'), 'uri://a/b/c/g..', 'g..')
43
- t.equal(URI.resolve(base, '..g'), 'uri://a/b/c/..g', '..g')
38
+ t.equal(fastURI.resolve(base, '/./g'), 'uri://a/g', '/./g')
39
+ t.equal(fastURI.resolve(base, '/../g'), 'uri://a/g', '/../g')
40
+ t.equal(fastURI.resolve(base, 'g.'), 'uri://a/b/c/g.', 'g.')
41
+ t.equal(fastURI.resolve(base, '.g'), 'uri://a/b/c/.g', '.g')
42
+ t.equal(fastURI.resolve(base, 'g..'), 'uri://a/b/c/g..', 'g..')
43
+ t.equal(fastURI.resolve(base, '..g'), 'uri://a/b/c/..g', '..g')
44
44
 
45
- t.equal(URI.resolve(base, './../g'), 'uri://a/b/g', './../g')
46
- t.equal(URI.resolve(base, './g/.'), 'uri://a/b/c/g/', './g/.')
47
- t.equal(URI.resolve(base, 'g/./h'), 'uri://a/b/c/g/h', 'g/./h')
48
- t.equal(URI.resolve(base, 'g/../h'), 'uri://a/b/c/h', 'g/../h')
49
- t.equal(URI.resolve(base, 'g;x=1/./y'), 'uri://a/b/c/g;x=1/y', 'g;x=1/./y')
50
- t.equal(URI.resolve(base, 'g;x=1/../y'), 'uri://a/b/c/y', 'g;x=1/../y')
45
+ t.equal(fastURI.resolve(base, './../g'), 'uri://a/b/g', './../g')
46
+ t.equal(fastURI.resolve(base, './g/.'), 'uri://a/b/c/g/', './g/.')
47
+ t.equal(fastURI.resolve(base, 'g/./h'), 'uri://a/b/c/g/h', 'g/./h')
48
+ t.equal(fastURI.resolve(base, 'g/../h'), 'uri://a/b/c/h', 'g/../h')
49
+ t.equal(fastURI.resolve(base, 'g;x=1/./y'), 'uri://a/b/c/g;x=1/y', 'g;x=1/./y')
50
+ t.equal(fastURI.resolve(base, 'g;x=1/../y'), 'uri://a/b/c/y', 'g;x=1/../y')
51
51
 
52
- t.equal(URI.resolve(base, 'g?y/./x'), 'uri://a/b/c/g?y/./x', 'g?y/./x')
53
- t.equal(URI.resolve(base, 'g?y/../x'), 'uri://a/b/c/g?y/../x', 'g?y/../x')
54
- t.equal(URI.resolve(base, 'g#s/./x'), 'uri://a/b/c/g#s/./x', 'g#s/./x')
55
- t.equal(URI.resolve(base, 'g#s/../x'), 'uri://a/b/c/g#s/../x', 'g#s/../x')
52
+ t.equal(fastURI.resolve(base, 'g?y/./x'), 'uri://a/b/c/g?y/./x', 'g?y/./x')
53
+ t.equal(fastURI.resolve(base, 'g?y/../x'), 'uri://a/b/c/g?y/../x', 'g?y/../x')
54
+ t.equal(fastURI.resolve(base, 'g#s/./x'), 'uri://a/b/c/g#s/./x', 'g#s/./x')
55
+ t.equal(fastURI.resolve(base, 'g#s/../x'), 'uri://a/b/c/g#s/../x', 'g#s/../x')
56
56
 
57
- t.equal(URI.resolve(base, 'uri:g'), 'uri:g', 'uri:g')
58
- t.equal(URI.resolve(base, 'uri:g', { tolerant: true }), 'uri://a/b/c/g', 'uri:g')
57
+ t.equal(fastURI.resolve(base, 'uri:g'), 'uri:g', 'uri:g')
58
+ t.equal(fastURI.resolve(base, 'uri:g', {}), 'uri:g', 'uri:g')
59
+ t.equal(fastURI.resolve(base, 'uri:g', { tolerant: undefined }), 'uri:g', 'uri:g')
60
+ t.equal(fastURI.resolve(base, 'uri:g', { tolerant: false }), 'uri:g', 'uri:g')
61
+ t.equal(fastURI.resolve(base, 'uri:g', { tolerant: true }), 'uri://a/b/c/g', 'uri:g')
59
62
 
60
63
  // examples by PAEz
61
64
  // example was provided to avoid infinite loop within regex
@@ -67,9 +70,9 @@ test('URI Resolving', (t) => {
67
70
 
68
71
  test('URN Resolving', (t) => {
69
72
  // example from epoberezkin
70
- t.equal(URI.resolve('', 'urn:some:ip:prop'), 'urn:some:ip:prop', 'urn:some:ip:prop')
71
- t.equal(URI.resolve('#', 'urn:some:ip:prop'), 'urn:some:ip:prop', 'urn:some:ip:prop')
72
- t.equal(URI.resolve('urn:some:ip:prop', 'urn:some:ip:prop'), 'urn:some:ip:prop', 'urn:some:ip:prop')
73
- t.equal(URI.resolve('urn:some:other:prop', 'urn:some:ip:prop'), 'urn:some:ip:prop', 'urn:some:ip:prop')
73
+ t.equal(fastURI.resolve('', 'urn:some:ip:prop'), 'urn:some:ip:prop', 'urn:some:ip:prop')
74
+ t.equal(fastURI.resolve('#', 'urn:some:ip:prop'), 'urn:some:ip:prop', 'urn:some:ip:prop')
75
+ t.equal(fastURI.resolve('urn:some:ip:prop', 'urn:some:ip:prop'), 'urn:some:ip:prop', 'urn:some:ip:prop')
76
+ t.equal(fastURI.resolve('urn:some:other:prop', 'urn:some:ip:prop'), 'urn:some:ip:prop', 'urn:some:ip:prop')
74
77
  t.end()
75
78
  })
@@ -0,0 +1,90 @@
1
+ 'use strict'
2
+
3
+ const test = require('tape')
4
+ const fastURI = require('..')
5
+
6
+ test('RFC 3986', (t) => {
7
+ t.strictEqual(fastURI.serialize({ scheme: 'http', host: 'example.com', path: '/', secure: true }),
8
+ 'http://example.com/', 'http://example.com/')
9
+ t.strictEqual(fastURI.serialize({ scheme: 'http', host: 'example.com', path: '/foo', secure: true }),
10
+ 'http://example.com/foo', 'http://example.com/foo')
11
+
12
+ // A. If the input buffer begins with a prefix of "../" or "./",
13
+ // then remove that prefix from the input buffer; otherwise,
14
+
15
+ t.strictEqual(fastURI.serialize({ scheme: 'http', host: 'example.com', path: '../', secure: true }),
16
+ 'http://example.com/', 'http://example.com/')
17
+ t.strictEqual(fastURI.serialize({ scheme: 'http', host: 'example.com', path: './', secure: true }),
18
+ 'http://example.com/', 'http://example.com/')
19
+
20
+ t.strictEqual(fastURI.serialize({ scheme: 'http', host: 'example.com', path: '../../', secure: true }),
21
+ 'http://example.com/', 'http://example.com/')
22
+ t.strictEqual(fastURI.serialize({ scheme: 'http', host: 'example.com', path: '././', secure: true }),
23
+ 'http://example.com/', 'http://example.com/')
24
+
25
+ t.strictEqual(fastURI.serialize({ scheme: 'http', host: 'example.com', path: './../', secure: true }),
26
+ 'http://example.com/', 'http://example.com/')
27
+ t.strictEqual(fastURI.serialize({ scheme: 'http', host: 'example.com', path: '.././', secure: true }),
28
+ 'http://example.com/', 'http://example.com/')
29
+
30
+ t.strictEqual(fastURI.serialize({ scheme: 'http', host: 'example.com', path: '../foo', secure: true }),
31
+ 'http://example.com/foo', 'http://example.com/foo')
32
+ t.strictEqual(fastURI.serialize({ scheme: 'http', host: 'example.com', path: './foo', secure: true }),
33
+ 'http://example.com/foo', 'http://example.com/foo')
34
+
35
+ t.strictEqual(fastURI.serialize({ scheme: 'http', host: 'example.com', path: '../../foo', secure: true }),
36
+ 'http://example.com/foo', 'http://example.com/foo')
37
+ t.strictEqual(fastURI.serialize({ scheme: 'http', host: 'example.com', path: '././foo', secure: true }),
38
+ 'http://example.com/foo', 'http://example.com/foo')
39
+
40
+ t.strictEqual(fastURI.serialize({ scheme: 'http', host: 'example.com', path: './../foo', secure: true }),
41
+ 'http://example.com/foo', 'http://example.com/foo')
42
+ t.strictEqual(fastURI.serialize({ scheme: 'http', host: 'example.com', path: '.././foo', secure: true }),
43
+ 'http://example.com/foo', 'http://example.com/foo')
44
+
45
+ // B. if the input buffer begins with a prefix of "/./" or "/.",
46
+ // where "." is a complete path segment, then replace that
47
+ // prefix with "/" in the input buffer; otherwise,
48
+
49
+ t.strictEqual(fastURI.serialize({ scheme: 'http', host: 'example.com', path: '/./', secure: true }),
50
+ 'http://example.com/', 'http://example.com/')
51
+ t.strictEqual(fastURI.serialize({ scheme: 'http', host: 'example.com', path: '/.', secure: true }),
52
+ 'http://example.com/', 'http://example.com/')
53
+ t.strictEqual(fastURI.serialize({ scheme: 'http', host: 'example.com', path: '/./foo', secure: true }),
54
+ 'http://example.com/foo', 'http://example.com/foo')
55
+ t.strictEqual(fastURI.serialize({ scheme: 'http', host: 'example.com', path: '/.././foo', secure: true }),
56
+ 'http://example.com/foo', 'http://example.com/foo')
57
+
58
+ // C. if the input buffer begins with a prefix of "/../" or "/..",
59
+ // where ".." is a complete path segment, then replace that
60
+ // prefix with "/" in the input buffer and remove the last
61
+ // segment and its preceding "/" (if any) from the output
62
+ // buffer; otherwise,
63
+
64
+ t.strictEqual(fastURI.serialize({ scheme: 'http', host: 'example.com', path: '/../', secure: true }),
65
+ 'http://example.com/', 'http://example.com/')
66
+ t.strictEqual(fastURI.serialize({ scheme: 'http', host: 'example.com', path: '/..', secure: true }),
67
+ 'http://example.com/', 'http://example.com/')
68
+ t.strictEqual(fastURI.serialize({ scheme: 'http', host: 'example.com', path: '/../foo', secure: true }),
69
+ 'http://example.com/foo', 'http://example.com/foo')
70
+ t.strictEqual(fastURI.serialize({ scheme: 'http', host: 'example.com', path: '/foo/..', secure: true }),
71
+ 'http://example.com/', 'http://example.com/')
72
+ t.strictEqual(fastURI.serialize({ scheme: 'http', host: 'example.com', path: '/foo/bar/..', secure: true }),
73
+ 'http://example.com/foo/', 'http://example.com/foo/')
74
+ t.strictEqual(fastURI.serialize({ scheme: 'http', host: 'example.com', path: '/foo/../bar/..', secure: true }),
75
+ 'http://example.com/', 'http://example.com/')
76
+
77
+ // D. if the input buffer consists only of "." or "..", then remove
78
+ // that from the input buffer; otherwise,
79
+
80
+ t.strictEqual(fastURI.serialize({ scheme: 'http', host: 'example.com', path: '/.', secure: true }),
81
+ 'http://example.com/', 'http://example.com/')
82
+ t.strictEqual(fastURI.serialize({ scheme: 'http', host: 'example.com', path: '/..', secure: true }),
83
+ 'http://example.com/', 'http://example.com/')
84
+ t.strictEqual(fastURI.serialize({ scheme: 'http', host: 'example.com', path: '.', secure: true }),
85
+ 'http://example.com/', 'http://example.com/')
86
+ t.strictEqual(fastURI.serialize({ scheme: 'http', host: 'example.com', path: '..', secure: true }),
87
+ 'http://example.com/', 'http://example.com/')
88
+
89
+ t.end()
90
+ })