mirror of
https://github.com/ramsey/uuid.git
synced 2026-06-14 15:56:48 +03:00
99 lines
2.8 KiB
PHP
99 lines
2.8 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Ramsey\Uuid\Test\Encoder;
|
|
|
|
use Mockery;
|
|
use PHPUnit\Framework\MockObject\MockObject;
|
|
use Ramsey\Uuid\Builder\UuidBuilderInterface;
|
|
use Ramsey\Uuid\Codec\CodecInterface;
|
|
use Ramsey\Uuid\Codec\TimestampFirstCombCodec;
|
|
use Ramsey\Uuid\Rfc4122\Fields;
|
|
use Ramsey\Uuid\Test\TestCase;
|
|
use Ramsey\Uuid\UuidInterface;
|
|
|
|
use function hex2bin;
|
|
use function implode;
|
|
|
|
class TimestampFirstCombCodecTest extends TestCase
|
|
{
|
|
/**
|
|
* @var CodecInterface
|
|
*/
|
|
private $codec;
|
|
|
|
/**
|
|
* @var MockObject & UuidBuilderInterface
|
|
*/
|
|
private $builderMock;
|
|
|
|
protected function setUp(): void
|
|
{
|
|
$this->builderMock = $this->getMockBuilder(UuidBuilderInterface::class)->getMock();
|
|
$this->codec = new TimestampFirstCombCodec($this->builderMock);
|
|
}
|
|
|
|
public function testEncoding(): void
|
|
{
|
|
$fields = new Fields((string) hex2bin('ff6f8cb0c57d11e19b210800200c9a66'));
|
|
|
|
$uuidMock = Mockery::mock(UuidInterface::class, [
|
|
'getFields' => $fields,
|
|
]);
|
|
|
|
$encodedUuid = $this->codec->encode($uuidMock);
|
|
|
|
$this->assertSame('0800200c-9a66-11e1-9b21-ff6f8cb0c57d', $encodedUuid);
|
|
}
|
|
|
|
public function testBinaryEncoding(): void
|
|
{
|
|
$fields = new Fields((string) hex2bin('ff6f8cb0c57d11e19b210800200c9a66'));
|
|
|
|
$uuidMock = Mockery::mock(UuidInterface::class, [
|
|
'getFields' => $fields,
|
|
]);
|
|
|
|
$encodedUuid = $this->codec->encodeBinary($uuidMock);
|
|
|
|
$this->assertSame(hex2bin('0800200c9a6611e19b21ff6f8cb0c57d'), $encodedUuid);
|
|
}
|
|
|
|
public function testDecoding(): void
|
|
{
|
|
$this->builderMock->expects($this->exactly(1))
|
|
->method('build')
|
|
->with(
|
|
$this->codec,
|
|
hex2bin(implode('', [
|
|
'time_low' => 'ff6f8cb0',
|
|
'time_mid' => 'c57d',
|
|
'time_hi_and_version' => '11e1',
|
|
'clock_seq_hi_and_reserved' => '9b',
|
|
'clock_seq_low' => '21',
|
|
'node' => '0800200c9a66',
|
|
]))
|
|
);
|
|
$this->codec->decode('0800200c-9a66-11e1-9b21-ff6f8cb0c57d');
|
|
}
|
|
|
|
public function testBinaryDecoding(): void
|
|
{
|
|
$this->builderMock->expects($this->exactly(1))
|
|
->method('build')
|
|
->with(
|
|
$this->codec,
|
|
hex2bin(implode('', [
|
|
'time_low' => 'ff6f8cb0',
|
|
'time_mid' => 'c57d',
|
|
'time_hi_and_version' => '11e1',
|
|
'clock_seq_hi_and_reserved' => '9b',
|
|
'clock_seq_low' => '21',
|
|
'node' => '0800200c9a66',
|
|
]))
|
|
);
|
|
$this->codec->decodeBytes((string) hex2bin('0800200c9a6611e19b21ff6f8cb0c57d'));
|
|
}
|
|
}
|