-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathValidationTest.php
More file actions
220 lines (180 loc) · 6.13 KB
/
ValidationTest.php
File metadata and controls
220 lines (180 loc) · 6.13 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
<?php
use Airwire\Airwire;
use Airwire\Attributes\Wired;
use Airwire\Component;
beforeAll(function () {
Airwire::component('autovalidated-component', AutovalidatedComponent::class);
Airwire::component('manually-validated-component', ManuallyValidatedComponent::class);
Airwire::component('multi-input-component', MultiInputComponent::class);
Airwire::component('implicitly-validated-component', ImplicitlyValidatedComponent::class);
});
test('validation is executed on the new state (old state + changes)', function () {
// ❌ Old state was invalid, too short name
expect(Airwire::test('autovalidated-component')
->state(['name' => 'sam'])
->send()->errors()
)->not()->toBeEmpty();
// ✅ Valid state after changes are applied
expect(Airwire::test('autovalidated-component')
->state(['name' => 'sam'])
->changes(['name' => 'sam 123456789'])
->send()->errors()
)->toBeEmpty();
// ❌ Invalid state after changes arre applied
expect(Airwire::test('autovalidated-component')
->state(['name' => 'sam 123456789'])
->changes(['email' => 'sam123456789@toolong.com'])
->send()->errors()
)->not()->toBeEmpty();
});
test('properties CANNOT be changed when validation fails and strict validation is ON', function () {
expect(Airwire::test('autovalidated-component')
->state(['name' => 'original'])
->changes(['name' => 'failing'])
->send()->data('name')
)->toBe('original');
});
// Strict validation prevents ANY EXECUTION AT ALL when the received state is invalid
test('properties CANNOT be changed when validation fails for any other properties and strict validation is ON', function () {
expect(Airwire::test('autovalidated-component')
->state(['name' => 'original', 'email' => 'original@email'])
->changes(['name' => 'failing', 'email' => 'new@email'])
->send()->data
)->toBe([
'name' => 'original',
'email' => 'original@email',
]);
});
test('methods CANNOT be called when validation fails and strict validation is ON', function () {
expect(Airwire::test('autovalidated-component')
->state(['name' => 'sam'])
->call('foo')
->send()->metadata->calls
)->not()->toHaveKey('foo');
});
test('properties CAN be changed when validation fails and strict validation is OFF', function () {
expect(Airwire::test('manually-validated-component')
->state(['name' => 'sam']) // Failing validation
->changes(['name' => 'failing'])
->send()->data('name')
)->toBe('failing');
});
test('only changes are reversed, old state will be returned even if it is invalid', function () {
$response = Airwire::test('manually-validated-component')
->state(['name' => 'sam']) // ❌ Failing validation
->call('foo')
->send();
expect($response->data('name'))->toBe('sam');
});
test('when methods call validate() and it fails, execution is stopped', function () {
$response = Airwire::test('manually-validated-component')
->state(['name' => 'sam']) // ❌ Failing validation
->call('foo') // No validation
->send();
expect($response->data('name'))->toBe('sam');
expect($response->call('foo'))->toBe('bar');
expect($response->call('abc'))->toBe(null);
$response = Airwire::test('manually-validated-component')
->state(['name' => 'sam 123456789', 'email' => 'foo']) // ✅ Passing validation
->call('foo')
->call('abc') // Manual validation
->send();
expect($response->call('foo'))->toBe('bar');
expect($response->call('abc'))->toBe('xyz');
});
test('validate can be used to prevent updating', function () {
expect(MultiInputComponent::test()
->state(['name' => 'original', 'email' => 'valid@mail'])
->changes(['name' => 'invalid'])
->send()->data('name')
)->toBe('original');
});
test('validated can be used to validate the specified properties and get their values', function () {
expect(MultiInputComponent::test()
->state(['name' => 'invalid', 'email' => 'valid@mail'])
->call('method')
->send()->call('method')
)->toBe(null);
expect(MultiInputComponent::test()
->state(['name' => 'very valid', 'email' => 'valid@mail'])
->call('method')
->send()->call('method')
)->toBe(['name' => 'very valid', 'email' => 'valid@mail']);
});
test('uncaught validation exceptions in hydrate terminate execution', function () {
expect(
ImplicitlyValidatedComponent::test()
->state(['foo' => 'abc'])
->send()->errors()
)->toHaveKey('foo');
});
class AutovalidatedComponent extends Component
{
#[Wired]
public string $name;
#[Wired]
public string $email;
public $rules = [
'name' => ['required', 'min:10'],
'email' => ['nullable', 'max:10'],
];
#[Wired]
public function foo()
{
return 'bar';
}
}
class ManuallyValidatedComponent extends Component
{
public bool $strictValidation = false;
#[Wired]
public string $name;
#[Wired]
public string $email;
public $rules = [
'name' => ['required', 'min:10'],
'email' => ['nullable', 'max:10'],
];
#[Wired]
public function foo()
{
return 'bar';
}
#[Wired]
public function abc()
{
$this->validate();
return 'xyz';
}
}
class MultiInputComponent extends Component
{
public bool $strictValidation = false;
#[Wired]
public string $name;
#[Wired]
public string $email;
public $rules = [
'name' => ['required', 'min:10'],
'email' => ['nullable', 'max:20'],
];
public function updating(string $property, mixed $new, mixed $old): bool
{
return $this->validate($property);
}
#[Wired]
public function method()
{
return $this->validated();
}
}
class ImplicitlyValidatedComponent extends Component
{
public bool $strictValidation = false;
#[Wired()]
public string $foo;
public array $rules = [
'foo' => ['required', 'min:10'],
];
// validated in dehydrate()
}