forked from phpstan/phpstan-doctrine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEntityColumnRuleTest.php
434 lines (407 loc) · 16 KB
/
EntityColumnRuleTest.php
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
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
<?php declare(strict_types = 1);
namespace PHPStan\Rules\Doctrine\ORM;
use Carbon\Doctrine\CarbonImmutableType;
use Carbon\Doctrine\CarbonType;
use Composer\InstalledVersions;
use Doctrine\DBAL\Types\Type;
use Iterator;
use PHPStan\Rules\Rule;
use PHPStan\Testing\RuleTestCase;
use PHPStan\Type\Doctrine\DefaultDescriptorRegistry;
use PHPStan\Type\Doctrine\Descriptors\ArrayType;
use PHPStan\Type\Doctrine\Descriptors\BigIntType;
use PHPStan\Type\Doctrine\Descriptors\BinaryType;
use PHPStan\Type\Doctrine\Descriptors\DateTimeImmutableType;
use PHPStan\Type\Doctrine\Descriptors\DateTimeType;
use PHPStan\Type\Doctrine\Descriptors\DateType;
use PHPStan\Type\Doctrine\Descriptors\DecimalType;
use PHPStan\Type\Doctrine\Descriptors\IntegerType;
use PHPStan\Type\Doctrine\Descriptors\JsonType;
use PHPStan\Type\Doctrine\Descriptors\Ramsey\UuidTypeDescriptor;
use PHPStan\Type\Doctrine\Descriptors\ReflectionDescriptor;
use PHPStan\Type\Doctrine\Descriptors\SimpleArrayType;
use PHPStan\Type\Doctrine\Descriptors\StringType;
use PHPStan\Type\Doctrine\ObjectMetadataResolver;
use function array_unshift;
use function strpos;
use const PHP_VERSION_ID;
/**
* @extends RuleTestCase<EntityColumnRule>
*/
class EntityColumnRuleTest extends RuleTestCase
{
/** @var bool */
private $allowNullablePropertyForRequiredField;
/** @var string|null */
private $objectManagerLoader;
protected function getRule(): Rule
{
if (!Type::hasType(CustomType::NAME)) {
Type::addType(CustomType::NAME, CustomType::class);
}
if (!Type::hasType(CustomNumericType::NAME)) {
Type::addType(CustomNumericType::NAME, CustomNumericType::class);
}
if (!Type::hasType(FakeTestingUuidType::NAME)) {
Type::addType(FakeTestingUuidType::NAME, FakeTestingUuidType::class);
}
if (!Type::hasType('carbon')) {
Type::addType('carbon', CarbonType::class);
}
if (!Type::hasType('carbon_immutable')) {
Type::addType('carbon_immutable', CarbonImmutableType::class);
}
if (!Type::hasType('array')) {
Type::addType('array', \Doctrine\DBAL\Types\ArrayType::class);
}
return new EntityColumnRule(
new ObjectMetadataResolver($this->objectManagerLoader, __DIR__ . '/../../../../tmp'),
new DefaultDescriptorRegistry([
new ArrayType(),
new BigIntType(),
new BinaryType(),
new DateTimeImmutableType(),
new DateTimeType(),
new DateType(),
new DecimalType(),
new JsonType(),
new IntegerType(),
new StringType(),
new SimpleArrayType(),
new UuidTypeDescriptor(FakeTestingUuidType::class),
new ReflectionDescriptor(CarbonImmutableType::class, $this->createBroker(), self::getContainer()),
new ReflectionDescriptor(CarbonType::class, $this->createBroker(), self::getContainer()),
new ReflectionDescriptor(CustomType::class, $this->createBroker(), self::getContainer()),
new ReflectionDescriptor(CustomNumericType::class, $this->createBroker(), self::getContainer()),
]),
$this->createReflectionProvider(),
true,
$this->allowNullablePropertyForRequiredField,
true
);
}
/**
* @return array<array{string|null}>
*/
public function dataObjectManagerLoader(): array
{
return [
[__DIR__ . '/entity-manager.php'],
[null],
];
}
/**
* @dataProvider dataObjectManagerLoader
*/
public function testRule(?string $objectManagerLoader): void
{
$this->allowNullablePropertyForRequiredField = false;
$this->objectManagerLoader = $objectManagerLoader;
$errors = [
[
'Property PHPStan\Rules\Doctrine\ORM\MyBrokenEntity::$one type mapping mismatch: database can contain string|null but property expects string.',
25,
],
[
'Property PHPStan\Rules\Doctrine\ORM\MyBrokenEntity::$two type mapping mismatch: property can contain string|null but database expects string.',
31,
],
[
'Property PHPStan\Rules\Doctrine\ORM\MyBrokenEntity::$three type mapping mismatch: database can contain DateTime but property expects DateTimeImmutable.',
37,
],
[
'Property PHPStan\Rules\Doctrine\ORM\MyBrokenEntity::$four type mapping mismatch: database can contain DateTimeImmutable but property expects DateTime.',
43,
],
[
'Property PHPStan\Rules\Doctrine\ORM\MyBrokenEntity::$four type mapping mismatch: property can contain DateTime but database expects DateTimeImmutable.',
43,
],
[
'Property PHPStan\Rules\Doctrine\ORM\MyBrokenEntity::$uuidInvalidType type mapping mismatch: database can contain Ramsey\Uuid\UuidInterface but property expects int.',
72,
],
[
'Property PHPStan\Rules\Doctrine\ORM\MyBrokenEntity::$uuidInvalidType type mapping mismatch: property can contain int but database expects Ramsey\Uuid\UuidInterface|string.',
72,
],
[
'Property PHPStan\Rules\Doctrine\ORM\MyBrokenEntity::$arrayOrNull type mapping mismatch: property can contain array|null but database expects array.',
96,
],
[
'Property PHPStan\Rules\Doctrine\ORM\MyBrokenEntity::$arrayOfIntegersOrNull type mapping mismatch: property can contain array|null but database expects array.',
102,
],
[
'Property PHPStan\Rules\Doctrine\ORM\MyBrokenEntity::$numericString type mapping mismatch: database can contain string but property expects numeric-string.',
126,
],
[
'Property PHPStan\Rules\Doctrine\ORM\MyBrokenEntity::$invalidCarbon type mapping mismatch: database can contain Carbon\Carbon but property expects Carbon\CarbonImmutable.',
132,
],
[
'Property PHPStan\Rules\Doctrine\ORM\MyBrokenEntity::$invalidCarbonImmutable type mapping mismatch: database can contain Carbon\CarbonImmutable but property expects Carbon\Carbon.',
138,
],
[
'Property PHPStan\Rules\Doctrine\ORM\MyBrokenEntity::$incompatibleJsonValueObject type mapping mismatch: property can contain PHPStan\Rules\Doctrine\ORM\EmptyObject but database expects array|bool|float|int|JsonSerializable|stdClass|string|null.',
156,
],
[
'Property PHPStan\Rules\Doctrine\ORM\MyBrokenEntity::$invalidSimpleArray type mapping mismatch: database can contain array<int, string> but property expects array<int>.',
162,
],
[
'Property PHPStan\Rules\Doctrine\ORM\MyBrokenEntity::$invalidSimpleArray type mapping mismatch: property can contain array<int> but database expects array<string>.',
162,
],
];
$dbalVersion = InstalledVersions::getVersion('doctrine/dbal');
$hasDbal4 = $dbalVersion !== null && strpos($dbalVersion, '4.') === 0;
if (!$hasDbal4) {
array_unshift($errors, [
'Property PHPStan\Rules\Doctrine\ORM\MyBrokenEntity::$id type mapping mismatch: database can contain string but property expects int|null.',
19,
]);
}
$this->analyse([__DIR__ . '/data/MyBrokenEntity.php'], $errors);
}
/**
* @dataProvider dataObjectManagerLoader
*/
public function testRuleWithAllowedNullableProperty(?string $objectManagerLoader): void
{
$this->allowNullablePropertyForRequiredField = true;
$this->objectManagerLoader = $objectManagerLoader;
$errors = [
[
'Property PHPStan\Rules\Doctrine\ORM\MyBrokenEntity::$one type mapping mismatch: database can contain string|null but property expects string.',
25,
],
[
'Property PHPStan\Rules\Doctrine\ORM\MyBrokenEntity::$three type mapping mismatch: database can contain DateTime but property expects DateTimeImmutable.',
37,
],
[
'Property PHPStan\Rules\Doctrine\ORM\MyBrokenEntity::$four type mapping mismatch: database can contain DateTimeImmutable but property expects DateTime.',
43,
],
[
'Property PHPStan\Rules\Doctrine\ORM\MyBrokenEntity::$four type mapping mismatch: property can contain DateTime but database expects DateTimeImmutable.',
43,
],
[
'Property PHPStan\Rules\Doctrine\ORM\MyBrokenEntity::$uuidInvalidType type mapping mismatch: database can contain Ramsey\Uuid\UuidInterface but property expects int.',
72,
],
[
'Property PHPStan\Rules\Doctrine\ORM\MyBrokenEntity::$uuidInvalidType type mapping mismatch: property can contain int but database expects Ramsey\Uuid\UuidInterface|string.',
72,
],
[
'Property PHPStan\Rules\Doctrine\ORM\MyBrokenEntity::$numericString type mapping mismatch: database can contain string but property expects numeric-string.',
126,
],
[
'Property PHPStan\Rules\Doctrine\ORM\MyBrokenEntity::$invalidCarbon type mapping mismatch: database can contain Carbon\Carbon but property expects Carbon\CarbonImmutable.',
132,
],
[
'Property PHPStan\Rules\Doctrine\ORM\MyBrokenEntity::$invalidCarbonImmutable type mapping mismatch: database can contain Carbon\CarbonImmutable but property expects Carbon\Carbon.',
138,
],
[
'Property PHPStan\Rules\Doctrine\ORM\MyBrokenEntity::$incompatibleJsonValueObject type mapping mismatch: property can contain PHPStan\Rules\Doctrine\ORM\EmptyObject but database expects array|bool|float|int|JsonSerializable|stdClass|string|null.',
156,
],
[
'Property PHPStan\Rules\Doctrine\ORM\MyBrokenEntity::$invalidSimpleArray type mapping mismatch: database can contain array<int, string> but property expects array<int>.',
162,
],
[
'Property PHPStan\Rules\Doctrine\ORM\MyBrokenEntity::$invalidSimpleArray type mapping mismatch: property can contain array<int> but database expects array<string>.',
162,
],
];
$dbalVersion = InstalledVersions::getVersion('doctrine/dbal');
$hasDbal4 = $dbalVersion !== null && strpos($dbalVersion, '4.') === 0;
if (!$hasDbal4) {
array_unshift($errors, [
'Property PHPStan\Rules\Doctrine\ORM\MyBrokenEntity::$id type mapping mismatch: database can contain string but property expects int|null.',
19,
]);
}
$this->analyse([__DIR__ . '/data/MyBrokenEntity.php'], $errors);
}
/**
* @dataProvider dataObjectManagerLoader
*/
public function testRuleOnMyEntity(?string $objectManagerLoader): void
{
$this->allowNullablePropertyForRequiredField = false;
$this->objectManagerLoader = $objectManagerLoader;
$this->analyse([__DIR__ . '/data/MyEntity.php'], []);
}
/**
* @dataProvider dataObjectManagerLoader
*/
public function testSuperclass(?string $objectManagerLoader): void
{
$this->allowNullablePropertyForRequiredField = false;
$this->objectManagerLoader = $objectManagerLoader;
$this->analyse([__DIR__ . '/data/MyBrokenSuperclass.php'], [
[
'Property PHPStan\Rules\Doctrine\ORM\MyBrokenSuperclass::$five type mapping mismatch: database can contain resource but property expects int.',
17,
],
]);
}
/**
* @dataProvider generatedIdsProvider
* @param list<array{0: string, 1: int, 2?: string}> $expectedErrors
*/
public function testGeneratedIds(string $file, array $expectedErrors, ?string $objectManagerLoader): void
{
$this->allowNullablePropertyForRequiredField = false;
$this->objectManagerLoader = $objectManagerLoader;
$this->analyse([$file], $expectedErrors);
}
/**
* @return Iterator<string, mixed[]>
*/
public function generatedIdsProvider(): Iterator
{
yield 'not nullable' => [__DIR__ . '/data/GeneratedIdEntity1.php', [], __DIR__ . '/entity-manager.php'];
yield 'not nullable 2' => [__DIR__ . '/data/GeneratedIdEntity1.php', [], null];
yield 'nullable column' => [
__DIR__ . '/data/GeneratedIdEntity2.php',
[
[
'Property PHPStan\Rules\Doctrine\ORM\GeneratedIdEntity2::$id type mapping mismatch: database can contain int|null but property expects int.',
19,
],
],
__DIR__ . '/entity-manager.php',
];
yield 'nullable column 2' => [
__DIR__ . '/data/GeneratedIdEntity2.php',
[
[
'Property PHPStan\Rules\Doctrine\ORM\GeneratedIdEntity2::$id type mapping mismatch: database can contain int|null but property expects int.',
19,
],
],
null,
];
yield 'nullable property' => [__DIR__ . '/data/GeneratedIdEntity3.php', [], __DIR__ . '/entity-manager.php'];
yield 'nullable property 2' => [__DIR__ . '/data/GeneratedIdEntity3.php', [], null];
yield 'nullable both' => [__DIR__ . '/data/GeneratedIdEntity4.php', [], __DIR__ . '/entity-manager.php'];
yield 'nullable both 2' => [__DIR__ . '/data/GeneratedIdEntity4.php', [], null];
yield 'composite' => [__DIR__ . '/data/CompositePrimaryKeyEntity1.php', [], __DIR__ . '/entity-manager.php'];
yield 'composite 2' => [__DIR__ . '/data/CompositePrimaryKeyEntity1.php', [], null];
yield 'no generated value 1' => [__DIR__ . '/data/GeneratedIdEntity5.php', [], __DIR__ . '/entity-manager.php'];
yield 'no generated value 1 2' => [__DIR__ . '/data/GeneratedIdEntity5.php', [], null];
yield 'no generated value 2' => [__DIR__ . '/data/GeneratedIdEntity6.php', [
[
'Property PHPStan\Rules\Doctrine\ORM\GeneratedIdEntity6::$id type mapping mismatch: property can contain int|null but database expects int.',
18,
],
], __DIR__ . '/entity-manager.php'];
yield 'no generated value 2 2' => [__DIR__ . '/data/GeneratedIdEntity6.php', [
[
'Property PHPStan\Rules\Doctrine\ORM\GeneratedIdEntity6::$id type mapping mismatch: property can contain int|null but database expects int.',
18,
],
], null];
}
/**
* @dataProvider dataObjectManagerLoader
*/
public function testCustomType(?string $objectManagerLoader): void
{
$this->allowNullablePropertyForRequiredField = false;
$this->objectManagerLoader = $objectManagerLoader;
$this->analyse([__DIR__ . '/data/EntityWithCustomType.php'], [
[
'Property PHPStan\Rules\Doctrine\ORM\EntityWithCustomType::$foo type mapping mismatch: database can contain DateTimeInterface but property expects int.',
24,
],
[
'Property PHPStan\Rules\Doctrine\ORM\EntityWithCustomType::$foo type mapping mismatch: property can contain int but database expects array.',
24,
],
[
'Property PHPStan\Rules\Doctrine\ORM\EntityWithCustomType::$numeric type mapping mismatch: property can contain string but database expects numeric-string.',
30,
],
]);
}
/**
* @dataProvider dataObjectManagerLoader
*/
public function testUnknownType(?string $objectManagerLoader): void
{
$this->allowNullablePropertyForRequiredField = false;
$this->objectManagerLoader = $objectManagerLoader;
$this->analyse([__DIR__ . '/data/EntityWithUnknownType.php'], [
[
'Property PHPStan\Rules\Doctrine\ORM\EntityWithUnknownType::$foo: Doctrine type "unknown" does not have any registered descriptor.',
24,
],
]);
}
/**
* @dataProvider dataObjectManagerLoader
*/
public function testEnumType(?string $objectManagerLoader): void
{
if (PHP_VERSION_ID < 80100) {
self::markTestSkipped('Test requires PHP 8.1.');
}
$this->allowNullablePropertyForRequiredField = false;
$this->objectManagerLoader = $objectManagerLoader;
$this->analyse([__DIR__ . '/data-attributes/enum-type.php'], [
[
'Property PHPStan\Rules\Doctrine\ORMAttributes\Foo::$type2 type mapping mismatch: database can contain PHPStan\Rules\Doctrine\ORMAttributes\FooEnum but property expects PHPStan\Rules\Doctrine\ORMAttributes\BarEnum.',
35,
],
[
'Property PHPStan\Rules\Doctrine\ORMAttributes\Foo::$type2 type mapping mismatch: property can contain PHPStan\Rules\Doctrine\ORMAttributes\BarEnum but database expects PHPStan\Rules\Doctrine\ORMAttributes\FooEnum.',
35,
],
[
'Property PHPStan\Rules\Doctrine\ORMAttributes\Foo::$type3 type mapping mismatch: backing type string of enum PHPStan\Rules\Doctrine\ORMAttributes\FooEnum does not match database type int.',
38,
],
]);
}
/**
* @dataProvider dataObjectManagerLoader
*/
public function testPhpStanBug6445(?string $objectManagerLoader): void
{
$this->allowNullablePropertyForRequiredField = false;
$this->objectManagerLoader = $objectManagerLoader;
$this->analyse([__DIR__ . '/data/phpstan-bug-6445.php'], []);
}
/**
* @dataProvider dataObjectManagerLoader
*/
public function testBug306(?string $objectManagerLoader): void
{
if (PHP_VERSION_ID < 80000) {
self::markTestSkipped('Test requires PHP 8.0');
}
$this->allowNullablePropertyForRequiredField = false;
$this->objectManagerLoader = $objectManagerLoader;
$this->analyse([__DIR__ . '/data/bug-306.php'], [
[
'Property PHPStan\Rules\Doctrine\ORM\Bug306\MyBrokenEntity::$one type mapping mismatch: database can contain string|null but property expects string.',
25,
],
]);
}
}