-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathtest_dsl.py
574 lines (517 loc) · 17.1 KB
/
test_dsl.py
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
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
"""Test for predicate module."""
from __future__ import annotations
import json
import sqlite3
from numbers import Number
from typing import Callable, ClassVar
import pytest
from tiatoolbox.annotation.dsl import (
PY_GLOBALS,
SQL_GLOBALS,
SQLJSONDictionary,
SQLTriplet,
json_contains,
json_list_sum,
py_regexp,
)
BINARY_OP_STRINGS = [
"+",
"-",
"/",
"//",
"*",
"<",
">",
"<=",
">=",
"==",
"!=",
"**",
"&",
"|",
"%",
]
PREFIX_OP_STRINGS = ["-", "not "]
FUNCTION_NAMES = ["abs", "is_none", "is_not_none", "has_key"]
SAMPLE_PROPERTIES = {
"int": 2,
"string": "Hello world!",
"null": None,
"dict": {"a": 1},
"list": [0, 1, 2, 3],
"neg": -1,
"bool": True,
"nesting": {"fib": [1, 1, 2, 3, 5], "foo": {"bar": "baz"}},
"dot.key": 3.14,
}
def test_invalid_sqltriplet() -> None:
"""Test invalid SQLTriplet."""
with pytest.raises(ValueError, match="Invalid SQLTriplet"):
str(SQLTriplet(SQLJSONDictionary()))
def test_json_contains() -> None:
"""Test json_contains function."""
properties = json.dumps(SAMPLE_PROPERTIES)
assert json_contains(properties, "int")
assert json_contains(json.dumps([1]), 1)
assert not json_contains(properties, "foo")
def sqlite_eval(query: str | Number) -> bool:
"""Evaluate an SQL predicate on dummy data and return the result.
Args:
query (Union[str, Number]): SQL predicate to evaluate.
Returns:
bool: Result of the evaluation.
"""
with sqlite3.connect(":memory:") as con:
con.create_function("REGEXP", 2, py_regexp)
con.create_function("REGEXP", 3, py_regexp)
con.create_function("LISTSUM", 1, json_list_sum)
con.create_function("CONTAINS", 1, json_contains)
cur = con.cursor()
cur.execute("CREATE TABLE test(properties TEXT)")
cur.execute(
"INSERT INTO test VALUES(:properties)",
{"properties": json.dumps(SAMPLE_PROPERTIES)},
)
con.commit()
if isinstance(query, str):
assert query.count("(") == query.count(")")
assert query.count("[") == query.count("]")
cur.execute(f"SELECT {query} FROM test") # noqa: S608
(result,) = cur.fetchone()
return result
class TestSQLite:
"""Test converting from our DSL to an SQLite backend."""
@staticmethod
def test_prop_or_prop() -> None:
"""Test OR operator between two prop accesses."""
query = eval( # skipcq: PYL-W0123
"(props['int'] == 2) | (props['int'] == 3)",
SQL_GLOBALS,
{},
)
assert str(query) == (
"""((json_extract(properties, '$."int"') == 2) OR """
"""(json_extract(properties, '$."int"') == 3))"""
)
py_variables: dict = {
"eval_globals": PY_GLOBALS,
"eval_locals": {"props": SAMPLE_PROPERTIES},
"check": lambda x: x,
}
sqlite_variables: dict = {
"eval_globals": SQL_GLOBALS,
"eval_locals": {"props": SQLJSONDictionary()},
"check": sqlite_eval,
}
scenario_python: tuple = (
"Python",
{"scenario_variables": py_variables},
)
scenario_sqlite = (
"SQLite",
{"scenario_variables": sqlite_variables},
)
def extract_variables(scenario_variables: dict) -> tuple[dict, dict, Callable]:
"""Extract variables from scenario variables."""
eval_globals = scenario_variables["eval_globals"]
eval_locals = scenario_variables["eval_locals"]
check = scenario_variables["check"]
return eval_globals, eval_locals, check
class TestPredicate:
"""Test predicate statements with various backends."""
scenarios: ClassVar[list[str, dict]] = [scenario_python, scenario_sqlite]
@staticmethod
def test_number_binary_operations(
scenario_variables: dict[str, dict],
) -> None:
"""Check that binary operations between ints does not error."""
eval_globals, eval_locals, check = extract_variables(scenario_variables)
for op in BINARY_OP_STRINGS:
query = f"2 {op} 2"
result = eval( # skipcq: PYL-W0123
query,
eval_globals,
eval_locals,
)
assert isinstance(check(result), Number)
@staticmethod
def test_property_binary_operations(
scenario_variables: dict[str, dict],
) -> None:
"""Check that binary operations between properties does not error."""
eval_globals, eval_locals, check = extract_variables(scenario_variables)
for op in BINARY_OP_STRINGS:
query = f"props['int'] {op} props['int']"
result = eval( # skipcq: PYL-W0123
query,
eval_globals,
eval_locals,
)
assert isinstance(check(result), Number)
@staticmethod
def test_r_binary_operations(
scenario_variables: dict[str, dict],
) -> None:
"""Test right hand binary operations between numbers and properties."""
eval_globals, eval_locals, check = extract_variables(scenario_variables)
for op in BINARY_OP_STRINGS:
query = f"2 {op} props['int']"
result = eval( # skipcq: PYL-W0123
query,
eval_globals,
eval_locals,
)
assert isinstance(check(result), Number)
@staticmethod
def test_number_prefix_operations(
scenario_variables: dict[str, dict],
) -> None:
"""Test prefix operations on numbers."""
eval_globals, eval_locals, check = extract_variables(scenario_variables)
for op in PREFIX_OP_STRINGS:
query = f"{op}1"
result = eval( # skipcq: PYL-W0123
query,
eval_globals,
eval_locals,
)
assert isinstance(check(result), Number)
@staticmethod
def test_property_prefix_operations(
scenario_variables: dict[str, dict],
) -> None:
"""Test prefix operations on properties."""
eval_globals, eval_locals, check = extract_variables(scenario_variables)
for op in PREFIX_OP_STRINGS:
query = f"{op}props['int']"
result = eval( # skipcq: PYL-W0123
query,
eval_globals,
eval_locals,
)
assert isinstance(check(result), Number)
@staticmethod
def test_regex_nested_props(
scenario_variables: dict[str, dict],
) -> None:
"""Test regex on nested properties."""
eval_globals, eval_locals, check = extract_variables(scenario_variables)
query = "props['nesting']['fib'][4]"
result = eval( # skipcq: PYL-W0123
query,
eval_globals,
eval_locals,
)
assert check(result) == 5
@staticmethod
def test_regex_str_props(
scenario_variables: dict[str, dict],
) -> None:
"""Test regex on string properties."""
eval_globals, eval_locals, check = extract_variables(scenario_variables)
query = "regexp('Hello', props['string'])"
result = eval( # skipcq: PYL-W0123
query,
eval_globals,
eval_locals,
)
assert check(result) == "Hello"
@staticmethod
def test_regex_str_str(
scenario_variables: dict[str, dict],
) -> None:
"""Test regex on string and string."""
eval_globals, eval_locals, check = extract_variables(scenario_variables)
query = "regexp('Hello', 'Hello world!')"
result = eval( # skipcq: PYL-W0123
query,
eval_globals,
eval_locals,
)
assert check(result) == "Hello"
@staticmethod
def test_regex_props_str(
scenario_variables: dict[str, dict],
) -> None:
"""Test regex on property and string."""
eval_globals, eval_locals, check = extract_variables(scenario_variables)
query = "regexp(props['string'], 'Hello world!')"
result = eval( # skipcq: PYL-W0123
query,
eval_globals,
eval_locals,
)
assert check(result) == "Hello world!"
@staticmethod
def test_regex_ignore_case(
scenario_variables: dict[str, dict],
) -> None:
"""Test regex with ignorecase flag."""
eval_globals, eval_locals, check = extract_variables(scenario_variables)
query = "regexp('hello', props['string'], re.IGNORECASE)"
result = eval( # skipcq: PYL-W0123
query,
eval_globals,
eval_locals,
)
assert check(result) == "Hello"
@staticmethod
def test_regex_no_match(
scenario_variables: dict[str, dict],
) -> None:
"""Test regex with no match."""
eval_globals, eval_locals, check = extract_variables(scenario_variables)
query = "regexp('Yello', props['string'])"
result = eval( # skipcq: PYL-W0123
query,
eval_globals,
eval_locals,
)
assert check(result) is None
@staticmethod
def test_has_key(
scenario_variables: dict[str, dict],
) -> None:
"""Test has_key function."""
eval_globals, eval_locals, check = extract_variables(scenario_variables)
query = "has_key(props, 'foo')"
result = eval( # skipcq: PYL-W0123
query,
eval_globals,
eval_locals,
)
assert bool(check(result)) is False
@staticmethod
def test_is_none(
scenario_variables: dict[str, dict],
) -> None:
"""Test is_none function."""
eval_globals, eval_locals, check = extract_variables(scenario_variables)
query = "is_none(props['null'])"
result = eval( # skipcq: PYL-W0123
query,
eval_globals,
eval_locals,
)
assert bool(check(result)) is True
@staticmethod
def test_is_not_none(
scenario_variables: dict[str, dict],
) -> None:
"""Test is_not_none function."""
eval_globals, eval_locals, check = extract_variables(scenario_variables)
query = "is_not_none(props['int'])"
result = eval( # skipcq: PYL-W0123
query,
eval_globals,
eval_locals,
)
assert bool(check(result)) is True
@staticmethod
def test_nested_has_key(
scenario_variables: dict[str, dict],
) -> None:
"""Test nested has_key function."""
eval_globals, eval_locals, check = extract_variables(scenario_variables)
query = "has_key(props['dict'], 'a')"
result = eval( # skipcq: PYL-W0123
query,
eval_globals,
eval_locals,
)
assert bool(check(result)) is True
@staticmethod
def test_list_sum(
scenario_variables: dict[str, dict],
) -> None:
"""Test sum function on a list."""
eval_globals, eval_locals, check = extract_variables(scenario_variables)
query = "sum(props['list'])"
result = eval( # skipcq: PYL-W0123
query,
eval_globals,
eval_locals,
)
assert check(result) == sum(SAMPLE_PROPERTIES["list"])
@staticmethod
def test_abs(
scenario_variables: dict[str, dict],
) -> None:
"""Test abs function."""
eval_globals, eval_locals, check = extract_variables(scenario_variables)
query = "abs(props['neg'])"
result = eval( # skipcq: PYL-W0123
query,
eval_globals,
eval_locals,
)
assert check(result) == 1
@staticmethod
def test_not(
scenario_variables: dict[str, dict],
) -> None:
"""Test not operator."""
eval_globals, eval_locals, check = extract_variables(scenario_variables)
query = "not props['bool']"
result = eval( # skipcq: PYL-W0123
query,
eval_globals,
eval_locals,
)
assert bool(check(result)) is False
@staticmethod
def test_props_int_keys(
scenario_variables: dict[str, dict],
) -> None:
"""Test props with int keys."""
eval_globals, eval_locals, check = extract_variables(scenario_variables)
query = "props['list'][1]"
result = eval( # skipcq: PYL-W0123
query,
eval_globals,
eval_locals,
)
assert check(result) == 1
@staticmethod
def test_props_get(
scenario_variables: dict[str, dict],
) -> None:
"""Test props.get function."""
eval_globals, eval_locals, check = extract_variables(scenario_variables)
query = "is_none(props.get('foo'))"
result = eval( # skipcq: PYL-W0123
query,
eval_globals,
eval_locals,
)
assert bool(check(result)) is True
@staticmethod
def test_props_get_default(
scenario_variables: dict[str, dict],
) -> None:
"""Test props.get function with default."""
eval_globals, eval_locals, check = extract_variables(scenario_variables)
query = "props.get('foo', 42)"
result = eval( # skipcq: PYL-W0123
query,
eval_globals,
eval_locals,
)
assert check(result) == 42
@staticmethod
def test_in_list(
scenario_variables: dict[str, dict],
) -> None:
"""Test in operator for list."""
eval_globals, eval_locals, check = extract_variables(scenario_variables)
query = "1 in props.get('list')"
result = eval( # skipcq: PYL-W0123
query,
eval_globals,
eval_locals,
)
assert bool(check(result)) is True
@staticmethod
def test_has_key_exception(
scenario_variables: dict[str, dict],
) -> None:
"""Test has_key function with exception."""
eval_globals, eval_locals, _ = extract_variables(scenario_variables)
query = "has_key(1, 'a')"
with pytest.raises(TypeError, match="(not iterable)|(Unsupported type)"):
_ = eval( # skipcq: PYL-W0123
query,
eval_globals,
eval_locals,
)
@staticmethod
def test_logical_and(
scenario_variables: dict[str, dict],
) -> None:
"""Test logical and operator."""
query = "props['bool'] & is_none(props['null'])"
eval_globals, eval_locals, check = extract_variables(scenario_variables)
result = eval( # skipcq: PYL-W0123
query,
eval_globals,
eval_locals,
)
assert bool(check(result)) is True
@staticmethod
def test_logical_or(
scenario_variables: dict[str, dict],
) -> None:
"""Test logical or operator."""
query = "props['bool'] | (props['int'] < 2)"
eval_globals, eval_locals, check = extract_variables(scenario_variables)
result = eval( # skipcq: PYL-W0123
query,
eval_globals,
eval_locals,
)
assert bool(check(result)) is True
@staticmethod
def test_nested_logic(
scenario_variables: dict[str, dict],
) -> None:
"""Test nested logical operators."""
eval_globals, eval_locals, check = extract_variables(scenario_variables)
query = "(props['bool'] | (props['int'] < 2)) & abs(props['neg'])"
result = eval( # skipcq: PYL-W0123
query,
eval_globals,
eval_locals,
)
assert bool(check(result)) is True
@staticmethod
def test_contains_list(
scenario_variables: dict[str, dict],
) -> None:
"""Test contains operator for list."""
eval_globals, eval_locals, check = extract_variables(scenario_variables)
query = "1 in props['list']"
result = eval( # skipcq: PYL-W0123
query,
eval_globals,
eval_locals,
)
assert bool(check(result)) is True
@staticmethod
def test_contains_dict(
scenario_variables: dict[str, dict],
) -> None:
"""Test contains operator for dict."""
eval_globals, eval_locals, check = extract_variables(scenario_variables)
query = "'a' in props['dict']"
result = eval( # skipcq: PYL-W0123
query,
eval_globals,
eval_locals,
)
assert bool(check(result)) is True
@staticmethod
def test_contains_str(
scenario_variables: dict[str, dict],
) -> None:
"""Test contains operator for str."""
eval_globals, eval_locals, check = extract_variables(scenario_variables)
query = "'Hello' in props['string']"
result = eval( # skipcq: PYL-W0123
query,
eval_globals,
eval_locals,
)
assert bool(check(result)) is True
@staticmethod
def test_key_with_period(
scenario_variables: dict[str, dict],
) -> None:
"""Test key with period."""
eval_globals, eval_locals, check = extract_variables(scenario_variables)
query = "props['dot.key']"
result = eval( # skipcq: PYL-W0123
query,
eval_globals,
eval_locals,
)
assert check(result) == 3.14