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