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
|
<?php
/**
* League.Uri (https://uri.thephpleague.com)
*
* (c) Ignace Nyamagana Butera <nyamsprod@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace League\Uri\Components;
use League\Uri\Contracts\UriComponentInterface;
use League\Uri\Contracts\UriInterface;
use League\Uri\Exceptions\SyntaxError;
use League\Uri\Http;
use League\Uri\Uri;
use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\TestCase;
use Psr\Http\Message\UriInterface as Psr7UriInterface;
use Stringable;
final class FragmentTest extends TestCase
{
#[DataProvider('getUriComponentProvider')]
public function testStringRepresentation(?string $str, string $encoded): void
{
self::assertSame($encoded, Fragment::new($str)->toString());
}
public static function getUriComponentProvider(): array
{
$unreserved = 'a-zA-Z0-9.-_~!$&\'()*+,;=:@';
return [
'null' => [null, ''],
'empty' => ['', ''],
'evaluate empty' => ['0', '0'],
'hash' => ['#', '%23'],
'toofan' => ['toofan', 'toofan'],
'notencoded' => ["azAZ0-9/?-._~!$&'()*+,;=:@", 'azAZ0-9/?-._~!$&\'()*+,;=:@'],
'encoded' => ['%^[]{}"<>\\', '%25%5E%5B%5D%7B%7D%22%3C%3E%5C'],
'Percent encode spaces' => ['frag ment', 'frag%20ment'],
'Percent encode multibyte' => ['€', '%E2%82%AC'],
"Don't encode something that's already encoded" => ['frag%20ment', 'frag%20ment'],
'Percent encode invalid percent encodings' => ['frag%2-ment', 'frag%252-ment'],
"Don't encode path segments" => ['frag/ment', 'frag/ment'],
"Don't encode unreserved chars or sub-delimiters" => [$unreserved, $unreserved],
'Encoded unreserved chars are not decoded' => ['fr%61gment', 'fr%61gment'],
];
}
#[DataProvider('getValueProvider')]
public function testGetValue(Stringable|string|null $str, ?string $expected): void
{
if ($str instanceof UriComponentInterface) {
$str = $str->value();
}
self::assertSame($expected, Fragment::new($str)->decoded());
}
public static function getValueProvider(): array
{
return [
[Fragment::new(), null],
[null, null],
['', ''],
['0', '0'],
['azAZ0-9/?-._~!$&\'()*+,;=:@%^/[]{}\"<>\\', 'azAZ0-9/?-._~!$&\'()*+,;=:@%^/[]{}\"<>\\'],
['€', '€'],
['%E2%82%AC', '€'],
['frag ment', 'frag ment'],
['frag%20ment', 'frag ment'],
['frag%2-ment', 'frag%2-ment'],
['fr%61gment', 'fr%61gment'],
['frag%2Bment', 'frag%2Bment'],
['frag+ment', 'frag+ment'],
];
}
#[DataProvider('getContentProvider')]
public function testGetContent(string $input, string $expected): void
{
self::assertSame($expected, Fragment::new($input)->value());
}
public static function getContentProvider(): array
{
return [
['€', '%E2%82%AC'],
['%E2%82%AC', '%E2%82%AC'],
['action=v%61lue', 'action=v%61lue'],
];
}
public function testFailedFragmentException(): void
{
$this->expectException(SyntaxError::class);
Fragment::new("\0");
}
public function testGetUriComponent(): void
{
self::assertSame('#yolo', Fragment::new('yolo')->getUriComponent());
self::assertEquals('', Fragment::new()->getUriComponent());
}
public function testJsonSerialize(): void
{
self::assertEquals('"yolo"', json_encode(Fragment::new('yolo')));
}
public function testPreserverDelimiter(): void
{
$fragment = Fragment::new();
self::assertNull($fragment->value());
self::assertSame('', $fragment->toString());
}
#[DataProvider('getURIProvider')]
public function testCreateFromUri(Psr7UriInterface|UriInterface $uri, ?string $expected): void
{
$fragment = Fragment::fromUri($uri);
self::assertSame($expected, $fragment->value());
}
public static function getURIProvider(): iterable
{
return [
'PSR-7 URI object' => [
'uri' => Http::new('http://example.com#foobar'),
'expected' => 'foobar',
],
'PSR-7 URI object with no fragment' => [
'uri' => Http::new('http://example.com'),
'expected' => null,
],
'PSR-7 URI object with empty string fragment' => [
'uri' => Http::new('http://example.com#'),
'expected' => null,
],
'League URI object' => [
'uri' => Uri::new('http://example.com#foobar'),
'expected' => 'foobar',
],
'League URI object with no fragment' => [
'uri' => Uri::new('http://example.com'),
'expected' => null,
],
'League URI object with empty string fragment' => [
'uri' => Uri::new('http://example.com#'),
'expected' => '',
],
];
}
}
|