123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- <?php
- declare(strict_types=1);
- namespace Ramsey\Uuid\Test\Codec;
- use InvalidArgumentException;
- use Mockery;
- use PHPUnit\Framework\MockObject\MockObject;
- use Ramsey\Uuid\Builder\UuidBuilderInterface;
- use Ramsey\Uuid\Codec\StringCodec;
- use Ramsey\Uuid\Rfc4122\Fields;
- use Ramsey\Uuid\Rfc4122\FieldsInterface;
- use Ramsey\Uuid\Test\TestCase;
- use Ramsey\Uuid\UuidInterface;
- use function hex2bin;
- use function implode;
- use function pack;
- class StringCodecTest extends TestCase
- {
- /**
- * @var UuidBuilderInterface & MockObject
- */
- private $builder;
- /**
- * @var UuidInterface & MockObject
- */
- private $uuid;
- /**
- * @var Fields
- */
- private $fields;
- /**
- * @var string
- */
- private $uuidString = '12345678-1234-4bcd-abef-1234abcd4321';
- protected function setUp(): void
- {
- parent::setUp();
- $this->builder = $this->getMockBuilder(UuidBuilderInterface::class)->getMock();
- $this->uuid = $this->getMockBuilder(UuidInterface::class)->getMock();
- $this->fields = new Fields((string) hex2bin('1234567812344bcdabef1234abcd4321'));
- }
- protected function tearDown(): void
- {
- parent::tearDown();
- unset($this->builder, $this->uuid, $this->fields);
- }
- public function testEncodeUsesFieldsArray(): void
- {
- $this->uuid->expects($this->once())
- ->method('getFields')
- ->willReturn($this->fields);
- $codec = new StringCodec($this->builder);
- $codec->encode($this->uuid);
- }
- public function testEncodeReturnsFormattedString(): void
- {
- $this->uuid->method('getFields')
- ->willReturn($this->fields);
- $codec = new StringCodec($this->builder);
- $result = $codec->encode($this->uuid);
- $this->assertSame($this->uuidString, $result);
- }
- public function testEncodeBinaryReturnsBinaryString(): void
- {
- $expected = hex2bin('123456781234abcdabef1234abcd4321');
- $fields = Mockery::mock(FieldsInterface::class, [
- 'getBytes' => hex2bin('123456781234abcdabef1234abcd4321'),
- ]);
- $this->uuid->method('getFields')->willReturn($fields);
- $codec = new StringCodec($this->builder);
- $result = $codec->encodeBinary($this->uuid);
- $this->assertSame($expected, $result);
- }
- public function testDecodeUsesBuilderOnFields(): void
- {
- $fields = [
- 'time_low' => $this->fields->getTimeLow()->toString(),
- 'time_mid' => $this->fields->getTimeMid()->toString(),
- 'time_hi_and_version' => $this->fields->getTimeHiAndVersion()->toString(),
- 'clock_seq_hi_and_reserved' => $this->fields->getClockSeqHiAndReserved()->toString(),
- 'clock_seq_low' => $this->fields->getClockSeqLow()->toString(),
- 'node' => $this->fields->getNode()->toString(),
- ];
- $bytes = hex2bin(implode('', $fields));
- $string = 'uuid:12345678-1234-4bcd-abef-1234abcd4321';
- $this->builder->expects($this->once())
- ->method('build')
- ->with($this->isInstanceOf(StringCodec::class), $bytes);
- $codec = new StringCodec($this->builder);
- $codec->decode($string);
- }
- public function testDecodeThrowsExceptionOnInvalidUuid(): void
- {
- $string = 'invalid-uuid';
- $codec = new StringCodec($this->builder);
- $this->expectException(InvalidArgumentException::class);
- $codec->decode($string);
- }
- public function testDecodeReturnsUuidFromBuilder(): void
- {
- $string = 'uuid:12345678-1234-abcd-abef-1234abcd4321';
- $this->builder->method('build')
- ->willReturn($this->uuid);
- $codec = new StringCodec($this->builder);
- $result = $codec->decode($string);
- $this->assertSame($this->uuid, $result);
- }
- public function testDecodeBytesThrowsExceptionWhenBytesStringNotSixteenCharacters(): void
- {
- $string = '61';
- $bytes = pack('H*', $string);
- $codec = new StringCodec($this->builder);
- $this->expectException(InvalidArgumentException::class);
- $this->expectExceptionMessage('$bytes string should contain 16 characters.');
- $codec->decodeBytes($bytes);
- }
- public function testDecodeBytesReturnsUuid(): void
- {
- $string = '123456781234abcdabef1234abcd4321';
- $bytes = pack('H*', $string);
- $codec = new StringCodec($this->builder);
- $this->builder->method('build')
- ->willReturn($this->uuid);
- $result = $codec->decodeBytes($bytes);
- $this->assertSame($this->uuid, $result);
- }
- }
|