-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathObjectMapNormalizerTest.php
More file actions
144 lines (110 loc) · 4.8 KB
/
Copy pathObjectMapNormalizerTest.php
File metadata and controls
144 lines (110 loc) · 4.8 KB
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<?php
declare(strict_types=1);
namespace Patchlevel\Hydrator\Tests\Unit\Normalizer;
use Patchlevel\Hydrator\Hydrator;
use Patchlevel\Hydrator\Normalizer\InvalidArgument;
use Patchlevel\Hydrator\Normalizer\MissingHydrator;
use Patchlevel\Hydrator\Normalizer\ObjectMapNormalizer;
use Patchlevel\Hydrator\Tests\Unit\Fixture\Email;
use Patchlevel\Hydrator\Tests\Unit\Fixture\ProfileCreated;
use Patchlevel\Hydrator\Tests\Unit\Fixture\ProfileId;
use PHPUnit\Framework\Attributes\CoversClass;
use PHPUnit\Framework\TestCase;
use function serialize;
use function unserialize;
#[CoversClass(ObjectMapNormalizer::class)]
final class ObjectMapNormalizerTest extends TestCase
{
public function testNormalizeMissingHydrator(): void
{
$this->expectException(MissingHydrator::class);
$normalizer = new ObjectMapNormalizer([ProfileCreated::class => 'created']);
$this->assertEquals(null, $normalizer->normalize(null));
}
public function testDenormalizeMissingHydrator(): void
{
$this->expectException(MissingHydrator::class);
$normalizer = new ObjectMapNormalizer([ProfileCreated::class => 'created']);
$this->assertEquals(null, $normalizer->denormalize(null));
}
public function testNormalizeWithNull(): void
{
$hydrator = $this->createStub(Hydrator::class);
$normalizer = new ObjectMapNormalizer([ProfileCreated::class => 'created']);
$normalizer->setHydrator($hydrator);
$this->assertEquals(null, $normalizer->normalize(null));
}
public function testDenormalizeWithNull(): void
{
$hydrator = $this->createStub(Hydrator::class);
$normalizer = new ObjectMapNormalizer([ProfileCreated::class => 'created']);
$normalizer->setHydrator($hydrator);
$this->assertEquals(null, $normalizer->denormalize(null));
}
public function testNormalizeWithInvalidArgument(): void
{
$this->expectException(InvalidArgument::class);
$this->expectExceptionMessage('type "Patchlevel\Hydrator\Tests\Unit\Fixture\ProfileCreated|null" was expected but "string" was passed.');
$hydrator = $this->createStub(Hydrator::class);
$normalizer = new ObjectMapNormalizer([ProfileCreated::class => 'created']);
$normalizer->setHydrator($hydrator);
$normalizer->normalize('foo');
}
public function testDenormalizeWithInvalidArgument(): void
{
$this->expectException(InvalidArgument::class);
$this->expectExceptionMessage('array<string, mixed>|null" was expected but "string" was passed.');
$hydrator = $this->createStub(Hydrator::class);
$normalizer = new ObjectMapNormalizer([ProfileCreated::class => 'created']);
$normalizer->setHydrator($hydrator);
$normalizer->denormalize('foo');
}
public function testNormalizeWithValue(): void
{
$hydrator = $this->createMock(Hydrator::class);
$event = new ProfileCreated(
ProfileId::fromString('1'),
Email::fromString('info@patchlevel.de'),
);
$hydrator
->expects($this->once())
->method('extract')
->with($event)
->willReturn(['profileId' => '1', 'email' => 'info@patchlevel.de']);
$normalizer = new ObjectMapNormalizer([ProfileCreated::class => 'created']);
$normalizer->setHydrator($hydrator);
self::assertEquals(
$normalizer->normalize($event),
['profileId' => '1', 'email' => 'info@patchlevel.de', '_type' => 'created'],
);
}
public function testDenormalizeWithValue(): void
{
$hydrator = $this->createMock(Hydrator::class);
$expected = new ProfileCreated(
ProfileId::fromString('1'),
Email::fromString('info@patchlevel.de'),
);
$hydrator
->expects($this->once())
->method('hydrate')
->with(ProfileCreated::class, ['profileId' => '1', 'email' => 'info@patchlevel.de'])
->willReturn($expected);
$normalizer = new ObjectMapNormalizer([ProfileCreated::class => 'created']);
$normalizer->setHydrator($hydrator);
$this->assertEquals(
$expected,
$normalizer->denormalize(['profileId' => '1', 'email' => 'info@patchlevel.de', '_type' => 'created']),
);
}
public function testSerialize(): void
{
$hydrator = $this->createStub(Hydrator::class);
$normalizer = new ObjectMapNormalizer([ProfileCreated::class => 'created']);
$normalizer->setHydrator($hydrator);
$serialized = serialize($normalizer);
$normalizer2 = unserialize($serialized);
self::assertInstanceOf(ObjectMapNormalizer::class, $normalizer2);
self::assertEquals(new ObjectMapNormalizer([ProfileCreated::class => 'created']), $normalizer2);
}
}