forked from unshiftio/url-parse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.js
More file actions
686 lines (520 loc) · 21.1 KB
/
test.js
File metadata and controls
686 lines (520 loc) · 21.1 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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
describe('url-parse', function () {
'use strict';
var assume = require('assume')
, parse = require('./');
it('exposes parse as a function', function () {
assume(parse).is.a('function');
});
it('exposes the querystring module', function () {
assume(parse.qs).equals(require('querystringify'));
});
it('exposes the location function', function () {
assume(parse.location).equals(require('./lolcation'));
});
it('exposes the extractProtocol function', function () {
assume(parse.extractProtocol).is.a('function');
});
describe('extractProtocol', function () {
it('extracts the protocol data', function () {
assume(parse.extractProtocol('')).eql({
slashes: false,
protocol: '',
rest: ''
});
});
it('does not truncate the input string', function () {
var input = 'foo\nbar\rbaz\u2028qux\u2029';
assume(parse.extractProtocol(input)).eql({
slashes: false,
protocol: '',
rest: input
});
});
});
it('parses the query string into an object', function () {
var url = 'http://google.com/?foo=bar'
, data = parse(url, true);
assume(data.query).is.a('object');
assume(data.query.foo).equals('bar');
url = 'http://google.com/';
data = parse(url, true);
assume(data.query).is.a('object');
assume(data.query).is.empty();
});
it('does not add question mark to href if query string is empty', function () {
var url = 'http://google.com/'
, data = parse(url, true);
assume(data.href).equals(url);
});
it('allows a custom function as parser', function () {
var url = 'http://google.com/?foo=bar'
, data = parse(url, function () { return '1337'; });
assume(data.query).equals('1337');
});
it('allows a custom stringify function', function () {
var url = 'http://google.com/?foo=bar'
, data = parse(url, true)
, str;
str = data.toString(function () { return 'lolcakes'; });
assume(str).equals('http://google.com/?lolcakes');
});
it('allows a custom location object', function () {
var url = '/foo?foo=bar'
, data = parse(url, parse('http://google.com'));
assume(data.href).equals('http://google.com/foo?foo=bar');
});
it('is blob: location aware', function () {
var blob = {
'href': 'blob:https%3A//gist.github.com/3f272586-6dac-4e29-92d0-f674f2dde618',
'pathname': 'https%3A//gist.github.com/3f272586-6dac-4e29-92d0-f674f2dde618',
'origin': 'https://gist.github.com',
'protocol': 'blob:',
'hostname': '',
'search': '',
'hash': '',
'host': '',
'port': ''
};
var url = '/unshiftio/url-parse'
, data = parse(url, blob);
assume(data.href).equals('https://gist.github.com/unshiftio/url-parse');
});
it('can parse complex urls multiple times without errors', function () {
var url = 'https://www.mozilla.org/en-US/firefox/34.0/whatsnew/?oldversion=33.1';
for (var i = 0; i < 100; i++) {
parse(url);
}
});
it('converts hostname to lowercase', function () {
var url = 'HTTP://fOo.eXaMPle.com';
assume(parse(url).hostname).equals('foo.example.com');
});
it('does not lowercase the path', function () {
var url = 'HTTP://X.COM/Y/Z';
assume(parse(url).pathname).equals('/Y/Z');
});
it('removes default port numbers', function () {
var url = 'http://example.com:80'
, parsed = parse(url);
assume(parsed.port).equals('');
assume(parsed.host).equals('example.com');
assume(parsed.hostname).equals('example.com');
assume(parsed.href).equals('http://example.com');
});
it('understands an / as pathname', function () {
var url = 'http://example.com:80/'
, parsed = parse(url);
assume(parsed.port).equals('');
assume(parsed.username).equals('');
assume(parsed.password).equals('');
assume(parsed.pathname).equals('/');
assume(parsed.host).equals('example.com');
assume(parsed.hostname).equals('example.com');
assume(parsed.href).equals('http://example.com/');
});
it('does not care about spaces', function () {
var url = 'http://x.com/path?that\'s#all, folks'
, parsed = parse(url);
assume(parsed.port).equals('');
assume(parsed.username).equals('');
assume(parsed.password).equals('');
assume(parsed.pathname).equals('/path');
assume(parsed.hash).equal('#all, folks');
assume(parsed.query).equal('?that\'s');
assume(parsed.host).equals('x.com');
assume(parsed.hostname).equals('x.com');
});
it('accepts + in the url', function () {
var url = 'http://x.y.com+a/b/c'
, parsed = parse(url);
assume(parsed.protocol).equals('http:');
assume(parsed.host).equals('x.y.com+a');
assume(parsed.hostname).equals('x.y.com+a');
assume(parsed.pathname).equals('/b/c');
});
describe('origin', function () {
it('generates an origin property', function () {
var url = 'http://google.com:80/pathname'
, parsed = parse(url);
assume(parsed.origin).equals('http://google.com');
});
it('is lowercased', function () {
var url = 'HTTP://gOogle.cOm:80/pathname'
, parsed = parse(url);
assume(parsed.origin).equals('http://google.com');
});
it('sets null if no hostname is specified', function () {
var url = 'http://'
, parsed = parse(url, {});
assume(parsed.origin).equals('null');
});
it('removes default ports for http', function () {
var o = parse('http://google.com:80/pathname');
assume(o.origin).equals('http://google.com');
o = parse('http://google.com:80');
assume(o.origin).equals('http://google.com');
o = parse('http://google.com');
assume(o.origin).equals('http://google.com');
o = parse('https://google.com:443/pathname');
assume(o.origin).equals('https://google.com');
o = parse('http://google.com:443/pathname');
assume(o.origin).equals('http://google.com:443');
o = parse('https://google.com:80/pathname');
assume(o.origin).equals('https://google.com:80');
});
it('handles file:// based urls as null', function () {
var o = parse('file://google.com/pathname');
assume(o.origin).equals('null');
});
it('removes default ports for ws', function () {
var o = parse('ws://google.com:80/pathname');
assume(o.origin).equals('ws://google.com');
o = parse('wss://google.com:443/pathname');
assume(o.origin).equals('wss://google.com');
o = parse('ws://google.com:443/pathname');
assume(o.origin).equals('ws://google.com:443');
o = parse('wss://google.com:80/pathname');
assume(o.origin).equals('wss://google.com:80');
});
});
describe('protocol', function () {
it('extracts the right protocol from a url', function () {
var testData = [
{ url: 'http://example.com', protocol: 'http:' },
{ url: 'mailto:test@example.com', protocol: 'mailto:' },
{ url: 'data:text/html,%3Ch1%3EHello%2C%20World!%3C%2Fh1%3E', protocol: 'data:' },
{ url: 'sip:alice@atlanta.com', protocol: 'sip:' }
];
var data;
for (var i = 0, len = testData.length; i < len; ++i) {
data = testData[i];
assume(parse(data.url).protocol).equals(data.protocol);
}
});
it('converts protocol to lowercase', function () {
var url = 'HTTP://example.com';
assume(parse(url).protocol).equals('http:');
});
it('correctly adds ":" to protocol in final url string', function () {
var data = parse('google.com/foo');
data.set('protocol', 'https');
assume(data.href).equals('https://google.com/foo');
data = parse('https://google.com/foo');
data.protocol = 'http';
assume(data.toString()).equals('http://google.com/foo');
data = parse('http://google.com/foo');
data.set('protocol', 'https:');
assume(data.href).equals('https://google.com/foo');
});
});
describe('ip', function () {
// coap://
//
it('parses ipv6', function () {
var url = 'http://[1080:0:0:0:8:800:200C:417A]:61616/foo/bar?q=z'
, parsed = parse(url);
assume(parsed.port).equals('61616');
assume(parsed.query).equals('?q=z');
assume(parsed.protocol).equals('http:');
assume(parsed.hostname).equals('[1080:0:0:0:8:800:200c:417a]');
assume(parsed.pathname).equals('/foo/bar');
assume(parsed.href).equals('http://[1080:0:0:0:8:800:200c:417a]:61616/foo/bar?q=z');
});
it('parses ipv6 with auth', function () {
var url = 'http://user:password@[3ffe:2a00:100:7031::1]:8080'
, parsed = parse(url);
assume(parsed.username).equals('user');
assume(parsed.password).equals('password');
assume(parsed.host).equals('[3ffe:2a00:100:7031::1]:8080');
assume(parsed.hostname).equals('[3ffe:2a00:100:7031::1]');
assume(parsed.href).equals(url);
});
it('parses ipv4', function () {
var url = 'http://222.148.142.13:61616/foo/bar?q=z'
, parsed = parse(url);
assume(parsed.port).equals('61616');
assume(parsed.query).equals('?q=z');
assume(parsed.protocol).equals('http:');
assume(parsed.hostname).equals('222.148.142.13');
assume(parsed.pathname).equals('/foo/bar');
assume(parsed.href).equals(url);
});
});
describe('auth', function () {
it('does not lowercase the USER:PASS', function () {
var url = 'HTTP://USER:PASS@EXAMPLE.COM'
, parsed = parse(url);
assume(parsed.username).equals('USER');
assume(parsed.password).equals('PASS');
assume(parsed.protocol).equals('http:');
assume(parsed.host).equals('example.com');
assume(parsed.hostname).equals('example.com');
});
it('accepts @ in pathnames', function () {
var url = 'http://mt0.google.com/vt/lyrs=m@114&hl=en&src=api&x=2&y=2&z=3&s='
, parsed = parse(url);
assume(parsed.pathname).equals('/vt/lyrs=m@114&hl=en&src=api&x=2&y=2&z=3&s=');
assume(parsed.username).equals('');
assume(parsed.password).equals('');
});
it('does not require passwords for auth', function () {
var url = 'http://user@www.example.com/'
, parsed = parse(url);
assume(parsed.password).equals('');
assume(parsed.pathname).equals('/');
assume(parsed.username).equals('user');
assume(parsed.protocol).equals('http:');
assume(parsed.hostname).equals('www.example.com');
assume(parsed.href).equals(url);
});
});
it('accepts multiple ???', function () {
var url = 'http://mt0.google.com/vt/lyrs=m@114???&hl=en&src=api&x=2&y=2&z=3&s=';
assume(parse(url).query).equals('???&hl=en&src=api&x=2&y=2&z=3&s=');
});
it('accepts a string as source argument', function () {
var data = parse('/foo', 'http://sub.example.com/bar?foo=bar#hash');
assume(data.port).equals('');
assume(data.host).equals('sub.example.com');
assume(data.href).equals('http://sub.example.com/foo');
});
describe('inheritance', function () {
it('does not inherit port numbers for non relative urls', function () {
var data = parse('http://localhost', parse('http://sub.example.com:808/'));
assume(data.port).equals('');
assume(data.host).equals('localhost');
assume(data.href).equals('http://localhost');
});
it('inherits port numbers for relative urls', function () {
var data = parse('/foo', parse('http://sub.example.com:808/'));
assume(data.port).equals('808');
assume(data.hostname).equals('sub.example.com');
assume(data.host).equals('sub.example.com:808');
assume(data.href).equals('http://sub.example.com:808/foo');
});
it('inherits slashes for relative urls', function () {
var data = parse('/foo', {
hash: '',
host: 'example.com',
hostname: 'example.com',
href: 'http://example.com/',
origin: 'http://example.com',
password: '',
pathname: '/',
port: '',
protocol: 'http:',
search: ''
});
assume(data.slashes).equals(true);
assume(data.href).equals('http://example.com/foo');
data = parse('/foo', {
auth: null,
hash: null,
host: 'example.com',
hostname: 'example.com',
href: 'http://example.com/',
path: '/',
pathname: '/',
port: null,
protocol: 'http:',
query: null,
search: null,
slashes: true
});
assume(data.slashes).equals(true);
assume(data.href).equals('http://example.com/foo');
});
it('inherits protocol for relative protocols', function () {
var data = parse('//foo.com/foo', parse('http://sub.example.com:808/'));
assume(data.port).equals('');
assume(data.host).equals('foo.com');
assume(data.protocol).equals('http:');
assume(data.href).equals('http://foo.com/foo');
});
it('does not inherit pathnames from the source', function () {
var data = parse('http://localhost', parse('http://foo:bar@sub.example.com/bar?foo=bar#hash'));
assume(data.port).equals('');
assume(data.host).equals('localhost');
assume(data.href).equals('http://localhost');
});
it('does not inherit hashes and query strings from source object', function () {
var data = parse('/foo', parse('http://sub.example.com/bar?foo=bar#hash'));
assume(data.port).equals('');
assume(data.host).equals('sub.example.com');
assume(data.href).equals('http://sub.example.com/foo');
});
it('does not inherit auth from source object', function () {
var from = parse('http://foo:bar@sub.example.com')
, data = parse('/foo', from);
assume(data.port).equals('');
assume(data.username).equals('');
assume(data.password).equals('');
assume(data.host).equals('sub.example.com');
assume(data.href).equals('http://sub.example.com/foo');
});
});
describe('#set', function () {
it('correctly updates the host when setting port', function () {
var data = parse('http://google.com/foo');
assume(data.set('port', 8080)).equals(data);
assume(data.host).equals('google.com:8080');
assume(data.href).equals('http://google.com:8080/foo');
});
it('correctly updates the host when setting port (IPv6)', function () {
var data = parse('http://[7886:3423::1233]/foo');
assume(data.set('port', 8080)).equals(data);
assume(data.host).equals('[7886:3423::1233]:8080');
assume(data.href).equals('http://[7886:3423::1233]:8080/foo');
});
it('removes querystring and hash', function () {
var data = parse('https://thisanurl.com/?swag=yolo#representing');
data.set('query', '');
data.set('hash', '');
assume(data.href).equals('https://thisanurl.com/');
});
it('only sets port when its not default', function () {
var data = parse('http://google.com/foo');
assume(data.set('port', 80)).equals(data);
assume(data.host).equals('google.com');
assume(data.href).equals('http://google.com/foo');
assume(data.set('port', 443)).equals(data);
assume(data.host).equals('google.com:443');
assume(data.href).equals('http://google.com:443/foo');
});
it('only sets port when its not default (IPv6)', function () {
var data = parse('http://[7886:3423::1233]/foo');
assume(data.set('port', 80)).equals(data);
assume(data.host).equals('[7886:3423::1233]');
assume(data.href).equals('http://[7886:3423::1233]/foo');
assume(data.set('port', 443)).equals(data);
assume(data.host).equals('[7886:3423::1233]:443');
assume(data.href).equals('http://[7886:3423::1233]:443/foo');
});
it('updates query with object', function () {
var data = parse('http://google.com/?foo=bar');
assume(data.set('query', { bar: 'foo' })).equals(data);
assume(data.query.foo).equals(undefined);
assume(data.query.bar).equals('foo');
assume(data.href).equals('http://google.com/?bar=foo');
});
it('updates query with a string', function () {
var data = parse('http://google.com/?foo=bar');
assume(data.set('query', 'bar=foo')).equals(data);
assume(data.query.foo).equals(undefined);
assume(data.query.bar).equals('foo');
assume(data.href).equals('http://google.com/?bar=foo');
assume(data.set('query', '?baz=foo')).equals(data);
assume(data.query.bar).equals(undefined);
assume(data.query.baz).equals('foo');
assume(data.href).equals('http://google.com/?baz=foo');
});
it('allows custom parser when updating query', function() {
var data = parse('http://google.com/?foo=bar');
assume(data.set('query', 'bar=foo', function () { return '1337'; })).equals(data);
assume(data.query).equals('1337');
assume(data.href).equals('http://google.com/?1337');
});
it('throws error when updating query, if custom parser is not a function', function() {
var data = parse('http://google.com/?foo=bar');
assume(function () {
data.set('query', 'bar=foo', '1337');
}).throws(Error);
//
// `data` is unchanged.
//
assume(data.href).equals('http://google.com/?foo=bar');
});
it('updates the port when updating host', function () {
var data = parse('http://google.com/?foo=bar');
assume(data.set('host', 'yahoo.com:808')).equals(data);
assume(data.hostname).equals('yahoo.com');
assume(data.host).equals('yahoo.com:808');
assume(data.port).equals('808');
assume(data.href).equals('http://yahoo.com:808/?foo=bar');
});
it('updates the port when updating host (IPv6)', function () {
var data = parse('http://google.com/?foo=bar');
assume(data.set('host', '[56h7::1]:808')).equals(data);
assume(data.hostname).equals('[56h7::1]');
assume(data.host).equals('[56h7::1]:808');
assume(data.port).equals('808');
assume(data.href).equals('http://[56h7::1]:808/?foo=bar');
});
it('unsets the port when port is missing (IPv6)', function () {
var data = parse('http://google.com/?foo=bar');
assume(data.set('host', '[56h7::1]')).equals(data);
assume(data.hostname).equals('[56h7::1]');
assume(data.host).equals('[56h7::1]');
assume(data.port).equals('');
assume(data.href).equals('http://[56h7::1]/?foo=bar');
});
it('unsets the port when the port is missing from host', function () {
var data = parse('http://google.com:8000/?foo=bar');
assume(data.set('host', 'yahoo.com')).equals(data);
assume(data.hostname).equals('yahoo.com');
assume(data.host).equals('yahoo.com');
assume(data.port).equals('');
assume(data.href).equals('http://yahoo.com/?foo=bar');
});
it('updates the host when updating hostname', function () {
var data = parse('http://google.com:808/?foo=bar');
assume(data.set('hostname', 'yahoo.com')).equals(data);
assume(data.hostname).equals('yahoo.com');
assume(data.host).equals('yahoo.com:808');
assume(data.port).equals('808');
assume(data.href).equals('http://yahoo.com:808/?foo=bar');
});
it('updates slashes when updating protocol', function() {
var data = parse('sip:alice@atlanta.com');
assume(data.set('protocol', 'https')).equals(data);
assume(data.href).equals('https://alice@atlanta.com');
assume(data.set('protocol', 'mailto', true)).equals(data);
assume(data.href).equals('mailto:alice@atlanta.com');
});
it('updates other values', function () {
var data = parse('http://google.com/?foo=bar');
assume(data.set('protocol', 'https:')).equals(data);
assume(data.protocol).equals('https:');
assume(data.href).equals('https://google.com/?foo=bar');
});
it('lowercases the required values', function () {
var data = parse('http://google.com/?foo=bar');
data.set('protocol', 'HTTPS:');
assume(data.protocol).equals('https:');
assume(data.href).equals('https://google.com/?foo=bar');
data.set('host', 'GOOGLE.LOL');
assume(data.host).equals('google.lol');
assume(data.href).equals('https://google.lol/?foo=bar');
data.set('hostname', 'YAhOo.COm');
assume(data.hostname).equals('yahoo.com');
assume(data.href).equals('https://yahoo.com/?foo=bar');
});
it('correctly updates the origin when host/protocol/port changes', function () {
var data = parse('http://google.com/?foo=bar');
data.set('protocol', 'HTTPS:');
assume(data.protocol).equals('https:');
assume(data.origin).equals('https://google.com');
data.set('port', '1337');
assume(data.port).equals('1337');
assume(data.origin).equals('https://google.com:1337');
data.set('protocol', 'file:');
assume(data.protocol).equals('file:');
assume(data.origin).equals('null');
});
});
describe('fuzzy', function () {
var fuzz = require('./fuzzy')
, times = 10;
for (var i = 0; i < times; i++) {
(function (spec) {
it('parses: '+ spec.href, function () {
var url = parse(spec.href)
, prop;
for (prop in spec) {
assume(url[prop]).equals(spec[prop]);
}
});
})(fuzz());
}
});
});