-
-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathJsonMatcherTest.php
336 lines (304 loc) · 11.9 KB
/
JsonMatcherTest.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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
<?php
declare(strict_types=1);
namespace Coduo\PHPMatcher\Tests\Matcher;
use Coduo\PHPMatcher\Backtrace;
use Coduo\PHPMatcher\Lexer;
use Coduo\PHPMatcher\Matcher;
use Coduo\PHPMatcher\Matcher\JsonMatcher;
use Coduo\PHPMatcher\Parser;
use PHPUnit\Framework\TestCase;
class JsonMatcherTest extends TestCase
{
private ?JsonMatcher $matcher = null;
public static function positivePatterns()
{
return [
[\json_encode(['Norbert', 'Michał'])],
[\json_encode(['Norbert', '@string@'])],
[\json_encode('test')],
];
}
public static function negativePatterns()
{
return [
['@string@'],
['["Norbert", '],
['@array@.repeat({"name": "@string@", "value": "@array@"})'],
];
}
public static function positiveMatches()
{
return [
[
'{"users":["Norbert","Michał"]}',
'{"users":["@string@","@string@"]}',
],
[
'{"users":["Norbert","Michał"]}',
'{"users":["@string@","@...@"]}',
],
[
'{"users":["Norbert","Michał"]}',
'{"users":["@string@",@...@]}',
],
[
'{"numbers":[1,2]}',
'{"numbers":[@integer@, @integer@]}',
],
[
'{"foobar":[1.22, 2, "hello"]}',
'{"foobar":[@double@, @integer@, @string@]}',
],
[
'{"entries":[{"id":1,"question":"test","answer":"test","os":"test"}]}',
'{"entries": "@array@.repeat({
\"id\": \"@number@\",
\"question\": \"@string@\",
\"answer\": \"@string@\",
\"os\": \"@*@\"
})"}',
],
[
'{"null":[null]}',
'{"null":[@null@]}',
],
[
'{"null":null}',
'{"null":@null@}',
],
[
'{"username":null,"some_data":"test"}',
'{"username":null, "some_data": @string@}',
],
[
'{"null":null}',
'{"null":null}',
],
[
'{"users":["Norbert","Michał",[]]}',
'{"users":["Norbert","@string@",@...@]}',
],
[
'{"users":[{"firstName":"Norbert","lastName":"Orzechowicz","roles":["ROLE_USER", "ROLE_DEVELOPER"]}]}',
'{"users":[{"firstName":"Norbert","lastName":"Orzechowicz","roles":"@wildcard@"}]}',
],
[
'{"users":[{"firstName":"Norbert","lastName":"Orzechowicz","roles":["ROLE_USER", "ROLE_DEVELOPER"]}]}',
'{"users":[{"firstName":"Norbert","@*@":"@*@"}]}',
],
[
'{"users":[{"firstName":"Norbert","lastName":"Orzechowicz","roles":["ROLE_USER", "ROLE_DEVELOPER"]},{}]}',
'{"users":[{"firstName":"Norbert","@*@":"@*@"},@...@]}',
],
[
'[{"name": "Norbert"},{"name":"Michał"},{"name":"Bob"},{"name":"Martin"}]',
'[{"name": "Norbert"},@...@]',
],
[
'[{"name": "Norbert","lastName":"Orzechowicz"},{"name":"Michał"},{"name":"Bob"},{"name":"Martin"}]',
'[{"name": "Norbert","@*@":"@*@"},@...@]',
],
[
'[{"name": "Norbert"},{"name":"Michał"},{"name":"Bob"},{"name":"Martin"}]',
'"@array@.repeat({\"name\": \"@string@\"})"',
],
[
'{"something": "5e61188283825"}',
'{"something": "@string@"}',
],
];
}
public static function normalizationRequiredDataProvider()
{
return [
[
'{"name": "Norbert"}',
'{"name": @string@}',
],
[
'{"name": 25}',
'{"name": @number@}',
],
[
'{"name": 25}',
'{"name": @integer@}',
],
[
'{"name": true}',
'{"name": @boolean@}',
],
[
'{"name": ["Norbert", "Michał"]}',
'{"name": ["Norbert", @...@]}',
],
[
'{"name": "Norbert", "roles": ["ADMIN", "USER"]}',
'{"name": @string@, "roles": [@string@, @string@]}',
],
];
}
public static function negativeMatches()
{
return [
[
'{"users":["Norbert","Michał"]}',
'{"users":["Michał","@string@"]}',
'Value "Norbert" does not match pattern "Michał" at path: "[users][0]"',
],
[
'{"users":["Norbert","Michał", "John"], "stuff": [1, 2, 3]}',
'{"users":["@string@", @...@], "stuff": [1, 2]}',
'There is no element under path [stuff][2] in pattern.',
],
[
'{this_is_not_valid_json',
'{"users":["Michał","@string@"]}',
'Invalid given JSON of value. Syntax error, malformed JSON',
],
[
'{"status":"ok","data":[]}',
'{"status":"ok","data":[{"id": 4,"code":"123987","name":"Anvill","short_description":"ACME Anvill","url":"http://test-store.example.com/p/123987","image":{"url":"http://test-store.example.com/i/123987-0.jpg","description":"ACME Anvill"},"price":95,"promotion_description":"Anvills sale"},{"id": 5,"code":"123988","name":"Red Anvill","short_description":"Red ACME Anvill","url":"http://test-store.example.com/p/123988","image":{"url":"http://test-store.example.com/i/123988-0.jpg","description":"ACME Anvill"},"price":44.99,"promotion_description":"Red is cheap"}]}',
"There is no element under path [url] in value.\nThere is no element under path [id] in value.\nThere is no element under path [url] in value.\nThere is no element under path [id] in value.\nThere is no element under path [data][0] in value.",
],
[
'{"foo":"foo val","bar":"bar val"}',
'{"foo":"foo val"}',
'There is no element under path [bar] in pattern.',
],
[
'[{"name": "Norbert","lastName":"Orzechowicz"},{"name":"Michał"},{"name":"Bob"},{"name":"Martin"}]',
'"@array@.repeat({\"name\": \"@string@\"})"',
'Value "Array(4)" does not match pattern "@array@.repeat({"name": "@string@"})" at path: "root"',
],
[
[],
'[]',
'Invalid given JSON of value. Unknown error',
],
];
}
public function setUp() : void
{
$backtrace = new Backtrace\InMemoryBacktrace();
$parser = new Parser(new Lexer(), new Parser\ExpanderInitializer($backtrace));
$scalarMatchers = new Matcher\ChainMatcher(
self::class,
$backtrace,
[
new Matcher\CallbackMatcher($backtrace),
new Matcher\ExpressionMatcher($backtrace),
new Matcher\NullMatcher($backtrace),
new Matcher\StringMatcher($backtrace, $parser),
new Matcher\IntegerMatcher($backtrace, $parser),
new Matcher\BooleanMatcher($backtrace, $parser),
new Matcher\DoubleMatcher($backtrace, $parser),
new Matcher\NumberMatcher($backtrace, $parser),
new Matcher\ScalarMatcher($backtrace),
new Matcher\WildcardMatcher($backtrace),
]
);
$this->matcher = new JsonMatcher(
new Matcher\ArrayMatcher($scalarMatchers, $backtrace, $parser),
$backtrace
);
}
/**
* @dataProvider positivePatterns
*/
public function test_positive_can_match($pattern) : void
{
$this->assertTrue($this->matcher->canMatch($pattern));
}
/**
* @dataProvider negativePatterns
*/
public function test_negative_can_match($pattern) : void
{
$this->assertFalse($this->matcher->canMatch($pattern));
}
/**
* @dataProvider positiveMatches
*/
public function test_positive_matches($value, $pattern) : void
{
$this->assertTrue($this->matcher->match($value, $pattern), (string) $this->matcher->getError());
}
/**
* @dataProvider normalizationRequiredDataProvider
*/
public function test_positive_matches_after_normalization($value, $pattern) : void
{
$this->assertTrue($this->matcher->match($value, $pattern), (string) $this->matcher->getError());
}
/**
* @dataProvider negativeMatches
*/
public function test_negative_matches($value, $pattern, string $error) : void
{
$this->assertFalse($this->matcher->match($value, $pattern), (string) $this->matcher->getError());
$this->assertSame($error, $this->matcher->getError());
}
public function test_error_when_matching_fail() : void
{
$value = \json_encode([
'users' => [
['name' => 'Norbert'],
['name' => 'Michał'],
],
]);
$pattern = \json_encode([
'users' => [
['name' => '@string@'],
['name' => '@boolean@'],
],
]);
$this->assertFalse($this->matcher->match($value, $pattern));
$this->assertEquals('Value "Michał" does not match pattern "@boolean@" at path: "[users][1][name]"', $this->matcher->getError());
}
public function test_error_when_path_in_nested_pattern_does_not_exist() : void
{
$value = \json_encode(['foo' => ['bar' => ['baz' => 'bar value']]]);
$pattern = \json_encode(['foo' => ['bar' => ['faz' => 'faz value']]]);
$this->assertFalse($this->matcher->match($value, $pattern));
$this->assertEquals('There is no element under path [foo][bar][baz] in pattern.', $this->matcher->getError());
}
public function test_error_when_path_in_nested_value_does_not_exist() : void
{
$value = \json_encode(['foo' => ['bar' => []]]);
$pattern = \json_encode(['foo' => ['bar' => ['faz' => 'faz value']]]);
$this->assertFalse($this->matcher->match($value, $pattern));
$this->assertEquals('There is no element under path [foo][bar][faz] in value.', $this->matcher->getError());
}
public function test_error_when_json_pattern_is_invalid() : void
{
$value = '{"test": "value"}';
$pattern = '{"test": "@string@",}';
$this->assertFalse($this->matcher->match($value, $pattern));
$this->assertEquals('Invalid given JSON of pattern. Syntax error, malformed JSON', $this->matcher->getError());
}
/**
* Solves https://github.com/coduo/php-matcher/issues/156.
*/
public function test_empty_error_after_successful_match() : void
{
$this->assertTrue($this->matcher->match($value = '{"foo": "bar"}', $pattern = '{"foo": "@string@"}'));
$this->assertNull($this->matcher->getError());
}
public function test_error_when_json_value_is_invalid() : void
{
$value = '{"test": "value",}';
$pattern = '{"test": "@string@"}';
$this->assertFalse($this->matcher->match($value, $pattern));
$this->assertEquals('Invalid given JSON of value. Syntax error, malformed JSON', $this->matcher->getError());
}
public function test_comparing_value_against_pattern_without_any_patterns() : void
{
$value = '{"availableLocales": ["en"]}';
$pattern = '{"availableLocales": null}';
$this->assertFalse($this->matcher->match($value, $pattern));
$this->assertEquals(
'Value "Array(1)" does not match pattern "" at path: "[availableLocales]"',
$this->matcher->getError()
);
}
}