-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathObjectNormalizerTest.php
More file actions
282 lines (213 loc) · 8.95 KB
/
ObjectNormalizerTest.php
File metadata and controls
282 lines (213 loc) · 8.95 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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
<?php
declare(strict_types=1);
namespace Patchlevel\Hydrator\Tests\Unit\Normalizer;
use Attribute;
use Patchlevel\Hydrator\Hydrator;
use Patchlevel\Hydrator\HydratorWithContext;
use Patchlevel\Hydrator\Normalizer\InvalidArgument;
use Patchlevel\Hydrator\Normalizer\InvalidType;
use Patchlevel\Hydrator\Normalizer\MissingHydrator;
use Patchlevel\Hydrator\Normalizer\ObjectNormalizer;
use Patchlevel\Hydrator\Tests\Unit\Fixture\AutoTypeDto;
use Patchlevel\Hydrator\Tests\Unit\Fixture\Email;
use Patchlevel\Hydrator\Tests\Unit\Fixture\ProfileCreated;
use Patchlevel\Hydrator\Tests\Unit\Fixture\ProfileId;
use PHPUnit\Framework\TestCase;
use ReflectionClass;
use ReflectionType;
use RuntimeException;
use Symfony\Component\TypeInfo\Type;
use function serialize;
use function unserialize;
#[Attribute(Attribute::TARGET_PROPERTY)]
final class ObjectNormalizerTest extends TestCase
{
public function testNormalizeMissingHydrator(): void
{
$this->expectException(MissingHydrator::class);
$normalizer = new ObjectNormalizer(ProfileCreated::class);
$this->assertEquals(null, $normalizer->normalize(null));
}
public function testDenormalizeMissingHydrator(): void
{
$this->expectException(MissingHydrator::class);
$normalizer = new ObjectNormalizer(ProfileCreated::class);
$this->assertEquals(null, $normalizer->denormalize(null));
}
public function testNormalizeWithNull(): void
{
$hydrator = $this->createMock(Hydrator::class);
$normalizer = new ObjectNormalizer(ProfileCreated::class);
$normalizer->setHydrator($hydrator);
$this->assertEquals(null, $normalizer->normalize(null));
}
public function testDenormalizeWithNull(): void
{
$hydrator = $this->createMock(Hydrator::class);
$normalizer = new ObjectNormalizer(ProfileCreated::class);
$normalizer->setHydrator($hydrator);
$this->assertEquals(null, $normalizer->denormalize(null));
}
public function testNormalizeWithInvalidArgument(): void
{
$this->expectException(InvalidArgument::class);
$this->expectExceptionCode(0);
$this->expectExceptionMessage('type "Patchlevel\Hydrator\Tests\Unit\Fixture\ProfileCreated|null" was expected but "string" was passed.');
$hydrator = $this->createMock(Hydrator::class);
$normalizer = new ObjectNormalizer(ProfileCreated::class);
$normalizer->setHydrator($hydrator);
$normalizer->normalize('foo');
}
public function testDenormalizeWithInvalidArgument(): void
{
$this->expectException(InvalidArgument::class);
$this->expectExceptionCode(0);
$this->expectExceptionMessage('array<string, mixed>|null" was expected but "string" was passed.');
$hydrator = $this->createMock(Hydrator::class);
$normalizer = new ObjectNormalizer(ProfileCreated::class);
$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 ObjectNormalizer(ProfileCreated::class);
$normalizer->setHydrator($hydrator);
self::assertEquals(
$normalizer->normalize($event),
['profileId' => '1', 'email' => 'info@patchlevel.de'],
);
}
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 ObjectNormalizer(ProfileCreated::class);
$normalizer->setHydrator($hydrator);
$this->assertEquals(
$expected,
$normalizer->denormalize(['profileId' => '1', 'email' => 'info@patchlevel.de']),
);
}
public function testNormalizePassesContextToHydrator(): void
{
$context = ['key' => 'value'];
$hydrator = $this->createMock(HydratorWithContext::class);
$event = new ProfileCreated(
ProfileId::fromString('1'),
Email::fromString('info@patchlevel.de'),
);
$hydrator->expects($this->once())->method('extract')->with($event, $context)
->willReturn(['profileId' => '1', 'email' => 'info@patchlevel.de']);
$normalizer = new ObjectNormalizer(ProfileCreated::class);
$normalizer->setHydrator($hydrator);
self::assertEquals(
['profileId' => '1', 'email' => 'info@patchlevel.de'],
$normalizer->normalize($event, $context),
);
}
public function testDenormalizePassesContextToHydrator(): void
{
$context = ['key' => 'value'];
$hydrator = $this->createMock(HydratorWithContext::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'],
$context,
)->willReturn($expected);
$normalizer = new ObjectNormalizer(ProfileCreated::class);
$normalizer->setHydrator($hydrator);
$this->assertEquals(
$expected,
$normalizer->denormalize(['profileId' => '1', 'email' => 'info@patchlevel.de'], $context),
);
}
public function testAutoDetect(): void
{
$hydrator = $this->createMock(Hydrator::class);
$normalizer = new ObjectNormalizer();
$normalizer->setHydrator($hydrator);
$normalizer->handleReflectionType($this->reflectionType(AutoTypeDto::class, 'profileCreated'));
self::assertEquals(ProfileCreated::class, $normalizer->className());
}
public function testAutoDetectOverrideNotPossible(): void
{
$hydrator = $this->createMock(Hydrator::class);
$normalizer = new ObjectNormalizer(AutoTypeDto::class);
$normalizer->setHydrator($hydrator);
$normalizer->handleReflectionType($this->reflectionType(AutoTypeDto::class, 'profileCreated'));
self::assertEquals(AutoTypeDto::class, $normalizer->className());
}
public function testAutoDetectMissingType(): void
{
$this->expectException(InvalidType::class);
$hydrator = $this->createMock(Hydrator::class);
$normalizer = new ObjectNormalizer();
$normalizer->setHydrator($hydrator);
$normalizer->className();
}
public function testAutoDetectMissingTypeBecauseNull(): void
{
$this->expectException(InvalidType::class);
$hydrator = $this->createMock(Hydrator::class);
$normalizer = new ObjectNormalizer();
$normalizer->setHydrator($hydrator);
$normalizer->handleReflectionType(null);
$normalizer->className();
}
public function testGeneric(): void
{
$hydrator = $this->createMock(Hydrator::class);
$normalizer = new ObjectNormalizer();
$normalizer->setHydrator($hydrator);
$normalizer->handleType(Type::generic(Type::object(ProfileCreated::class)));
self::assertEquals(ProfileCreated::class, $normalizer->className());
}
public function testTemplate(): void
{
$hydrator = $this->createMock(Hydrator::class);
$normalizer = new ObjectNormalizer();
$normalizer->setHydrator($hydrator);
$normalizer->handleType(Type::template('T', Type::object(ProfileCreated::class)));
self::assertEquals(ProfileCreated::class, $normalizer->className());
}
public function testSerialize(): void
{
$hydrator = $this->createMock(Hydrator::class);
$normalizer = new ObjectNormalizer(ProfileCreated::class);
$normalizer->setHydrator($hydrator);
$serialized = serialize($normalizer);
$normalizer2 = unserialize($serialized);
self::assertInstanceOf(ObjectNormalizer::class, $normalizer2);
self::assertEquals(new ObjectNormalizer(ProfileCreated::class), $normalizer2);
}
/** @param class-string $class */
private function reflectionType(string $class, string $property): ReflectionType
{
$reflection = new ReflectionClass($class);
$property = $reflection->getProperty($property);
$type = $property->getType();
if (!$type instanceof ReflectionType) {
throw new RuntimeException('no type');
}
return $type;
}
}