Use $(advent) rather than advent where needed.
[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         @echo "=== No diff output is good news."
33         @-advent -x 2>/dev/null || exit 0 # Get usage message into coverage tests
34         @-advent -l /dev/null <pitfall.log >/dev/null
35
36 .SUFFIXES: .chk
37
38 clean:
39         rm -fr *~ adventure.text *.adv scratch.tmp
40
41 # Show summary lines for all tests.
42 testlist:
43         @grep '^##' *.log
44 listcheck:
45         @for f in *.log; do \
46             if ( head -3 $$f | grep -q '^ *##' ); then :; else echo "$$f needs a description"; fi; \
47         done
48
49 # Generate bogus savegames.
50 savegames:
51         @$(ECHO) "cheat: Generate save file with -900 deaths"
52         @$(PARDIR)/cheat -d -900 -o cheat_numdie.adv > /tmp/cheat_numdie
53         @$(ECHO) "cheat: Generate save file with -1000 deaths"
54         @$(PARDIR)/cheat -d -1000 -o cheat_numdie1000.adv > /tmp/cheat_numdie1000
55         @$(ECHO) "cheat: Generate save file with version -1337"
56         @$(PARDIR)/cheat -v -1337 -o resume_badversion.adv > /tmp/cheat_badversion
57         @$(ECHO) "cheat: Generate save file 1000 saves"
58         @$(PARDIR)/cheat -s -1000 -o thousand_saves.adv > /tmp/cheat_1000saves
59         @$(ECHO) "cheat: Generate save file 1000 turns"
60         @$(PARDIR)/cheat -t -1000 -o thousand_saves.adv > /tmp/cheat_1000turns
61         @$(ECHO) "cheat: Generate save file 1000 turns"
62         @$(PARDIR)/cheat -l -1000 -o thousand_lamp.adv > /tmp/cheat_1000lamp
63         @rm -f /tmp/cheat*
64
65 # Force coverage of cheat edgecases
66 savecheck: savegames
67         @$(ECHO) "TEST cheat: Bogus option for save file generation"
68         @$(PARDIR)/cheat -QqQ 2> /tmp/coverage_cheat_batopt | true
69         @$(ECHO) "TEST cheat: No save file specified"
70         @$(PARDIR)/cheat 2>/dev/null | true
71         @$(ECHO) "TEST cheat: Fail to save because we omit -o"
72         @$(PARDIR)/cheat -d 1 2> /tmp/coverage_cheat_nooutput | true
73         @$(ECHO) "TEST cheat: Fail to save to invalid path"
74         @$(PARDIR)/cheat -o / 2> /tmp/coverage_cheat_badoutput | true
75         @$(ECHO) "TEST advent: Start with invalid file with -r"
76         @$(advent) -r /badfilename < pitfall.log > /tmp/coverage_advent_readfail 2>&1 || exit 1
77         @$(ECHO) "TEST advent: Start with invalid file with -l"
78         @$(advent) -l / < pitfall.log > /tmp/coverage_advent_logfail 2>&1 || exit 1
79         @$(ECHO) "TEST advent: Test -r with valid input"
80         @$(advent) -r thousand_saves.adv < pitfall.log > /tmp/coverage_advent_readfail 2>&1 || exit 1
81         @rm -f /tmp/coverage*
82
83 coverage: check
84         lcov -t "advent" -o $(PARDIR)/advent.info -c -d $(PARDIR) --gcov-tool=$(GCOV)
85         genhtml -o $(PARDIR)/coverage/ $(PARDIR)/advent.info
86         ./coverage_dungeon.py
87
88 # Rebuild characterizing tests
89 buildchecks: savegames
90         $(PARDIR)/cheat -s -1000 -o thousand_saves.adv > /tmp/regress1000saves
91         @for file in $(TESTLOADS); do \
92             echo "Remaking $${file}.chk"; \
93             OPTS=`sed -n /#options:/s///p <$${file}.log`; \
94             advent $$OPTS <$${file}.log >$${file}.chk 2>&1 || exit 1; \
95         done; \
96         echo "inven" | advent isofoo.log /dev/stdin >multifile.chk
97         rm -f scratch.tmp
98
99 RUN_TARGETS=$(TESTLOADS:%=run-regress-%)
100 $(RUN_TARGETS): run-regress-%: %.log
101         @(test=$(<:.log=); legend=$$(sed -n '/^## /s///p' <"$<" 2>/dev/null || echo "(no description)"); \
102         OPTS=`sed -n /#options:/s///p $<`; \
103         $(advent) $$OPTS <$< | tapdiffer "$<: $${legend}" "$${test}.chk")
104
105 multifile-regress:
106         @(echo "inven" | advent isofoo.log /dev/stdin) | tapdiffer "multifile: multiple-file test" multifile.chk
107
108 TEST_TARGETS = $(RUN_TARGETS) multifile-regress
109
110 tap: count $(TEST_TARGETS)
111 count:
112         @echo 1..$(words $(TEST_TARGETS))
113
114 # end