8d61d27109c6d33143f76a8370b581e29a8619f7
[open-adventure.git] / tests / Makefile
1 # Test-suite makefile for opeb-adventure
2
3 # Use absolute path so tests that change working directory still use
4 # scripts from parent directory.  Note that using $PWD seems to fail
5 # here under Gitlab's CI environment.
6 PARDIR=$(realpath ..)
7 PATH := $(PARDIR):$(realpath .):${PATH}
8 GCOV?=gcov
9
10 # Make this overrideable so it's easier to test old versions
11 advent?=advent
12
13 # Defeat annoying behavior under Mac OS X - builtin echo doesn't do -n
14 ECHO := /bin/echo
15
16 # The TAP filter. Only affects presentation of the test suite messages
17 TAPCONSUMER=tapview
18
19 # Fall back to safety if our declared TAP consumer does not exist.
20 # This is helpful in the CI environment, where it would be better for
21 # the logfiles to carry the raw TAP messages. 
22 TAPFILTER=$(shell command -v $(TAPCONSUMER) || echo cat)
23
24 # Find all *.log entries to test
25 TESTLOADS := $(shell ls -1 *.log | sed '/.log/s///' | sort)
26
27 .PHONY: check clean testlist listcheck savegames savecheck coverage
28 .PHONY: buildchecks multifile-regress tap count
29
30 check: savecheck
31         @make tap | tapview
32         @-advent -x 2>/dev/null || exit 0 # Get usage message into coverage tests
33
34 .SUFFIXES: .chk
35
36 clean:
37         rm -fr *~ *.adv scratch.tmp *.ochk advent430 adventure.data
38
39 # Show summary lines for all tests.
40 testlist:
41         @grep '^##' *.log
42 listcheck:
43         @for f in *.log; do \
44             if ( head -3 $$f | grep -q '^ *##' ); then :; else echo "$$f needs a description"; fi; \
45         done
46
47 # Generate bogus savegames.
48 sgame1:
49         @$(PARDIR)/cheat -d -900 -o cheat_numdie.adv > /tmp/cheat_numdie
50         @./outcheck.sh "cheat: Generate save file with -900 deaths"
51 sgame2:
52         @$(PARDIR)/cheat -d -1000 -o cheat_numdie1000.adv > /tmp/cheat_numdie1000
53         @./outcheck.sh "cheat: Generate save file with -1000 deaths"
54 sgame3:
55         @$(PARDIR)/cheat -d 2000 -o cheat_savetamper.adv > /tmp/cheat_savetamper
56         @./outcheck.sh "cheat: Generate tamper-detection test"
57 sgame4:
58         @$(PARDIR)/cheat -v -1337 -o resume_badversion.adv > /tmp/cheat_badversion
59         @./outcheck.sh "cheat: Generate save file with version -1337"
60 sgame5:
61         @$(PARDIR)/cheat -s -1000 -o thousand_saves.adv > /tmp/cheat_1000saves
62         @./outcheck.sh "cheat: Generate save file 1000 saves"
63 sgame6:
64         @$(PARDIR)/cheat -t -1000 -o thousand_saves.adv > /tmp/cheat_1000turns
65         @./outcheck.sh "cheat: Generate save file 1000 turns"
66 sgame7:
67         @$(PARDIR)/cheat -l -1000 -o thousand_lamp.adv > /tmp/cheat_1000lamp
68         @./outcheck.sh "cheat: Generate save file 1000 turns"
69 SGAMES = sgame1 sgame2 sgame3 sgame4 sgame5 sgame6 sgame7
70
71 # Force coverage of cheat edgecases
72 scheck1:
73         @$(PARDIR)/cheat -QqQ 2> /tmp/coverage_cheat_batopt | true
74         @./outcheck.sh "cheat: bogus option for save file generation"
75 scheck2:
76         @$(PARDIR)/cheat 2>/dev/null | true
77         @./outcheck.sh "cheat: No save file specified"
78 scheck3:
79         @$(PARDIR)/cheat -d 1 2> /tmp/coverage_cheat_nooutput | true
80         @./outcheck.sh "cheat: doesn't save because we omit -o"
81 scheck4:
82         @$(PARDIR)/cheat -o / 2> /tmp/coverage_cheat_badoutput | true
83         @./outcheck.sh "cheat: doesn't save to invalid path"
84 scheck5:
85         @$(advent) -r /badfilename < pitfall.log > /tmp/coverage_advent_readfail 2>&1 || exit 1
86         @./outcheck.sh "cheat: doesn't start with invalid file with -r"
87 scheck6:
88         @$(advent) -l / < pitfall.log > /tmp/coverage_advent_logfail 2>&1 || exit 1
89         @./outcheck.sh "cheat: doesn't start with invalid file passed to -l"
90 scheck7:
91         @$(advent) -r thousand_saves.adv < pitfall.log > /tmp/coverage_advent_readfail 2>&1 || exit 1
92         @./outcheck.sh "test -r with valid input"
93 SCHECKS = scheck1 scheck2 scheck3 scheck4 scheck5 scheck6 scheck7
94
95 coverage: check
96         lcov -t "advent" -o $(PARDIR)/advent.info -c -d $(PARDIR) --gcov-tool=$(GCOV)
97         genhtml -o $(PARDIR)/coverage/ $(PARDIR)/advent.info
98         ./coverage_dungeon.py
99
100 # Rebuild characterizing tests
101 buildchecks: savegames
102         $(PARDIR)/cheat -s -1000 -o thousand_saves.adv > /tmp/regress1000saves
103         @for file in $(TESTLOADS); do \
104             echo "Remaking $${file}.chk"; \
105             OPTS=`sed -n /#options:/s///p <$${file}.log`; \
106             advent $$OPTS <$${file}.log >$${file}.chk 2>&1 || exit 1; \
107         done; \
108         echo "inven" | advent isofoo.log /dev/stdin >multifile.chk; \
109         rm -f scratch.tmp
110
111 RUN_TARGETS=$(TESTLOADS:%=run-regress-%)
112 $(RUN_TARGETS): run-regress-%: %.log
113         @(test=$(<:.log=); legend=$$(sed -n '/^## /s///p' <"$<" 2>/dev/null || echo "(no description)"); \
114         OPTS=`sed -n /#options:/s///p $<`; \
115         $(advent) $$OPTS <$< | tapdiffer "$<: $${legend}" "$${test}.chk")
116
117 multifile-regress:
118         @(echo "inven" | advent isofoo.log /dev/stdin) | tapdiffer "multifile: multiple-file test" multifile.chk
119
120 TEST_TARGETS = $(SGAMES) $(SCHECKS) $(RUN_TARGETS) multifile-regress
121
122 tap: count $(TEST_TARGETS)
123         @rm -f scratch.tmp /tmp/coverage* /tmp/cheat*
124 count:
125         @echo 1..$(words $(TEST_TARGETS))
126
127 # The following machinery tests the gane against a binary made from
128 # the advent430 branch To use it, switch to that branch, build the
129 # binary, sand run it once to generate adventure.data, then switch
130 # back to master leaving advent430 and adventure.data in place (make
131 # clean does not remove them).
132 #
133 # The diff file produced has corrected spellings in it. That's what oldfilter
134 # is for, to massage out the orioginal dpellings and avoid noise diffs.
135 # Diffs in amount of whitespace and trailing whitespace are ignored
136 #
137 # A magic comment of NOCOMPARE in a log file excludes it from this comparison.
138 # First use of this is to avoid a spurious mismatch on the news text.
139 TAPFILTER=tapview
140 ancient: $(SGAMES)
141         @if [ -f ../advent430 ]; then cp ../advent430 ../adventure.data .; else echo "advent430 nonexistent"; exit 1; fi
142         @-(for x in *.log; do \
143                 stem=$${x%.log}; \
144                 legend=$$(sed -n '/^## /s///p' <$$x 2>/dev/null || echo "(no description)"); \
145                 if grep NOCOMPARE $$x >/dev/null; \
146                         then echo "not ok - $${stem}.ochk: $${legend} # SKIP"; \
147                         else \
148                                 ./advent430 <$${stem}.log | oldfilter >$${stem}.ochk; \
149                                 ./newfilter <$${stem}.chk | tapdiffer -w "$${stem}: $${legend}" $${stem}.ochk; \
150                         fi; \
151         done; \
152         echo 1..$(words $(shell ls *.log))) | $(TAPFILTER)
153         @rm *.ochk advent430 adventure.data
154
155 # end