-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathExpressionEngineTest.php
More file actions
228 lines (188 loc) · 5.94 KB
/
ExpressionEngineTest.php
File metadata and controls
228 lines (188 loc) · 5.94 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
221
222
223
224
225
226
227
228
<?php
namespace Kettasoft\Filterable\Tests\Unit\Engines;
use Illuminate\Http\Request;
use Kettasoft\Filterable\Filterable;
use Kettasoft\Filterable\Tests\TestCase;
use Kettasoft\Filterable\Tests\Models\Tag;
use Kettasoft\Filterable\Tests\Models\Post;
use Kettasoft\Filterable\Engines\Expression;
use Symfony\Component\HttpFoundation\InputBag;
use Kettasoft\Filterable\Exceptions\InvalidOperatorException;
use Kettasoft\Filterable\Exceptions\NotAllowedFieldException;
class ExpressionEngineTest extends TestCase
{
public function setUp(): void
{
parent::setUp();
$total = 15;
$posts1 = Post::factory()->create([
'status' => 'stopped',
]);
Post::factory($total)->create([
'status' => 'active',
'content' => null
]);
Post::factory($total)->create([
'status' => 'pending',
'content' => null
]);
Tag::factory()->create([
'post_id' => $posts1->first()->id,
'name' => 'stopped'
]);
}
/**
* It applies basic ruleset filters correctly.
* @test
*/
public function it_applies_basic_ruleset_filters_correctly()
{
$request = Request::create('/posts?filter[status][eq]=pending');
$filter = Filterable::withRequest($request)
->useEngin('expression')
->setAllowedFields(['status'])
->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()
{
$request = Request::create('/posts?status=pending');
$this->assertThrows(function () use ($request) {
Filterable::withRequest($request)
->setAllowedFields([])
->useEngin('expression')
->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(Expression::class)
->apply(Post::query());
}, NotAllowedFieldException::class);
}
/**
* It can permissive mode locally.
* @test
*/
public function it_can_use_permissive_mode_locally()
{
config()->set('filterable.engines.expression.strict', true);
$request = Request::create('/posts?status=pending');
$filterable = Filterable::withRequest($request)
->permissive()
->setAllowedFields([])
->useEngin(Expression::class)
->apply(Post::query());
$this->assertEquals(31, $filterable->count());
}
/**
* @test
*/
public function it_use_sql_expression_engin_with_relations_test()
{
$request = Request::create('/posts?filter[tags.name]=stopped&filter[status][eq]=stopped');
$filter = Filterable::withRequest($request)
->setAllowedFields(['status'])
->setRelations([
'tags'
])
->useEngin('expression')
->apply(Post::query());
$this->assertEquals(1, $filter->count());
}
/**
* It applies basic ruleset filters correctly.
* @test
*/
public function it_cant_filtering_with_not_allowed_operators()
{
$request = Request::create('/posts?filter[status][like]=stopped');
$this->assertThrows(function () use ($request) {
Filterable::withRequest($request)
->setAllowedFields(['status'])
->allowdOperators(['eq'])
->useEngin(Expression::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.expression.strict', false);
$request = Request::create('/posts?filter[status][like]=pending');
$filterable = Filterable::withRequest($request)
->setAllowedFields(['status'])
->allowdOperators(['eq'])
->useEngin('expression')
->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.expression.strict', false);
$request = Request::create('/posts?filter[status][like]=pending');
$this->assertThrows(function () use ($request) {
Filterable::withRequest($request)
->setAllowedFields(['status'])
->allowdOperators(['eq'])
->useEngin(Expression::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(Expression::class)
->strict()
->apply(Post::query());
$this->assertEquals(15, $filter->count());
}
public function test_it_sanitize_value_before_applying_to_query()
{
$request = Request::create('/posts');
$request->setJson(new InputBag([
'status' => 'PENDING'
]));
$filter = Filterable::withRequest($request)
->setAllowedFields(['status'])
->useEngin(Expression::class)
->setSanitizers([
'status' => fn($value) => strtolower($value)
])
->apply(Post::query());
$this->assertEquals(15, $filter->count());
}
}