mirror of
https://github.com/ramsey/uuid.git
synced 2026-06-14 15:56:48 +03:00
59 lines
1.6 KiB
PHP
59 lines
1.6 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Ramsey\Uuid\Test\Provider\Node;
|
|
|
|
use Ramsey\Uuid\Exception\InvalidArgumentException;
|
|
use Ramsey\Uuid\Provider\Node\StaticNodeProvider;
|
|
use Ramsey\Uuid\Test\TestCase;
|
|
use Ramsey\Uuid\Type\Hexadecimal;
|
|
|
|
class StaticNodeProviderTest extends TestCase
|
|
{
|
|
/**
|
|
* @dataProvider provideNodeForTest
|
|
*/
|
|
public function testStaticNode(Hexadecimal $node, string $expectedNode): void
|
|
{
|
|
$staticNode = new StaticNodeProvider($node);
|
|
|
|
$this->assertSame($expectedNode, $staticNode->getNode());
|
|
}
|
|
|
|
/**
|
|
* @phpcsSuppress SlevomatCodingStandard.TypeHints.ReturnTypeHint.MissingTraversableTypeHintSpecification
|
|
*/
|
|
public function provideNodeForTest(): array
|
|
{
|
|
return [
|
|
[
|
|
'node' => new Hexadecimal('0'),
|
|
'expectedNode' => '010000000000',
|
|
],
|
|
[
|
|
'node' => new Hexadecimal('1'),
|
|
'expectedNode' => '010000000001',
|
|
],
|
|
[
|
|
'node' => new Hexadecimal('f2ffffffffff'),
|
|
'expectedNode' => 'f3ffffffffff',
|
|
],
|
|
[
|
|
'node' => new Hexadecimal('ffffffffffff'),
|
|
'expectedNode' => 'ffffffffffff',
|
|
],
|
|
];
|
|
}
|
|
|
|
public function testStaticNodeThrowsExceptionForTooLongNode(): void
|
|
{
|
|
$this->expectException(InvalidArgumentException::class);
|
|
$this->expectExceptionMessage(
|
|
'Static node value cannot be greater than 12 hexadecimal characters'
|
|
);
|
|
|
|
new StaticNodeProvider(new Hexadecimal('1000000000000'));
|
|
}
|
|
}
|