Test message corrected
[open-adventure.git] / tests / Makefile
1 # Test-suite makefile for reposurgeon
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 PATH := $(realpath ..):$(realpath .):${PATH}
7 GCOV?=gcov
8
9 # Make this overrideable so it's easier to test old versions
10 advent?=advent
11
12 # Defeat annoying behavior under Mac OS X - builtin echo doesn't do -n
13 ECHO := /bin/echo
14
15 # Find all *.log entries to test
16 TESTLOADS := $(shell ls -1 *.log | sed '/.log/s///' | sort)
17
18 .PHONY: check coverage clean testlist listcheck savegames buildregress
19 .PHONY: savecheck regress
20
21 check: savecheck regress
22         @echo "=== No diff output is good news."
23         @-advent -x 2>/dev/null # Get usage message into coverage tests
24         @-advent -l /dev/null <pitfall.log >/dev/null
25
26 coverage: check
27         lcov -t "advent" -o ../advent.info -c -d .. --gcov-tool=$(GCOV)
28         genhtml -o ../coverage/ ../advent.info
29         python3 coverage_dungeon.py
30
31 .SUFFIXES: .chk
32
33 clean:
34         rm -fr *~ adventure.text *.adv scratch.tmp
35
36 # Show summary lines for all tests.
37 testlist:
38         @grep '^##' *.log
39 listcheck:
40         @for f in *.log; do \
41             if ( head -3 $$f | grep -q '^ *##' ); then :; else echo "$$f needs a description"; fi; \
42         done
43
44 # Generate bogus savegames.
45 savegames:
46         @$(ECHO) "cheat: Generate save file with -1000 deaths"
47         @../cheat -d -1000 -o cheat_numdie.adv > /tmp/cheat_numdie
48         @$(ECHO) "cheat: Generate save file with version -1337"
49         @../cheat -v -1337 -o resume_badversion.adv > /tmp/cheat_badversion
50         @$(ECHO) "cheat: Generate save file 1000 saves"
51         @../cheat -s -1000 -o thousand_saves.adv > /tmp/cheat_1000saves
52         @$(ECHO) "cheat: Generate save file 1000 turns"
53         @../cheat -t -1000 -o thousand_saves.adv > /tmp/cheat_1000turns
54         @$(ECHO) "cheat: Generate save file 1000 turns"
55         @../cheat -l -1000 -o thousand_lamp.adv > /tmp/cheat_1000lamp
56         @rm -f /tmp/cheat*
57
58
59 # Rebuild characterizing tests
60 buildregress: savegames
61         ../cheat -s -1000 -o thousand_saves.adv > /tmp/regress1000saves
62         @for file in $(TESTLOADS); do \
63             echo "Remaking $${file}.chk"; \
64             OPTS=`sed -n /#options:/s///p <$${file}.log`; \
65             advent $$OPTS <$${file}.log >$${file}.chk 2>&1 || exit 1; \
66         done; \
67         rm -f scratch.tmp
68
69 savecheck: savegames
70         @$(ECHO) "TEST cheat: Bogus option for save file generation"
71         @../cheat -QqQ 2> /tmp/coverage_cheat_batopt | true
72         @$(ECHO) "TEST cheat: No save file specified"
73         @../cheat 2>/dev/null | true
74         @$(ECHO) "TEST cheat: Fail to save because we omit -o"
75         @../cheat -d 1 2> /tmp/coverage_cheat_nooutput | true
76         @$(ECHO) "TEST cheat: Fail to save to invalid path"
77         @../cheat -o / 2> /tmp/coverage_cheat_badoutput | true
78         @$(ECHO) "TEST advent: Start with invalid file with -r"
79         @advent -r /badfilename < pitfall.log > /tmp/coverage_advent_readfail 2>&1 || exit 1
80         @$(ECHO) "TEST advent: Start with invalid file with -l"
81         @advent -l / < pitfall.log > /tmp/coverage_advent_logfail 2>&1 || exit 1
82         @$(ECHO) "TEST advent: Test -r with valid input"
83         @advent -r thousand_saves.adv < pitfall.log > /tmp/coverage_advent_readfail 2>&1 || exit 1
84         @rm -f /tmp/coverage*
85
86 # General regression testing of commands and output; look at the *.log and
87 # corresponding *.chk files to see which tests this runs.
88 regress:
89         @for file in $(TESTLOADS); do \
90             $(ECHO) -n "  $${file} "; grep '##' $${file}.log  || echo ' ## (no description)'; \
91             OPTS=`sed -n /#options:/s///p <$${file}.log`; \
92             if $(advent) $$OPTS < $${file}.log >/tmp/regress$$$$ 2>&1; \
93             then diff --text -u $${file}.chk /tmp/regress$$$$ || exit 1; \
94             else echo "*** Nonzero return status on $${file}!"; exit 1; fi \
95         done; \
96         rm -f scratch.tmp /tmp/regress$$$$
97
98 # end