-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRulesetEngineTest.php
More file actions
204 lines (168 loc) · 5.47 KB
/
RulesetEngineTest.php
File metadata and controls
204 lines (168 loc) · 5.47 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
<?php
namespace Kettasoft\Filterable\Tests\Unit\Engines;
use Illuminate\Http\Request;
use Kettasoft\Filterable\Filterable;
use Kettasoft\Filterable\Tests\TestCase;
use Kettasoft\Filterable\Engines\Ruleset;
use Kettasoft\Filterable\Tests\Models\Post;
use Kettasoft\Filterable\Exceptions\InvalidOperatorException;
use Kettasoft\Filterable\Exceptions\NotAllowedFieldException;
use Symfony\Component\HttpFoundation\InputBag;
class RulesetEngineTest extends TestCase
{
public function setUp(): void
{
parent::setUp();
$total = 15;
Post::factory($total)->create([
'status' => 'stopped',
'title' => 'PHP',
'content' => 'PHP artical'
]);
Post::factory($total)->create([
'status' => 'active',
'title' => 'C#',
'content' => 'C# artical'
]);
Post::factory($total)->create([
'status' => 'pending',
'title' => 'Java',
'content' => 'Java artical'
]);
config()->set('filterable.default_engine', 'ruleset');
}
/**
* It applies basic ruleset filters correctly.
* @test
*/
public function it_applies_basic_ruleset_filters_correctly()
{
$request = Request::create('/posts?status=pending');
$filter = Filterable::withRequest($request)->setAllowedFields(['status'])->useEngin(Ruleset::class)->apply(Post::query());
$this->assertEquals(15, $filter->count());
}
/**
* It throw exception when enable engine strict mode with not allowed fields.
* @test
*/
public function it_throw_exception_when_enable_engine_strict_mode_globally_when_has_not_allowed_fields()
{
config()->set('filterable.engines.ruleset.strict', true);
$request = Request::create('/posts?status=pending');
$this->assertThrows(function () use ($request) {
Filterable::withRequest($request)
->setAllowedFields([])
->useEngin(Ruleset::class)
->apply(Post::query());
}, NotAllowedFieldException::class);
}
/**
* It throw exception when enable engine strict mode with not allowed fields.
* @test
*/
public function it_throw_exception_when_enable_engine_strict_mode_locally_when_has_not_allowed_fields()
{
// Disable strict mode globally
config()->set('filterable.engines.ruleset.strict', false);
$request = Request::create('/posts?status=pending');
$this->assertThrows(function () use ($request) {
Filterable::withRequest($request)
->strict()
->setAllowedFields([])
->useEngin(Ruleset::class)
->apply(Post::query());
}, NotAllowedFieldException::class);
}
/**
* It can permissive mode locally.
* @test
*/
public function it_can_use_permissive_mode_locally()
{
config()->set('filterable.engines.ruleset.strict', true);
$request = Request::create('/posts?status=pending');
$filterable = Filterable::withRequest($request)
->permissive()
->setAllowedFields([])
->useEngin(Ruleset::class)
->apply(Post::query());
$this->assertEquals(45, $filterable->count());
}
/**
* It applies basic ruleset filters correctly.
* @test
*/
public function it_cant_filtering_with_not_allowed_operators()
{
$request = Request::create('/posts?status=like:pending');
$this->assertThrows(function () use ($request) {
Filterable::withRequest($request)
->setAllowedFields(['status'])
->allowdOperators(['eq'])
->useEngin(Ruleset::class)
->apply(Post::query());
}, InvalidOperatorException::class);
}
/**
* It can use default operator when invalid receved operator
* @test
*/
public function it_can_use_default_operator_when_invalid_receved_operator()
{
config()->set('filterable.engines.ruleset.strict', false);
$request = Request::create('/posts?status=like:pending');
$filterable = Filterable::withRequest($request)
->setAllowedFields(['status'])
->allowdOperators(['eq'])
->useEngin(Ruleset::class)
->apply(Post::query());
$this->assertEquals(15, $filterable->count());
}
/**
* It cant use default operator when enabled strict mode.
* @test
*/
public function it_cant_use_default_operator_when_enabled_strict_mode()
{
config()->set('filterable.engines.ruleset.strict', false);
$request = Request::create('/posts?status=like:pending');
$this->assertThrows(function () use ($request) {
Filterable::withRequest($request)
->setAllowedFields(['status'])
->allowdOperators(['eq'])
->useEngin(Ruleset::class)
->strict()
->apply(Post::query());
}, InvalidOperatorException::class);
}
/**
* It can sent json data to filtering operate.
* @test
*/
public function it_can_sent_json_data_to_filtering_operate()
{
config()->set('filterable.engines.ruleset.strict', false);
$request = Request::create('/posts');
$request->setJson(new InputBag([
'status' => 'pending'
]));
$filter = Filterable::withRequest($request)
->setAllowedFields(['status'])
->useEngin(Ruleset::class)
->strict()
->apply(Post::query());
$this->assertEquals(15, $filter->count());
}
public function test_it_sanitize_value_before_applying_to_query()
{
$request = Request::create('/posts?status=eq:PENDING');
$filter = Filterable::withRequest($request)
->setAllowedFields(['status'])
->useEngin(Ruleset::class)
->setSanitizers([
'status' => fn($value) => strtolower($value)
])
->apply(Post::query());
$this->assertEquals(15, $filter->count());
}
}