generated from spatie/package-skeleton-laravel
-
-
Notifications
You must be signed in to change notification settings - Fork 223
/
Copy pathRequestDataTest.php
255 lines (216 loc) · 7.85 KB
/
RequestDataTest.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
<?php
namespace Spatie\LaravelData\Tests;
use Illuminate\Auth\Access\AuthorizationException;
use Illuminate\Auth\AuthenticationException;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Route;
use Illuminate\Testing\TestResponse;
use Illuminate\Validation\Rule;
use Illuminate\Validation\ValidationException;
use Illuminate\Validation\Validator;
use Spatie\LaravelData\Tests\Factories\DataBlueprintFactory;
use Spatie\LaravelData\Tests\Factories\DataMagicMethodFactory;
use Spatie\LaravelData\Tests\Factories\DataPropertyBlueprintFactory;
use Spatie\LaravelData\Tests\Fakes\RequestData;
use Spatie\LaravelData\Tests\Fakes\SimpleData;
class RequestDataTest extends TestCase
{
public function setUp(): void
{
parent::setUp();
$this->handleExceptions([
AuthenticationException::class,
AuthorizationException::class,
ValidationException::class,
]);
RequestData::clear();
Route::post('/example-route', function (RequestData $data) {
return ['given' => $data->string];
});
}
/** @test */
public function it_can_pass_validation()
{
$this->performRequest('Hello')
->assertOk()
->assertJson(['given' => 'Hello']);
}
/** @test */
public function it_can_fail_validation()
{
$this->performRequest('Hello World')
->assertStatus(422)
->assertJsonValidationErrors(['string' => __('validation.max.string', ['attribute' => 'string', 'max' => 10])]);
}
/** @test */
public function it_can_overwrite_validation_rules()
{
RequestData::$rules = ['string' => 'max:200'];
$this->performRequest('Accepted string longer then 10 characters from attribute on data object')
->assertOk()
->assertJson(['given' => 'Accepted string longer then 10 characters from attribute on data object']);
}
/** @test */
public function it_can_overwrite_rules_like_a_regular_laravel_request()
{
RequestData::$rules = ['string' => 'min:10|numeric'];
$this->performRequest('Too short')
->assertStatus(422)
->assertJsonValidationErrors([
'string' => [
__('validation.min.string', ['attribute' => 'string', 'min' => 10]),
__('validation.numeric', ['attribute' => 'string']),
],
]);
RequestData::$rules = ['string' => ['min:10', 'numeric']];
$this->performRequest('Too short')
->assertStatus(422)
->assertJsonValidationErrors([
'string' => [
__('validation.min.string', ['attribute' => 'string', 'min' => 10]),
__('validation.numeric', ['attribute' => 'string']),
],
]);
RequestData::$rules = ['string' => Rule::in(['alpha', 'beta'])];
$this->performRequest('Not in list')
->assertStatus(422)
->assertJsonValidationErrors([
'string' => __('validation.in', ['attribute' => 'string']),
]);
}
/** @test */
public function it_can_overwrite_validation_messages()
{
RequestData::$messages = [
'max' => 'too long',
];
$this->performRequest('Hello World')
->assertStatus(422)
->assertJsonValidationErrors(['string' => 'too long']);
}
/** @test */
public function it_can_overwrite_validation_attributes()
{
RequestData::$attributes = [
'string' => 'data property',
];
$this->performRequest('Hello world')
->assertStatus(422)
->assertJsonValidationErrors(['string' => __('validation.max.string', ['attribute' => 'data property', 'max' => 10])]);
}
/** @test */
public function it_can_change_the_validator()
{
RequestData::$validatorClosure = fn (Validator $validator) => $validator->setRules([]);
$this->performRequest('Hello world')
->assertOk()
->assertJson(['given' => 'Hello world']);
}
/** @test */
public function it_can_nest_data()
{
DataBlueprintFactory::new('SingleNestedData')->withProperty(
DataPropertyBlueprintFactory::new('simple')->withType(SimpleData::class)
)->create();
Route::post('/nested-route', function (\SingleNestedData $data) {
return ['given' => $data->simple->string];
});
$this->postJson('/nested-route', [
'simple' => [
'string' => 'Hello World',
],
])
->assertOk()
->assertSee('Hello World');
$this->postJson('/nested-route', [
'simple' => [
'string' => 5333,
],
])
->assertStatus(422)
->assertJsonValidationErrors(['simple.string' => 'The simple.string must be a string.']);
}
/** @test */
public function it_can_nest_collections_of_data()
{
DataBlueprintFactory::new('CollectionNestedData')->withProperty(
DataPropertyBlueprintFactory::dataCollection('simple_collection', SimpleData::class)
)->create();
Route::post('/nested-route', function (\CollectionNestedData $data) {
return ['given' => $data->simple_collection->all()];
});
$this->postJson('/nested-route', [
'simple_collection' => [
[
'string' => 'Hello World',
],
[
'string' => 'Goodbye',
],
],
])
->assertOk()
->assertJson([
'given' => [
[
'string' => 'Hello World',
],
[
'string' => 'Goodbye',
],
],
]);
$this->postJson('/nested-route', [
'simple_collection' => [
[
'string' => 'Hello World',
],
[
'string' => 3.14,
],
],
])
->assertStatus(422)
->assertJsonValidationErrors(['simple_collection.1.string' => 'The simple_collection.1.string must be a string.']);
}
/** @test */
public function it_can_check_for_authorisation()
{
RequestData::$enableAuthorizeFailure = true;
$this->performRequest('Hello')->assertStatus(403);
}
/** @test */
public function it_can_check_for_authorisation_with_wrong_method_name()
{
RequestData::$enableAuthorizedFailure = true;
$this->performRequest('Hello')->assertStatus(403);
}
/** @test */
public function it_can_manually_override_how_the_data_object_will_be_constructed()
{
DataBlueprintFactory::new('OverrideableDataFromRequest')
->withProperty(DataPropertyBlueprintFactory::new('name')->withType('string'))
->withMethod(
DataMagicMethodFactory::new('fromRequest')
->withInputType(Request::class, 'request')
->withBody('return new self("{$request->input(\'first_name\')} {$request->input(\'last_name\')}");')
)
->create();
Route::post('/other-route', function (\OverrideableDataFromRequest $data) {
return ['name' => $data->name];
});
$this->postJson('/other-route', [
'name' => 'ignore', // TODO, how can we remove this rule?
'first_name' => 'Rick',
'last_name' => 'Astley',
])
->assertOk()
->assertJson(['name' => 'Rick Astley']);
}
private function performRequest(string $string): TestResponse
{
return $this->postJson('/example-route', [
'string' => $string,
]);
}
}