-
-
Notifications
You must be signed in to change notification settings - Fork 164
/
Copy pathNativeEnumCastTest.php
102 lines (77 loc) · 3.25 KB
/
NativeEnumCastTest.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
<?php declare(strict_types=1);
namespace BenSampo\Enum\Tests;
use BenSampo\Enum\Exceptions\InvalidEnumMemberException;
use BenSampo\Enum\Tests\Enums\UserType;
use BenSampo\Enum\Tests\Enums\UserTypeCustomCast;
use BenSampo\Enum\Tests\Models\NativeCastModel;
use PHPUnit\Framework\TestCase;
final class NativeEnumCastTest extends TestCase
{
public function testCanSetModelValueUsingEnumInstance(): void
{
$model = new NativeCastModel();
$model->user_type = UserType::Moderator();
$this->assertEquals(UserType::Moderator(), $model->user_type);
}
public function testCanSetModelValueUsingEnumValue(): void
{
$model = new NativeCastModel();
// @phpstan-ignore-next-line loose typing
$model->user_type = UserType::Moderator;
$this->assertEquals(UserType::Moderator(), $model->user_type);
}
public function testCannotSetModelValueUsingInvalidEnumValue(): void
{
$model = new NativeCastModel();
$this->expectException(InvalidEnumMemberException::class);
// @phpstan-ignore-next-line intentionally wrong
$model->user_type = 5;
}
public function testGettingModelValueReturnsEnumInstance(): void
{
$model = new NativeCastModel();
// @phpstan-ignore-next-line loose typing
$model->user_type = UserType::Moderator;
// @phpstan-ignore-next-line casts change the set property
$this->assertInstanceOf(UserType::class, $model->user_type);
}
public function testCanGetAndSetNullOnEnumCastable(): void
{
$model = new NativeCastModel();
$model->user_type = null;
$this->assertNull($model->user_type);
}
public function testCanHandleStringIntFromDatabase(): void
{
$model = new NativeCastModel();
$reflection = new \ReflectionProperty(NativeCastModel::class, 'attributes');
$reflection->setAccessible(true);
$reflection->setValue($model, ['user_type' => '1']);
$this->assertInstanceOf(UserType::class, $model->user_type);
}
public function testThatModelWithEnumCanBeCastToArray(): void
{
$model = new NativeCastModel();
$model->user_type = UserType::Moderator();
$this->assertSame(['user_type' => 1], $model->toArray());
}
public function testCanUseCustomCasting(): void
{
$model = new NativeCastModel();
$reflection = new \ReflectionProperty(NativeCastModel::class, 'attributes');
$reflection->setAccessible(true);
$reflection->setValue($model, ['user_type_custom' => 'type-3']);
$this->assertInstanceOf(UserTypeCustomCast::class, $model->user_type_custom);
$this->assertEquals(UserTypeCustomCast::SuperAdministrator(), $model->user_type_custom);
$model->user_type_custom = UserTypeCustomCast::Administrator();
$this->assertSame('type-0', $reflection->getValue($model)['user_type_custom']);
}
public function testCanBailCustomCasting(): void
{
$model = new NativeCastModel();
$reflection = new \ReflectionProperty(NativeCastModel::class, 'attributes');
$reflection->setAccessible(true);
$reflection->setValue($model, ['user_type_custom' => '']);
$this->assertNull($model->user_type_custom);
}
}