-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathControllerTest.php
More file actions
81 lines (74 loc) · 2.15 KB
/
ControllerTest.php
File metadata and controls
81 lines (74 loc) · 2.15 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
<?php
declare(strict_types=1);
use EdineiValdameri\Laravel\DynamicValidation\Models\Rule;
it('validates the return of the dynamic controller\'s index method', function () {
$response = $this->get('dynamic');
$response->assertOk();
});
it('validates the return of the dynamic controller\'s store method', function () {
$response = $this->post('dynamic', [
'action' => 'test',
'field' => 'test',
'rule' => 'required',
]);
$response->assertOk();
$this->assertDatabaseHas(Rule::class, [
'action' => 'test',
'field' => 'test',
'rule' => 'required',
]);
});
it('validates the return of the dynamic controller\'s update method', function () {
$rule = Rule::query()->create([
'action' => 'test',
'field' => 'test',
'rule' => 'required',
]);
$response = $this->put("dynamic/{$rule->getKey()}", [
'action' => 'action',
'field' => 'field',
'rule' => 'nullable',
]);
$response->assertOk();
$this->assertDatabaseHas(Rule::class, [
'id' => $rule->getKey(),
'action' => 'action',
'field' => 'field',
'rule' => 'nullable',
]);
});
it('validates the return of the dynamic controller\'s show method', function () {
Rule::query()->create([
'action' => 'test',
'field' => 'test',
'rule' => 'required',
]);
$response = $this->get('dynamic/test');
$response->assertOk();
$response->assertJsonFragment([
'action' => 'test',
'field' => 'test',
'rule' => 'required',
]);
});
it('validates the return of the dynamic controller\'s schema method', function () {
Rule::query()->create([
'action' => 'test',
'field' => 'test',
'rule' => 'required',
]);
Rule::query()->create([
'action' => 'test',
'field' => 'test',
'rule' => 'string',
]);
$response = $this->get('dynamic/test/schema');
$response->assertOk();
$response->assertJsonFragment([
'type' => 'object',
'required' => ['test'],
'properties' => [
'test' => ['type' => 'string'],
],
]);
});