-
-
Notifications
You must be signed in to change notification settings - Fork 164
/
Copy pathEnumTest.php
249 lines (200 loc) · 8.54 KB
/
EnumTest.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
<?php declare(strict_types=1);
namespace BenSampo\Enum\Tests;
use BenSampo\Enum\Enum;
use BenSampo\Enum\Tests\Enums\MixedKeyFormats;
use BenSampo\Enum\Tests\Enums\StringValues;
use BenSampo\Enum\Tests\Enums\SuperPowers;
use BenSampo\Enum\Tests\Enums\UserType;
use Illuminate\Support\Collection;
use PHPUnit\Framework\TestCase;
final class EnumTest extends TestCase
{
public function testEnumGetKeys(): void
{
$keys = UserType::getKeys();
$expectedKeys = ['Administrator', 'Moderator', 'Subscriber', 'SuperAdministrator'];
$this->assertSame($expectedKeys, $keys);
$keys = UserType::getKeys(UserType::Administrator);
$expectedKeys = ['Administrator'];
$this->assertSame($expectedKeys, $keys);
$keys = UserType::getKeys(UserType::Administrator, UserType::Moderator);
$expectedKeys = ['Administrator', 'Moderator'];
$this->assertSame($expectedKeys, $keys);
$keys = UserType::getKeys([UserType::Administrator, UserType::Moderator]);
$expectedKeys = ['Administrator', 'Moderator'];
$this->assertSame($expectedKeys, $keys);
}
public function testEnumCoerce(): void
{
$enum = UserType::coerce(UserType::Administrator()->value);
$this->assertInstanceOf(UserType::class, $enum);
$this->assertSame(UserType::Administrator, $enum->value);
$enum = UserType::coerce(UserType::Administrator()->key);
$this->assertInstanceOf(UserType::class, $enum);
$this->assertSame(UserType::Administrator, $enum->value);
$enum = UserType::coerce(-1);
$this->assertNull($enum);
$enum = UserType::coerce(null);
$this->assertNull($enum);
$enum = UserType::coerce(UserType::Administrator());
$this->assertSame(UserType::Administrator, $enum->value);
$enum = SuperPowers::coerce(SuperPowers::LaserVision);
$this->assertInstanceOf(SuperPowers::class, $enum);
$enum = SuperPowers::coerce(SuperPowers::LaserVision()->key);
$this->assertInstanceOf(SuperPowers::class, $enum);
$enum = SuperPowers::coerce(3);
$this->assertInstanceOf(SuperPowers::class, $enum);
$enum = SuperPowers::coerce(SuperPowers::flags([SuperPowers::Flight, SuperPowers::LaserVision]));
$this->assertInstanceOf(SuperPowers::class, $enum);
$enum = SuperPowers::coerce('Test');
$this->assertNull($enum);
}
public function testEnumGetValues(): void
{
$values = UserType::getValues();
$expectedValues = [0, 1, 2, 3];
$this->assertSame($expectedValues, $values);
$values = UserType::getValues('Administrator');
$expectedValues = [0];
$this->assertSame($expectedValues, $values);
$values = UserType::getValues('Administrator', 'Moderator');
$expectedValues = [0, 1];
$this->assertSame($expectedValues, $values);
$values = UserType::getValues(['Administrator', 'Moderator']);
$expectedValues = [0, 1];
$this->assertSame($expectedValues, $values);
}
public function testEnumGetKey(): void
{
$this->assertSame('Moderator', UserType::getKey(1));
$this->assertSame('SuperAdministrator', UserType::getKey(3));
}
public function testEnumGetKeyUsingStringValue(): void
{
$this->assertSame('Administrator', StringValues::getKey('administrator'));
}
public function testEnumGetValue(): void
{
$this->assertSame(1, UserType::getValue('Moderator'));
$this->assertSame(3, UserType::getValue('SuperAdministrator'));
}
public function testEnumGetValueUsingStringKey(): void
{
$this->assertSame('administrator', StringValues::getValue('Administrator'));
}
public function testEnumGetDescription(): void
{
$this->assertSame('Normal', MixedKeyFormats::getDescription(MixedKeyFormats::Normal));
$this->assertSame('Multi word key name', MixedKeyFormats::getDescription(MixedKeyFormats::MultiWordKeyName));
$this->assertSame('Uppercase', MixedKeyFormats::getDescription(MixedKeyFormats::UPPERCASE));
$this->assertSame('Uppercase snake case', MixedKeyFormats::getDescription(MixedKeyFormats::UPPERCASE_SNAKE_CASE));
$this->assertSame('Lowercase snake case', MixedKeyFormats::getDescription(MixedKeyFormats::lowercase_snake_case));
$this->assertSame('Uppercase snake case numeric suffix 2', MixedKeyFormats::getDescription(MixedKeyFormats::UPPERCASE_SNAKE_CASE_NUMERIC_SUFFIX_2));
$this->assertSame('Lowercase snake case numeric suffix 2', MixedKeyFormats::getDescription(MixedKeyFormats::lowercase_snake_case_numeric_suffix_2));
}
public function testEnumGetClassDescription(): void
{
$this->assertSame('Mixed key formats', MixedKeyFormats::getClassDescription());
}
public function testEnumGetRandomKey(): void
{
$this->assertContains(UserType::getRandomKey(), UserType::getKeys());
}
public function testEnumGetRandomValue(): void
{
$this->assertContains(UserType::getRandomValue(), UserType::getValues());
}
public function testEnumToArray(): void
{
$array = UserType::asArray();
$expectedArray = [
'Administrator' => 0,
'Moderator' => 1,
'Subscriber' => 2,
'SuperAdministrator' => 3,
];
$this->assertSame($expectedArray, $array);
}
public function testEnumAsSelectArray(): void
{
$array = UserType::asSelectArray();
$expectedArray = [
0 => 'Administrator',
1 => 'Moderator',
2 => 'Subscriber',
3 => 'Super administrator',
];
$this->assertSame($expectedArray, $array);
}
public function testEnumAsSelectArrayWithStringValues(): void
{
$array = StringValues::asSelectArray();
$expectedArray = [
'administrator' => 'Administrator',
'moderator' => 'Moderator',
];
$this->assertSame($expectedArray, $array);
}
public function testEnumIsMacroableWithStaticMethods(): void
{
$name = 'asFlippedArray';
Enum::macro($name, function () {
// @phpstan-ignore-next-line self is rebound to Enum
return array_flip(self::asArray());
});
$this->assertTrue(UserType::hasMacro($name));
$reimplementedResult = array_flip(UserType::asArray());
// @phpstan-ignore-next-line TODO make extension recognize macro
$macroResult = UserType::asFlippedArray();
$this->assertSame($reimplementedResult, $macroResult);
}
public function testEnumIsMacroableWithInstanceMethods(): void
{
$name = 'macroGetValue';
Enum::macro($name, function () {
// @phpstan-ignore-next-line $this is rebound to Enum
return $this->value;
});
$this->assertTrue(UserType::hasMacro($name));
$value = UserType::Administrator;
$user = new UserType($value);
// @phpstan-ignore-next-line TODO make extension recognize macro
$valueFromMacro = $user->macroGetValue();
$this->assertSame($value, $valueFromMacro);
}
public function testEnumGetInstances(): void
{
/** @var StringValues $administrator */
/** @var StringValues $moderator */
[
'Administrator' => $administrator,
'Moderator' => $moderator
] = StringValues::getInstances();
$this->assertTrue(
$administrator->is(StringValues::Administrator)
);
$this->assertTrue(
$moderator->is(StringValues::Moderator)
);
}
public function testEnumCanBeCastToString(): void
{
$enumWithZeroIntegerValue = new UserType(UserType::Administrator);
$enumWithPositiveIntegerValue = new UserType(UserType::SuperAdministrator);
$enumWithStringValue = new StringValues(StringValues::Moderator);
// Numbers should be cast to strings
$this->assertSame('0', (string) $enumWithZeroIntegerValue);
$this->assertSame('3', (string) $enumWithPositiveIntegerValue);
// Strings should just be returned
$this->assertSame(StringValues::Moderator, (string) $enumWithStringValue);
}
public function testEnumCanBeJsonEncoded(): void
{
$this->assertSame('1', json_encode(UserType::Moderator()));
}
public function testEnumShowsJustValueWhenLaravelRecursivelyConvertsArrayable(): void
{
$enums = new Collection([UserType::Moderator()]);
$this->assertSame([UserType::Moderator], $enums->toArray());
}
}