-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtests.py
94 lines (71 loc) · 2.11 KB
/
tests.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
#!/usr/bin/python
# from deepdiff import DeepDiff
import spliced.utils as utils
import spliced.predict.smeagle as smeagle
import argparse
import sys
import os
import pytest
import json
import shutil
import sys
import os
import io
here = os.path.abspath(os.path.dirname(__file__))
args = [x for x in sys.argv if not x.startswith("-")]
if len(args) > 2:
examples_dir = os.path.abspath(args[-1])
else:
examples_dir = os.path.join(here, "examples", "smeagle")
sys.path.insert(0, here)
# Load all examples
tests = []
skips = ["Makefile", "README.md", "build.sh"]
# Add remainder
for name in os.listdir(examples_dir):
if name in skips:
continue
if (
not name.startswith("_")
and not name.startswith(".")
and not name.endswith(".md")
):
tests.append((name, "facts.json"))
def write_file(data, filename):
with open(filename, "w") as fd:
fd.write(data)
def read_json(filename):
with open(filename, "r") as fd:
content = json.loads(fd.read())
return content
def read_file(filename):
with open(filename, "r") as fd:
content = fd.read()
return content
def check_facts(asp, asp_file):
expected = read_file(asp_file)
assert asp == expected
@pytest.mark.parametrize("name,facts", tests)
def test_examples(tmp_path, name, facts):
# Smeagle runner can run smeagle or print facts
cli = smeagle.SmeagleRunner()
facts_file = os.path.join(examples_dir, name, facts)
if not os.path.exists(facts_file):
return
data = utils.read_json(facts_file)
# Write facts to string to compare to
out = io.StringIO()
print(facts_file)
cli.generate_facts(data=data, out=out, lib_basename=True)
atoms = out.getvalue()
out.close()
print(atoms)
# Do we have a facts file to validate?
asp_file = os.path.join(examples_dir, name, "atoms.asp")
truth = os.path.join(examples_dir, name, "atoms.truth.asp")
if not os.path.exists(truth):
truth = asp_file
# Check facts (nodes and relations)
if os.path.exists(truth):
check_facts(atoms, truth)
write_file(atoms, asp_file)