-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile
358 lines (329 loc) · 8.31 KB
/
Makefile
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
#!/usr/bin/make -f
# This software was developed at the National Institute of Standards
# and Technology by employees of the Federal Government in the course
# of their official duties. Pursuant to title 17 Section 105 of the
# United States Code this software is not subject to copyright
# protection and is in the public domain. NIST assumes no
# responsibility whatsoever for its use by other parties, and makes
# no guarantees, expressed or implied, about its quality,
# reliability, or any other characteristic.
#
# We would appreciate acknowledgement if the software is used.
SHELL := /bin/bash
PYTHON3 ?= $(shell which python3.9 2>/dev/null || which python3.8 2>/dev/null || which python3.7 2>/dev/null || which python3.6 2>/dev/null || which python3)
top_srcdir := $(shell cd .. ; pwd)
rdf_toolkit_jar := $(top_srcdir)/lib/rdf-toolkit.jar
# These files are needed for the top README.
all: \
ex-triangle-inheritance.ttl \
kb-test-1.ttl \
kb-test-2.ttl \
kb-test-3.ttl \
kb-test-4.ttl \
kb-test-5.ttl \
kb-test-6.ttl \
kb-test-7.ttl \
kb-test-8.ttl
.PHONY: \
check-cli-xfails \
check-pytest \
download
.PRECIOUS: \
%_inheritance.ttl
# rdf-toolkit.jar is used to normalize generated Turtle content, to reduce on noise in the Git history.
%_inheritance.ttl: \
%_ontology.ttl \
$(top_srcdir)/.lib.done.log \
$(top_srcdir)/case_shacl_inheritance_reviewer/__init__.py \
.venv.done.log
source venv/bin/activate \
&& case_shacl_inheritance_reviewer \
__$@ \
$<
java -jar $(rdf_toolkit_jar) \
--infer-base-iri \
--inline-blank-nodes \
--source __$@ \
--source-format turtle \
--target _$@ \
--target-format turtle
rm __$@
mv _$@ $@
$(top_srcdir)/.lib.done.log:
@echo "ERROR:tests/Makefile:Please run 'make check' from the top source directory before running 'make check' under the tests directory." >&2
exit 1
.venv.done.log: \
$(top_srcdir)/setup.cfg \
$(top_srcdir)/setup.py \
requirements.txt
rm -rf venv
$(PYTHON3) -m venv \
venv
source venv/bin/activate \
&& pip install \
--upgrade \
pip \
setuptools
source venv/bin/activate \
&& pip install \
--editable \
$(top_srcdir)
source venv/bin/activate \
&& pip install \
--requirement requirements.txt
touch $@
# This CLI test confirms an output file existing causes the execution to halt.
.xfail-out_graph.done.log: \
$(top_srcdir)/case_shacl_inheritance_reviewer/__init__.py \
.venv.done.log
rm -f .xpass-out_graph.log
( \
source venv/bin/activate \
&& case_shacl_inheritance_reviewer \
Makefile \
kb-test-1.ttl \
&& touch .xpass-out_graph.log \
) || true
test ! -r .xpass-out_graph.log
touch $@
# This CLI test confirms the 'strict' flag and a discovered shape broadening error causes the execution to halt.
.xfail-strict.done.log: \
$(top_srcdir)/case_shacl_inheritance_reviewer/__init__.py \
.venv.done.log \
ex-triangle.ttl
rm -f \
.xfail-strict.ttl \
.xpass-strict.log
( \
source venv/bin/activate \
&& case_shacl_inheritance_reviewer \
--strict \
.xfail-strict.ttl \
ex-triangle.ttl \
&& touch .xpass-strict.log \
) || true
test -r .xfail-strict.ttl
test ! -r .xpass-strict.log
touch $@
check: \
check-mypy \
check-cli-xfails \
check-pytest
# These two targets are made only if the program fails under expected conditions.
check-cli-xfails: \
.xfail-out_graph.done.log \
.xfail-strict.done.log
check-mypy: \
.venv.done.log
source venv/bin/activate \
&& mypy \
--exclude venv \
--strict \
$(top_srcdir)/case_shacl_inheritance_reviewer \
.
check-pytest: \
PASS_class_inheritance.ttl \
PASS_datatype_inheritance.ttl \
PASS_maxCount_inheritance.ttl \
PASS_minCount_inheritance.ttl \
PASS_path_inheritance.ttl \
PASS_subprop_inheritance.ttl \
XFAIL_class_inheritance.ttl \
XFAIL_maxCount_inheritance.ttl \
XFAIL_minCount_inheritance.ttl \
XFAIL_path_inheritance.ttl \
XFAIL_subprop_inheritance.ttl \
ex-triangle-inheritance.ttl \
kb-test-1.ttl \
kb-test-2.ttl \
kb-test-3.ttl \
kb-test-4.ttl \
kb-test-5.ttl \
kb-test-6.ttl \
kb-test-7.ttl \
kb-test-8.ttl
source venv/bin/activate \
&& pytest \
--log-level=DEBUG \
--verbose \
--verbose
clean:
@rm -rf \
.pytest_cache \
__pycache__
@rm -f \
.*.done.log \
.xfail* \
.xpass* \
_*
@rm -rf \
venv
download: \
.venv.done.log
ex-triangle.ttl: \
$(top_srcdir)/.lib.done.log \
.venv.done.log \
ex-triangle-1-1.ttl \
ex-triangle-1-2.ttl \
ex-triangle-2.ttl
source venv/bin/activate \
&& rdfpipe \
--output-format turtle \
ex-triangle-1-1.ttl \
ex-triangle-1-2.ttl \
ex-triangle-2.ttl \
> __$@
java -jar $(rdf_toolkit_jar) \
--infer-base-iri \
--inline-blank-nodes \
--source __$@ \
--source-format turtle \
--target _$@ \
--target-format turtle
rm __$@
mv _$@ $@
ex-triangle-inheritance.ttl: \
$(top_srcdir)/.lib.done.log \
$(top_srcdir)/case_shacl_inheritance_reviewer/__init__.py \
ex-triangle.ttl
source venv/bin/activate \
&& case_shacl_inheritance_reviewer \
__$@ \
ex-triangle.ttl
java -jar $(rdf_toolkit_jar) \
--infer-base-iri \
--inline-blank-nodes \
--source __$@ \
--source-format turtle \
--target _$@ \
--target-format turtle
rm __$@
mv _$@ $@
kb-test-1.ttl: \
.venv.done.log \
ex-triangle-1-2.ttl \
kb-triangle-1.ttl
source venv/bin/activate \
&& pyshacl \
--data-file-format turtle \
--format turtle \
--output _$@ \
--shacl ex-triangle-1-2.ttl \
--shacl-file-format turtle \
kb-triangle-1.ttl
mv _$@ $@
kb-test-2.ttl: \
.venv.done.log \
ex-triangle-1-2.ttl \
kb-triangle-2.ttl
source venv/bin/activate \
&& pyshacl \
--data-file-format turtle \
--format turtle \
--output _$@ \
--shacl ex-triangle-1-2.ttl \
--shacl-file-format turtle \
kb-triangle-2.ttl \
|| true #xfail
mv _$@ $@
kb-test-3.ttl: \
.venv.done.log \
ex-triangle-2.ttl \
kb-triangle-3.ttl
source venv/bin/activate \
&& pyshacl \
--data-file-format turtle \
--format turtle \
--output _$@ \
--shacl ex-triangle-2.ttl \
--shacl-file-format turtle \
kb-triangle-3.ttl
mv _$@ $@
kb-test-4.ttl: \
.venv.done.log \
ex-triangle.ttl \
kb-triangle-3.ttl
source venv/bin/activate \
&& pyshacl \
--data-file-format turtle \
--format turtle \
--output _$@ \
--shacl ex-triangle.ttl \
--shacl-file-format turtle \
kb-triangle-3.ttl
mv _$@ $@
kb-test-5.ttl: \
.venv.done.log \
ex-triangle.ttl \
kb-triangle-3-super.ttl
source venv/bin/activate \
&& pyshacl \
--data-file-format turtle \
--format turtle \
--output _$@ \
--shacl ex-triangle.ttl \
--shacl-file-format turtle \
kb-triangle-3-super.ttl \
|| true #xfail
mv _$@ $@
kb-test-6.ttl: \
.venv.done.log \
ex-triangle.ttl \
kb-triangle-3.ttl
source venv/bin/activate \
&& pyshacl \
--data-file-format turtle \
--format turtle \
--ont-file-format turtle \
--ont-graph ex-triangle.ttl \
--output _$@ \
--shacl ex-triangle.ttl \
--shacl-file-format turtle \
kb-triangle-3.ttl \
|| true #xfail
mv _$@ $@
kb-test-7.ttl: \
.venv.done.log \
ex-triangle.ttl \
kb-triangle-3.ttl
source venv/bin/activate \
&& pyshacl \
--advanced \
--data-file-format turtle \
--format turtle \
--inference both \
--iterate-rules \
--metashacl \
--ont-file-format turtle \
--ont-graph ex-triangle.ttl \
--output _$@ \
--shacl ex-triangle.ttl \
--shacl-file-format turtle \
kb-triangle-3.ttl \
|| true #xfail
mv _$@ $@
# Normalize at least this file due to sort order not being guaranteed.
kb-test-8.ttl: \
.venv.done.log \
ex-constraint-repetition.ttl \
kb-triangle-4.ttl
source venv/bin/activate \
&& pyshacl \
--data-file-format turtle \
--format turtle \
--ont-file-format turtle \
--ont-graph ex-constraint-repetition.ttl \
--output __$@ \
--shacl ex-constraint-repetition.ttl \
--shacl-file-format turtle \
kb-triangle-4.ttl \
|| true #xfail
java -jar $(rdf_toolkit_jar) \
--infer-base-iri \
--inline-blank-nodes \
--source __$@ \
--source-format turtle \
--target _$@ \
--target-format turtle
rm __$@
mv _$@ $@