builderMock = $this->getMockBuilder(UuidBuilderInterface::class)->getMock(); $this->codec = new TimestampLastCombCodec($this->builderMock); } public function testEncoding(): void { $fields = new Fields((string) hex2bin('0800200c9a6611e19b21ff6f8cb0c57d')); $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 = Mockery::mock(FieldsInterface::class, [ 'getBytes' => hex2bin('0800200c9a6611e19b21ff6f8cb0c57d'), ]); /** @var MockObject & UuidInterface $uuidMock */ $uuidMock = $this->getMockBuilder(UuidInterface::class)->getMock(); $uuidMock->expects($this->any())->method('getFields')->willReturn($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' => '0800200c', 'time_mid' => '9a66', 'time_hi_and_version' => '11e1', 'clock_seq_hi_and_reserved' => '9b', 'clock_seq_low' => '21', 'node' => 'ff6f8cb0c57d', ])) ); $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' => '0800200c', 'time_mid' => '9a66', 'time_hi_and_version' => '11e1', 'clock_seq_hi_and_reserved' => '9b', 'clock_seq_low' => '21', 'node' => 'ff6f8cb0c57d', ])) ); $this->codec->decodeBytes((string) hex2bin('0800200c9a6611e19b21ff6f8cb0c57d')); } }