Up the default PHANTOMJS_TIMEOUT to 30 seconds, as the old 18-second default times...
[mkws-moved-to-github.git] / test / widgets / Makefile
1 # Copyright (c) 2013-2014 Index Data ApS. http://indexdata.com
2
3 PHANTOMJS_TIMEOUT=30
4 PHANTOMJS=      ../node_modules/phantomjs/bin/phantomjs
5 IMAGES=         ./images
6 SCREENSHOT_WIDTH_HEIGHT=        1000 1200
7 PERL_SCRIPTS=   ../bin/bomb.pl
8 PROG=   ../phantom/screenshot.js
9 MD5=    $(shell which md5 md5sum)
10 TESTS=  koha demos mike # koha.url
11 TIMEOUT=4
12 PREFIX= test
13
14 PHANTOMJS_URL=  http://cph.koha.indexdata.com/cgi-bin/koha/opac-search.pl?q=sushi
15 PHANTOMJS_URL=  http://www.indexdata.com/
16
17 all: help
18
19 clean:
20         rm -f index-*.html
21         rm -f ${IMAGES}/*.png
22
23 distclean: clean
24         rm -f ${IMAGES}/*.png.tmp
25
26 test: check
27
28 screenshot:
29         file=${PREFIX}.$$(echo "${PHANTOMJS_URL}" | perl -npe 's,(\W),-,g; s/-$$//;'); \
30           ${PHANTOMJS} ${PROG} ${PHANTOMJS_URL} ${IMAGES}/tmp.$$file.png ${SCREENSHOT_WIDTH_HEIGHT} ${TIMEOUT}; \
31           mv -f  ${IMAGES}/tmp.$$file.png  ${IMAGES}/$$file.png
32
33 screenshots: clean estimate-time
34         for t in ${TESTS}; do \
35             for i in $$(cat url.$$t); do \
36                 ${MAKE} PHANTOMJS_URL="$$i" TIMEOUT=4 PREFIX=$$t screenshot; \
37             done; \
38             ${MAKE} PREFIX=$$t index; \
39         done
40
41 estimate-time:
42         @wc -l url.* | tail -n1 | awk '{print "Estimeate run time: " $$1 * (1 + '${TIMEOUT}'), "seconds" }'
43         @echo ""
44
45 index:
46         ( cd ${IMAGES}; ls -tr ${PREFIX}.*.png | perl -ne 'chomp; print qq{<h2>$$_</h2><img src="'${IMAGES}/'$$_"/><br/><br/><p/>\n}' ) > index-${PREFIX}.html
47
48 help:
49         @echo "make [ all | clean | distclean ]"
50         @echo "     [ screenshots ]"
51         @echo "     [ screenshot | index ]"
52         @echo ""
53         @echo "Examples: "
54         @echo ""
55         @echo "make TESTS=mike screenshots"
56