- Reverts the schneespur/ subdirectory restructure (b8e426b)
- Restores package.json and vite.config.js (needed for npm build, were
removed in an earlier cleanup before the restructure)
- Updates public/build/ assets with current Vite output (new content hashes)
76 lines
2.5 KiB
PHP
76 lines
2.5 KiB
PHP
<?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.
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace League\Uri\UriTemplate;
|
|
|
|
use League\Uri\Exceptions\SyntaxError;
|
|
use PHPUnit\Framework\Attributes\CoversClass;
|
|
use PHPUnit\Framework\Attributes\DataProvider;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
#[CoversClass(VarSpecifier::class)]
|
|
final class VarSpecifierTest extends TestCase
|
|
{
|
|
#[DataProvider('providesValidNotation')]
|
|
public function testItCanBeInstantiatedWithAValidNotation(string $notation): void
|
|
{
|
|
self::assertSame($notation, VarSpecifier::new($notation)->toString());
|
|
}
|
|
|
|
public static function providesValidNotation(): iterable
|
|
{
|
|
return [
|
|
'simple' => ['notation' => 'var'],
|
|
'variable with underscore' => ['notation' => 'under_score'],
|
|
'variable with digit' => ['notation' => 'd1g1t'],
|
|
'variable with encoded' => ['notation' => 'semi%3Bcolon'],
|
|
'variable with point' => ['notation' => 'p.int'],
|
|
'with explode modifier' => ['notation' => 'var*'],
|
|
'with position modifier' => ['notation' => 'var:5'],
|
|
'complex variable' => ['notation' => 'und.er_sc0re%3B:5'],
|
|
];
|
|
}
|
|
|
|
#[DataProvider('providesInvalidNotation')]
|
|
public function testItFailsToInstantiatedWithAnInvalidNotationString(string $notation): void
|
|
{
|
|
self::expectException(SyntaxError::class);
|
|
|
|
VarSpecifier::new($notation);
|
|
}
|
|
|
|
public static function providesInvalidNotation(): iterable
|
|
{
|
|
return [
|
|
'using the explode modifier with the position notation' => ['notation' => 'var:*'],
|
|
'with a position modifier ouf of bound' => ['notation' => 'var:10000'],
|
|
'empty string' => ['notation' => ''],
|
|
'unsupported character' => ['notation' => 'bébé'],
|
|
];
|
|
}
|
|
|
|
public function testItCanReturnsTheVarSpecifierProperties(): void
|
|
{
|
|
$varSpecifier = VarSpecifier::new('und.er_sc0re%3B:5');
|
|
|
|
self::assertSame('und.er_sc0re%3B', $varSpecifier->name);
|
|
self::assertSame(':', $varSpecifier->modifier);
|
|
self::assertSame(5, $varSpecifier->position);
|
|
|
|
$varSpecifier = VarSpecifier::new('und.er_sc0re%3B*');
|
|
|
|
self::assertSame('und.er_sc0re%3B', $varSpecifier->name);
|
|
self::assertSame('*', $varSpecifier->modifier);
|
|
self::assertSame(0, $varSpecifier->position);
|
|
}
|
|
}
|