mirror of
https://github.com/ramsey/uuid.git
synced 2026-06-15 16:07:55 +03:00
112 lines
2.8 KiB
PHP
112 lines
2.8 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Ramsey\Uuid\Test\Type;
|
|
|
|
use Ramsey\Uuid\Exception\UnsupportedOperationException;
|
|
use Ramsey\Uuid\Test\TestCase;
|
|
use Ramsey\Uuid\Type\Time;
|
|
|
|
use function json_encode;
|
|
use function serialize;
|
|
use function unserialize;
|
|
|
|
class TimeTest extends TestCase
|
|
{
|
|
/**
|
|
* @param int|float|string $seconds
|
|
* @param int|float|string|null $microseconds
|
|
*
|
|
* @dataProvider provideTimeValues
|
|
*/
|
|
public function testTime($seconds, $microseconds): void
|
|
{
|
|
$params = [$seconds];
|
|
$timeString = (string) $seconds;
|
|
|
|
if ($microseconds !== null) {
|
|
$params[] = $microseconds;
|
|
$timeString .= ".{$microseconds}";
|
|
} else {
|
|
$timeString .= '.0';
|
|
}
|
|
|
|
$time = new Time(...$params);
|
|
|
|
$this->assertSame((string) $seconds, $time->getSeconds()->toString());
|
|
|
|
$this->assertSame(
|
|
(string) $microseconds ?: '0',
|
|
$time->getMicroseconds()->toString()
|
|
);
|
|
|
|
$this->assertSame($timeString, (string) $time);
|
|
}
|
|
|
|
/**
|
|
* @phpcsSuppress SlevomatCodingStandard.TypeHints.ReturnTypeHint.MissingTraversableTypeHintSpecification
|
|
*/
|
|
public function provideTimeValues(): array
|
|
{
|
|
return [
|
|
[
|
|
'seconds' => 103072857659,
|
|
'microseconds' => null,
|
|
],
|
|
[
|
|
'seconds' => -12219292800,
|
|
'microseconds' => 1234,
|
|
],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @dataProvider provideTimeValues
|
|
*/
|
|
public function testSerializeUnserializeTime(
|
|
int | IntegerObject | string $seconds,
|
|
int | IntegerObject | string | null $microseconds
|
|
): void {
|
|
$params = [$seconds];
|
|
if ($microseconds !== null) {
|
|
$params[] = $microseconds;
|
|
}
|
|
|
|
$time = new Time(...$params);
|
|
$serializedTime = serialize($time);
|
|
|
|
/** @var Time $unserializedTime */
|
|
$unserializedTime = unserialize($serializedTime);
|
|
|
|
$this->assertSame((string) $seconds, $unserializedTime->getSeconds()->toString());
|
|
|
|
$this->assertSame(
|
|
(string) $microseconds ?: '0',
|
|
$unserializedTime->getMicroseconds()->toString()
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @dataProvider provideTimeValues
|
|
*/
|
|
public function testJsonSerialize(int | IntegerObject | string $seconds, int | IntegerObject | string | null $microseconds): void
|
|
{
|
|
$time = [
|
|
'seconds' => (string) $seconds,
|
|
'microseconds' => (string) $microseconds ?: '0',
|
|
];
|
|
|
|
$expectedJson = json_encode($time);
|
|
|
|
$params = [$seconds];
|
|
if ($microseconds !== null) {
|
|
$params[] = $microseconds;
|
|
}
|
|
|
|
$time = new Time(...$params);
|
|
|
|
$this->assertSame($expectedJson, json_encode($time));
|
|
}
|
|
}
|