1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
|
<?php
declare(strict_types=1);
namespace Ramsey\Uuid\Test\Type;
use Ramsey\Uuid\Exception\InvalidArgumentException;
use Ramsey\Uuid\Test\TestCase;
use Ramsey\Uuid\Type\Hexadecimal;
use function json_encode;
use function serialize;
use function sprintf;
use function unserialize;
class HexadecimalTest extends TestCase
{
/**
* @dataProvider provideHex
*/
public function testHexadecimalType(string $value, string $expected): void
{
$hexadecimal = new Hexadecimal($value);
$this->assertSame($expected, $hexadecimal->toString());
$this->assertSame($expected, (string) $hexadecimal);
}
/**
* @return array<array{value: string, expected: string}>
*/
public function provideHex(): array
{
return [
[
'value' => '0xFFFF',
'expected' => 'ffff',
],
[
'value' => '0123456789abcdef',
'expected' => '0123456789abcdef',
],
[
'value' => 'ABCDEF',
'expected' => 'abcdef',
],
];
}
/**
* @dataProvider provideHexBadValues
*/
public function testHexadecimalTypeThrowsExceptionForBadValues(string $value): void
{
$this->expectException(InvalidArgumentException::class);
$this->expectExceptionMessage(
'Value must be a hexadecimal number'
);
new Hexadecimal($value);
}
/**
* @return array<array{0: string}>
*/
public function provideHexBadValues(): array
{
return [
['-123456.789'],
['123456.789'],
['foobar'],
['0xfoobar'],
];
}
/**
* @dataProvider provideHex
*/
public function testSerializeUnserializeHexadecimal(string $value, string $expected): void
{
$hexadecimal = new Hexadecimal($value);
$serializedHexadecimal = serialize($hexadecimal);
/** @var Hexadecimal $unserializedHexadecimal */
$unserializedHexadecimal = unserialize($serializedHexadecimal);
$this->assertSame($expected, $unserializedHexadecimal->toString());
}
/**
* @dataProvider provideHex
*/
public function testJsonSerialize(string $value, string $expected): void
{
$hexadecimal = new Hexadecimal($value);
$expectedJson = sprintf('"%s"', $expected);
$this->assertSame($expectedJson, json_encode($hexadecimal));
}
}
|