Code
Explorer
You are a developer and looking for Shopware projects?
Apply Now!
v1 example
use
ExpectDeprecationTrait;
private
UidNormalizer
$normalizer
;
protected
function
setUp
(
)
: void
{
$this
->normalizer =
new
UidNormalizer
(
)
;
}
public
function
testSupportsNormalization
(
)
{
$this
->
assertTrue
(
$this
->normalizer->
supportsNormalization
(
Uuid::
v1
(
)
)
)
;
$this
->
assertTrue
(
$this
->normalizer->
supportsNormalization
(
Uuid::
v3
(
Uuid::
v1
(
)
, 'foo'
)
)
)
;
$this
->
assertTrue
(
$this
->normalizer->
supportsNormalization
(
Uuid::
v4
(
)
)
)
;
$this
->
assertTrue
(
$this
->normalizer->
supportsNormalization
(
Uuid::
v5
(
Uuid::
v1
(
)
, 'foo'
)
)
)
;
$this
->
assertTrue
(
$this
->normalizer->
supportsNormalization
(
Uuid::
v6
(
)
)
)
;
$this
->
assertTrue
(
$this
->normalizer->
supportsNormalization
(
new
Ulid
(
)
)
)
;
$this
->
assertFalse
(
$this
->normalizer->
supportsNormalization
(
new
\
stdClass
(
)
)
)
;
}
public
static
function
normalizeProvider
(
)
{
$uidFormats
=
[
null, 'canonical', 'base58', 'base32', 'rfc4122'
]
;
public
function
testConstructorWithValidUuid
(
)
{
$uuid
=
new
UuidV4
(
self::A_UUID_V4
)
;
$this
->
assertSame
(
self::A_UUID_V4,
(string)
$uuid
)
;
$this
->
assertSame
(
'"'.self::A_UUID_V4.'"',
json_encode
(
$uuid
)
)
;
}
public
function
testV1
(
)
{
$uuid
= Uuid::
v1
(
)
;
$this
->
assertInstanceOf
(
UuidV1::
class
,
$uuid
)
;
$uuid
=
new
UuidV1
(
self::A_UUID_V1
)
;
$this
->
assertEquals
(
\DateTimeImmutable::
createFromFormat
(
'U.u', '1583245966.746458'
)
,
$uuid
->
getDateTime
(
)
)
;
$this
->
assertSame
(
'3499710062d0',
$uuid
->
getNode
(
)
)
;
}
public
function
testV3
(
)
{