mirror of
https://github.com/ramsey/uuid.git
synced 2026-06-14 15:56:48 +03:00
70 lines
1.8 KiB
PHP
70 lines
1.8 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Ramsey\Uuid\Test;
|
|
|
|
use Ramsey\Uuid\Rfc4122\FieldsInterface;
|
|
use Ramsey\Uuid\Type\Hexadecimal;
|
|
use Ramsey\Uuid\Type\IntegerValue;
|
|
use Ramsey\Uuid\Uuid;
|
|
|
|
use function Ramsey\Uuid\v1;
|
|
use function Ramsey\Uuid\v2;
|
|
use function Ramsey\Uuid\v3;
|
|
use function Ramsey\Uuid\v4;
|
|
use function Ramsey\Uuid\v5;
|
|
|
|
class FunctionsTest extends TestCase
|
|
{
|
|
public function testV1ReturnsVersion1UuidString(): void
|
|
{
|
|
$v1 = v1();
|
|
|
|
$this->assertIsString($v1);
|
|
$this->assertSame(Uuid::UUID_TYPE_TIME, Uuid::fromString($v1)->getVersion());
|
|
}
|
|
|
|
public function testV2ReturnsVersion2UuidString(): void
|
|
{
|
|
$v2 = v2(
|
|
Uuid::DCE_DOMAIN_PERSON,
|
|
new IntegerValue('1004'),
|
|
new Hexadecimal('aabbccdd0011'),
|
|
1234
|
|
);
|
|
|
|
/** @var FieldsInterface $fields */
|
|
$fields = Uuid::fromString($v2)->getFields();
|
|
|
|
$this->assertIsString($v2);
|
|
$this->assertSame(Uuid::UUID_TYPE_IDENTIFIER, $fields->getVersion());
|
|
}
|
|
|
|
public function testV3ReturnsVersion3UuidString(): void
|
|
{
|
|
$ns = Uuid::fromString(Uuid::NAMESPACE_URL);
|
|
$v3 = v3($ns, 'https://example.com/foo');
|
|
|
|
$this->assertIsString($v3);
|
|
$this->assertSame(Uuid::UUID_TYPE_HASH_MD5, Uuid::fromString($v3)->getVersion());
|
|
}
|
|
|
|
public function testV4ReturnsVersion4UuidString(): void
|
|
{
|
|
$v4 = v4();
|
|
|
|
$this->assertIsString($v4);
|
|
$this->assertSame(Uuid::UUID_TYPE_RANDOM, Uuid::fromString($v4)->getVersion());
|
|
}
|
|
|
|
public function testV5ReturnsVersion5UuidString(): void
|
|
{
|
|
$ns = Uuid::fromString(Uuid::NAMESPACE_URL);
|
|
$v5 = v5($ns, 'https://example.com/foo');
|
|
|
|
$this->assertIsString($v5);
|
|
$this->assertSame(Uuid::UUID_TYPE_HASH_SHA1, Uuid::fromString($v5)->getVersion());
|
|
}
|
|
}
|