forked from zendframework/zend-diactoros
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUriTest.php
503 lines (449 loc) · 16.1 KB
/
UriTest.php
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
<?php
/**
* Zend Framework (http://framework.zend.com/)
*
* @see http://github.com/zendframework/zend-diactoros for the canonical source repository
* @copyright Copyright (c) 2015 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-diactoros/blob/master/LICENSE.md New BSD License
*/
namespace ZendTest\Diactoros;
use PHPUnit_Framework_TestCase as TestCase;
use Zend\Diactoros\Uri;
class UriTest extends TestCase
{
public function testConstructorSetsAllProperties()
{
$uri = new Uri('https://user:[email protected]:3001/foo?bar=baz#quz');
$this->assertEquals('https', $uri->getScheme());
$this->assertEquals('user:pass', $uri->getUserInfo());
$this->assertEquals('local.example.com', $uri->getHost());
$this->assertEquals(3001, $uri->getPort());
$this->assertEquals('user:[email protected]:3001', $uri->getAuthority());
$this->assertEquals('/foo', $uri->getPath());
$this->assertEquals('bar=baz', $uri->getQuery());
$this->assertEquals('quz', $uri->getFragment());
}
public function testCanSerializeToString()
{
$url = 'https://user:[email protected]:3001/foo?bar=baz#quz';
$uri = new Uri($url);
$this->assertEquals($url, (string) $uri);
}
public function testWithSchemeReturnsNewInstanceWithNewScheme()
{
$uri = new Uri('https://user:[email protected]:3001/foo?bar=baz#quz');
$new = $uri->withScheme('http');
$this->assertNotSame($uri, $new);
$this->assertEquals('http', $new->getScheme());
$this->assertEquals('http://user:[email protected]:3001/foo?bar=baz#quz', (string) $new);
}
public function testWithUserInfoReturnsNewInstanceWithProvidedUser()
{
$uri = new Uri('https://user:[email protected]:3001/foo?bar=baz#quz');
$new = $uri->withUserInfo('matthew');
$this->assertNotSame($uri, $new);
$this->assertEquals('matthew', $new->getUserInfo());
$this->assertEquals('https://[email protected]:3001/foo?bar=baz#quz', (string) $new);
}
public function testWithUserInfoReturnsNewInstanceWithProvidedUserAndPassword()
{
$uri = new Uri('https://user:[email protected]:3001/foo?bar=baz#quz');
$new = $uri->withUserInfo('matthew', 'zf2');
$this->assertNotSame($uri, $new);
$this->assertEquals('matthew:zf2', $new->getUserInfo());
$this->assertEquals('https://matthew:[email protected]:3001/foo?bar=baz#quz', (string) $new);
}
public function testWithHostReturnsNewInstanceWithProvidedHost()
{
$uri = new Uri('https://user:[email protected]:3001/foo?bar=baz#quz');
$new = $uri->withHost('framework.zend.com');
$this->assertNotSame($uri, $new);
$this->assertEquals('framework.zend.com', $new->getHost());
$this->assertEquals('https://user:[email protected]:3001/foo?bar=baz#quz', (string) $new);
}
public function validPorts()
{
return [
'null' => [ null ],
'int' => [ 3000 ],
'string' => [ "3000" ]
];
}
/**
* @dataProvider validPorts
*/
public function testWithPortReturnsNewInstanceWithProvidedPort($port)
{
$uri = new Uri('https://user:[email protected]:3001/foo?bar=baz#quz');
$new = $uri->withPort($port);
$this->assertNotSame($uri, $new);
$this->assertEquals($port, $new->getPort());
$this->assertEquals(
sprintf('https://user:[email protected]%s/foo?bar=baz#quz', $port === null ? '' : ':' . $port),
(string) $new
);
}
public function invalidPorts()
{
return [
'true' => [ true ],
'false' => [ false ],
'string' => [ 'string' ],
'array' => [ [ 3000 ] ],
'object' => [ (object) [ 3000 ] ],
'zero' => [ 0 ],
'too-small' => [ -1 ],
'too-big' => [ 65536 ],
];
}
/**
* @dataProvider invalidPorts
*/
public function testWithPortRaisesExceptionForInvalidPorts($port)
{
$uri = new Uri('https://user:[email protected]:3001/foo?bar=baz#quz');
$this->setExpectedException('InvalidArgumentException', 'Invalid port');
$new = $uri->withPort($port);
}
public function testWithPathReturnsNewInstanceWithProvidedPath()
{
$uri = new Uri('https://user:[email protected]:3001/foo?bar=baz#quz');
$new = $uri->withPath('/bar/baz');
$this->assertNotSame($uri, $new);
$this->assertEquals('/bar/baz', $new->getPath());
$this->assertEquals('https://user:[email protected]:3001/bar/baz?bar=baz#quz', (string) $new);
}
public function invalidPaths()
{
return [
'null' => [ null ],
'true' => [ true ],
'false' => [ false ],
'array' => [ [ '/bar/baz' ] ],
'object' => [ (object) [ '/bar/baz' ] ],
'query' => [ '/bar/baz?bat=quz' ],
'fragment' => [ '/bar/baz#bat' ],
];
}
/**
* @dataProvider invalidPaths
*/
public function testWithPathRaisesExceptionForInvalidPaths($path)
{
$uri = new Uri('https://user:[email protected]:3001/foo?bar=baz#quz');
$this->setExpectedException('InvalidArgumentException', 'Invalid path');
$new = $uri->withPath($path);
}
public function testWithQueryReturnsNewInstanceWithProvidedQuery()
{
$uri = new Uri('https://user:[email protected]:3001/foo?bar=baz#quz');
$new = $uri->withQuery('baz=bat');
$this->assertNotSame($uri, $new);
$this->assertEquals('baz=bat', $new->getQuery());
$this->assertEquals('https://user:[email protected]:3001/foo?baz=bat#quz', (string) $new);
}
public function invalidQueryStrings()
{
return [
'null' => [ null ],
'true' => [ true ],
'false' => [ false ],
'array' => [ [ 'baz=bat' ] ],
'object' => [ (object) [ 'baz=bat' ] ],
'fragment' => [ 'baz=bat#quz' ],
];
}
/**
* @dataProvider invalidQueryStrings
*/
public function testWithQueryRaisesExceptionForInvalidQueryStrings($query)
{
$uri = new Uri('https://user:[email protected]:3001/foo?bar=baz#quz');
$this->setExpectedException('InvalidArgumentException', 'Query string');
$new = $uri->withQuery($query);
}
public function testWithFragmentReturnsNewInstanceWithProvidedFragment()
{
$uri = new Uri('https://user:[email protected]:3001/foo?bar=baz#quz');
$new = $uri->withFragment('qat');
$this->assertNotSame($uri, $new);
$this->assertEquals('qat', $new->getFragment());
$this->assertEquals('https://user:[email protected]:3001/foo?bar=baz#qat', (string) $new);
}
public function authorityInfo()
{
return [
'host-only' => [ 'http://foo.com/bar', 'foo.com' ],
'host-port' => [ 'http://foo.com:3000/bar', 'foo.com:3000' ],
'user-host' => [ 'http://[email protected]/bar', '[email protected]' ],
'user-host-port' => [ 'http://[email protected]:3000/bar', '[email protected]:3000' ],
];
}
/**
* @dataProvider authorityInfo
*/
public function testRetrievingAuthorityReturnsExpectedValues($url, $expected)
{
$uri = new Uri($url);
$this->assertEquals($expected, $uri->getAuthority());
}
public function testCanEmitOriginFormUrl()
{
$url = '/foo/bar?baz=bat';
$uri = new Uri($url);
$this->assertEquals($url, (string) $uri);
}
public function testSettingEmptyPathOnAbsoluteUriReturnsAnEmptyPath()
{
$uri = new Uri('http://example.com/foo');
$new = $uri->withPath('');
$this->assertEquals('', $new->getPath());
}
public function testStringRepresentationOfAbsoluteUriWithNoPathSetsAnEmptyPath()
{
$uri = new Uri('http://example.com');
$this->assertEquals('http://example.com', (string) $uri);
}
public function testEmptyPathOnOriginFormRemainsAnEmptyPath()
{
$uri = new Uri('?foo=bar');
$this->assertEquals('', $uri->getPath());
}
public function testStringRepresentationOfOriginFormWithNoPathRetainsEmptyPath()
{
$uri = new Uri('?foo=bar');
$this->assertEquals('?foo=bar', (string) $uri);
}
public function invalidConstructorUris()
{
return [
'null' => [ null ],
'true' => [ true ],
'false' => [ false ],
'int' => [ 1 ],
'float' => [ 1.1 ],
'array' => [ [ 'http://example.com/' ] ],
'object' => [ (object) [ 'uri' => 'http://example.com/' ] ],
];
}
/**
* @dataProvider invalidConstructorUris
*/
public function testConstructorRaisesExceptionForNonStringURI($uri)
{
$this->setExpectedException('InvalidArgumentException');
new Uri($uri);
}
public function testConstructorRaisesExceptionForSeriouslyMalformedURI()
{
$this->setExpectedException('InvalidArgumentException');
new Uri('http:///www.php-fig.org/');
}
public function testMutatingSchemeStripsOffDelimiter()
{
$uri = new Uri('http://example.com');
$new = $uri->withScheme('https://');
$this->assertEquals('https', $new->getScheme());
}
public function invalidSchemes()
{
return [
'mailto' => [ 'mailto' ],
'ftp' => [ 'ftp' ],
'telnet' => [ 'telnet' ],
'ssh' => [ 'ssh' ],
'git' => [ 'git' ],
];
}
/**
* @dataProvider invalidSchemes
*/
public function testConstructWithUnsupportedSchemeRaisesAnException($scheme)
{
$this->setExpectedException('InvalidArgumentException', 'Unsupported scheme');
$uri = new Uri($scheme . '://example.com');
}
/**
* @dataProvider invalidSchemes
*/
public function testMutatingWithUnsupportedSchemeRaisesAnException($scheme)
{
$uri = new Uri('http://example.com');
$this->setExpectedException('InvalidArgumentException', 'Unsupported scheme');
$uri->withScheme($scheme);
}
public function testPathIsNotPrefixedWithSlashIfSetWithoutOne()
{
$uri = new Uri('http://example.com');
$new = $uri->withPath('foo/bar');
$this->assertEquals('foo/bar', $new->getPath());
}
public function testPathNotSlashPrefixedIsEmittedWithSlashDelimiterWhenUriIsCastToString()
{
$uri = new Uri('http://example.com');
$new = $uri->withPath('foo/bar');
$this->assertEquals('http://example.com/foo/bar', $new->__toString());
}
public function testStripsQueryPrefixIfPresent()
{
$uri = new Uri('http://example.com');
$new = $uri->withQuery('?foo=bar');
$this->assertEquals('foo=bar', $new->getQuery());
}
public function testStripsFragmentPrefixIfPresent()
{
$uri = new Uri('http://example.com');
$new = $uri->withFragment('#/foo/bar');
$this->assertEquals('/foo/bar', $new->getFragment());
}
public function standardSchemePortCombinations()
{
return [
'http' => [ 'http', 80 ],
'https' => [ 'https', 443 ],
];
}
/**
* @dataProvider standardSchemePortCombinations
*/
public function testAuthorityOmitsPortForStandardSchemePortCombinations($scheme, $port)
{
$uri = (new Uri())
->withHost('example.com')
->withScheme($scheme)
->withPort($port);
$this->assertEquals('example.com', $uri->getAuthority());
}
public function mutations()
{
return [
'scheme' => ['withScheme', 'https'],
'user-info' => ['withUserInfo', 'foo'],
'host' => ['withHost', 'www.example.com'],
'port' => ['withPort', 8080],
'path' => ['withPath', '/changed'],
'query' => ['withQuery', 'changed=value'],
'fragment' => ['withFragment', 'changed'],
];
}
/**
* @group 48
* @dataProvider mutations
*/
public function testMutationResetsUriStringPropertyInClone($method, $value)
{
$uri = new Uri('http://example.com/path?query=string#fragment');
$string = (string) $uri;
$this->assertAttributeEquals($string, 'uriString', $uri);
$test = $uri->{$method}($value);
$this->assertAttributeInternalType('null', 'uriString', $test);
$this->assertAttributeEquals($string, 'uriString', $uri);
}
/**
* @group 40
*/
public function testPathIsProperlyEncoded()
{
$uri = (new Uri())->withPath('/foo^bar');
$expected = '/foo%5Ebar';
$this->assertEquals($expected, $uri->getPath());
}
public function testPathDoesNotBecomeDoubleEncoded()
{
$uri = (new Uri())->withPath('/foo%5Ebar');
$expected = '/foo%5Ebar';
$this->assertEquals($expected, $uri->getPath());
}
public function queryStringsForEncoding()
{
return [
'key-only' => ['k^ey', 'k%5Eey'],
'key-value' => ['k^ey=valu`', 'k%5Eey=valu%60'],
'array-key-only' => ['key[]', 'key%5B%5D'],
'array-key-value' => ['key[]=valu`', 'key%5B%5D=valu%60'],
'complex' => ['k^ey&key[]=valu`&f<>=`bar', 'k%5Eey&key%5B%5D=valu%60&f%3C%3E=%60bar'],
];
}
/**
* @group 40
* @dataProvider queryStringsForEncoding
*/
public function testQueryIsProperlyEncoded($query, $expected)
{
$uri = (new Uri())->withQuery($query);
$this->assertEquals($expected, $uri->getQuery());
}
/**
* @group 40
* @dataProvider queryStringsForEncoding
*/
public function testQueryIsNotDoubleEncoded($query, $expected)
{
$uri = (new Uri())->withQuery($expected);
$this->assertEquals($expected, $uri->getQuery());
}
/**
* @group 40
*/
public function testFragmentIsProperlyEncoded()
{
$uri = (new Uri())->withFragment('/p^th?key^=`bar#b@z');
$expected = '/p%5Eth?key%5E=%60bar%23b@z';
$this->assertEquals($expected, $uri->getFragment());
}
/**
* @group 40
*/
public function testFragmentIsNotDoubleEncoded()
{
$expected = '/p%5Eth?key%5E=%60bar%23b@z';
$uri = (new Uri())->withFragment($expected);
$this->assertEquals($expected, $uri->getFragment());
}
public function testProperlyTrimsLeadingSlashesToPreventXSS()
{
$url = 'http://example.org//zend.com';
$uri = new Uri($url);
$this->assertEquals('http://example.org/zend.com', (string) $uri);
}
public function invalidStringComponentValues()
{
$methods = [
'withScheme',
'withUserInfo',
'withHost',
'withPath',
'withQuery',
'withFragment',
];
$values = [
'null' => null,
'true' => true,
'false' => false,
'zero' => 0,
'int' => 1,
'zero-float' => 0.0,
'float' => 1.1,
'array' => ['value'],
'object' => (object)['value' => 'value'],
];
$combinations = [];
foreach ($methods as $method) {
foreach ($values as $type => $value) {
$key = sprintf('%s-%s', $method, $type);
$combinations[$key] = [$method, $value];
}
}
return $combinations;
}
/**
* @group 80
* @dataProvider invalidStringComponentValues
*/
public function testPassingInvalidValueToWithMethodRaisesException($method, $value)
{
$uri = new Uri('https://example.com/');
$this->setExpectedException('InvalidArgumentException');
$uri->$method($value);
}
}