blob: ec59cb822e3af0b264a3e12969814295a3d2bedf (
plain)
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
|
# -*- Mode: Makefile -*-
#
# Makefile.am - automake file for Raptor JSON tests
#
# Copyright (C) 2010, David Beckett http://purl.org/net/dajobe/
#
# This package is Free Software and part of Redland http://librdf.org/
#
# It is licensed under the following three licenses as alternatives:
# 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version
# 2. GNU General Public License (GPL) V2 or any newer version
# 3. Apache License, V2.0 or any newer version
#
# You may not use this file except in compliance with at least one of
# the above three licenses.
#
# See LICENSE.html or LICENSE.txt at the top of this package for the
# complete terms and further detail along with the license texts for
# the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively.
#
#
TEST_FILES=\
example1.json example2.json example3.json example4.json
TEST_OUT_FILES=\
example1.nt example2.nt example3.nt example4.nt
JSON_BAD_TEST_FILES=bad-00.json bad-01.json bad-02.json bad-03.json \
bad-04.json bad-05.json bad-06.json bad-07.json bad-08.json bad-09.json \
bad-10.json bad-11.json bad-12.json bad-13.json
# Used to make N-triples output consistent
BASE_URI=http://example.librdf.org/
EXTRA_DIST = \
CMakeLists.txt \
$(TEST_FILES) \
$(TEST_OUT_FILES) \
$(JSON_BAD_TEST_FILES)
RAPPER = $(top_builddir)/utils/rapper
CLEANFILES = CMakeTests.txt CMakeTmp.txt
build-rapper:
@(cd $(top_builddir)/utils ; $(MAKE) rapper$(EXEEXT))
if RAPTOR_PARSER_JSON
check-local: build-rapper check-json check-bad-json
else
check-local:
endif
if MAINTAINER_MODE
check_json_deps = $(TEST_FILES)
endif
check-json: build-rapper $(check_json_deps)
@result=0; \
$(RECHO) "Testing legal JSON"; \
printf 'IF(RAPTOR_PARSER_JSON)\n\n' >>CMakeTests.txt; \
for test in $(TEST_FILES); do \
name=`basename $$test .json` ; \
baseuri=$(BASE_URI)$$test; \
$(RECHO) $(RECHO_N) "Checking $$test $(RECHO_C)"; \
$(RAPPER) -q -i json -o ntriples $(srcdir)/$$test $$baseuri > $$name.res 2> $$name.err; \
status=$$?; \
if test $$status != 0 -a $$status != 2 ; then \
$(RECHO) FAILED returned status $$status; result=1; \
elif cmp $(srcdir)/$$name.nt $$name.res >/dev/null 2>&1; then \
if test $$status = 2 ; then \
$(RECHO) "ok with warnings"; grep Warning $$name.err; \
else \
$(RECHO) "ok"; \
fi; \
else \
$(RECHO) "FAILED"; \
cat $$name.err; \
diff $(srcdir)/$$name.nt $$name.res; result=1; \
fi; \
rm -f $$name.res $$name.err; \
printf '\tRAPPER_TEST(%s\n\t\t"%s"\n\t\t%s\n\t\t%s\n\t)\n\n' \
json.$$name \
"\$${RAPPER} -q -i json -o ntriples \$${CMAKE_CURRENT_SOURCE_DIR}/$$test $$baseuri" \
$$name.res \
"\$${CMAKE_CURRENT_SOURCE_DIR}/$$name.nt" >>CMakeTests.txt; \
done; \
printf 'ENDIF(RAPTOR_PARSER_JSON)\n\n' >>CMakeTests.txt; \
exit $$result
if MAINTAINER_MODE
check_bad_json_deps = $(JSON_BAD_TEST_FILES)
endif
check-bad-json: build-rapper $(check_bad_json_deps)
@set +e; result=0; \
$(RECHO) "Testing that bad JSON fails"; \
printf 'IF(RAPTOR_PARSER_JSON)\n\n' >>CMakeTests.txt; \
for test in $(JSON_BAD_TEST_FILES); do \
name=`basename $$test .json` ; \
baseuri=$(BASE_URI)$$name.json; \
$(RECHO) $(RECHO_N) "Checking $$test $(RECHO_C)"; \
$(RAPPER) -q -i json -o ntriples file:$(srcdir)/$$test $$baseuri > $$name.res 2> $$name.err; \
status=$$?; \
if test $$status -eq 1 ; then \
$(RECHO) "ok"; \
elif test $$status -eq 2 ; then \
$(RECHO) "FAILED - parsing succeeded with a warning"; \
cat $$name.res; grep Warning $$name.err; result=1; \
elif test $$status -eq 0 ; then \
$(RECHO) "FAILED - parsing succeeded but should have failed"; \
cat $$name.res; result=1; \
else \
$(RECHO) "FAILED - parsing failed with unknown status $$status"; \
cat $$name.res; result=1; \
fi; \
rm -f $$name.res $$name.err ; \
printf '\tADD_TEST(%s %s) # WILL_FAIL\n' \
json.$$name \
"\$${RAPPER} -q -i json -o ntriples file:\$${CMAKE_CURRENT_SOURCE_DIR}/$$test $$baseuri" >>CMakeTests.txt; \
printf '\t\t%s\n' json.$$name >>CMakeTmp.txt; \
done; \
(printf '\n\tSET_TESTS_PROPERTIES(\n'; \
cat CMakeTmp.txt; \
printf '\t\tPROPERTIES\n\t\tWILL_FAIL TRUE\n\t)\n\n'; \
printf 'ENDIF(RAPTOR_PARSER_JSON)\n\n') >>CMakeTests.txt; \
rm -f CMakeTmp.txt; \
set -e; exit $$result
|