7087e69dd530be54d5a869a09bfa50d2ecd7f958
[open-adventure.git] / tests / Makefile
1 # Test-suite makefile for open-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 # Don't run this from here, you'll get cryptic warnings and no good result
96 # if the advent binary wasn't built with coverage flags.  Do "make clean coverage"
97 # from the top-level directory.
98 coverage: check
99         lcov -t "advent" -o $(PARDIR)/advent.info -c -d $(PARDIR) --gcov-tool=$(GCOV)
100         genhtml -o $(PARDIR)/coverage/ $(PARDIR)/advent.info
101         ./coverage_dungeon.py
102
103 # Rebuild characterizing tests
104 buildchecks: savegames
105         $(PARDIR)/cheat -s -1000 -o thousand_saves.adv > /tmp/regress1000saves
106         @for file in $(TESTLOADS); do \
107             echo "Remaking $${file}.chk"; \
108             OPTS=`sed -n /#options:/s///p <$${file}.log`; \
109             advent $$OPTS <$${file}.log >$${file}.chk 2>&1 || exit 1; \
110         done; \
111         echo "inven" | advent isofoo.log /dev/stdin >multifile.chk; \
112         rm -f scratch.tmp
113
114 RUN_TARGETS=$(TESTLOADS:%=run-regress-%)
115 $(RUN_TARGETS): run-regress-%: %.log
116         @(test=$(<:.log=); legend=$$(sed -n '/^## /s///p' <"$<" 2>/dev/null || echo "(no description)"); \
117         OPTS=`sed -n /#options:/s///p $<`; \
118         $(advent) $$OPTS <$< | tapdiffer "$<: $${legend}" "$${test}.chk")
119
120 multifile-regress:
121         @(echo "inven" | advent isofoo.log /dev/stdin) | tapdiffer "multifile: multiple-file test" multifile.chk
122
123 TEST_TARGETS = $(SGAMES) $(SCHECKS) $(RUN_TARGETS) multifile-regress
124
125 tap: count $(TEST_TARGETS)
126         @rm -f scratch.tmp /tmp/coverage* /tmp/cheat*
127 count:
128         @echo 1..$(words $(TEST_TARGETS))
129
130 # The following machinery tests the game against a binary made from
131 # the advent430 branch To use it, switch to that branch, build the
132 # binary, run it once to generate adventure.data, then switch back to
133 # master leaving advent430 and adventure.data in place (make clean
134 # does not remove them).
135 #
136 # The diff file produced has corrected spellings in it. That's what oldfilter
137 # is for, to massage out the original spellings and avoid noise diffs.
138 # Diffs in amount of whitespace and trailing whitespace are ignored
139 #
140 # A magic comment of NOCOMPARE in a log file excludes it from this comparison.
141 # making it a skipped test in the TAP view. First use of this was to avoid a
142 # spurious mismatch on the news text. Other uses avoid spurious mismatches due
143 # to bug fixes.
144 #
145 # When adding more tests, bear in mind that any game that continues after a
146 # resurrection will need a NOCOMPARE. At some point in the forward port,
147 # resurrection was accidentally changed in a way that messed wil the LCG chain.
148 #
149 # The *.chk files need not be up-to-date for this to work.
150 #
151 TAPFILTER=tapview
152 oldcompare: $(SGAMES)
153         @if [ -f ../advent430 ]; then cp ../advent430 ../adventure.data .; else echo "advent430 nonexistent"; exit 1; fi
154         @-(for x in *.log; do \
155                 stem=$${x%.log}; \
156                 legend=$$(sed -n '/^## /s///p' <$$x 2>/dev/null || echo "(no description)"); \
157                 if grep NOCOMPARE $$x >/dev/null; \
158                         then echo "not ok - $${stem}.ochk: $${legend} # SKIP"; \
159                         else \
160                                 ./advent430 <$${stem}.log | oldfilter >$${stem}.ochk; \
161                                 ../advent <$${stem}.log >$${stem}.log-new; \
162                                 ./newfilter <$${stem}.log-new | tapdiffer -w "$${stem}: $${legend}" $${stem}.ochk; \
163                         fi; \
164         done; \
165         echo 1..$(words $(shell ls *.log))) | $(TAPFILTER)
166         @rm *.ochk *-new advent430 adventure.data
167
168 # List all NOMPARE tests.
169 residuals:
170         @grep -n NOCOMPARE *.log
171
172 # end