We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 404e50b commit 4a58d24Copy full SHA for 4a58d24
tests/system/HTTP/URITest.php
@@ -484,18 +484,26 @@ public static function providePathGetsFiltered(): iterable
484
'./path/to/nowhere',
485
'/path/to/nowhere',
486
],
487
- 'start-double' => [
+ 'start-double-dot' => [
488
'../path/to/nowhere',
489
490
491
'decoded' => [
492
- '../%41path',
+ '/%41path',
493
'/Apath',
494
495
- 'encoded' => [
+ 'encode-unreserved-chars' => [
496
'/path^here',
497
'/path%5Ehere',
498
499
+ 'encode-invalid-percent-encoding' => [
500
+ '/pa%2-th',
501
+ '/pa%252-th',
502
+ ],
503
+ 'encode-multibyte-chars' => [
504
+ '/あいう',
505
+ '/%E3%81%82%E3%81%84%E3%81%86',
506
507
];
508
}
509
0 commit comments