quote URLs
[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=      perl ../bin/bomb.pl --timeout=${PHANTOMJS_TIMEOUT} ../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 iframe-*.html
22         rm -f ${IMAGES}/*.png
23
24 distclean: clean
25         rm -f ${IMAGES}/*.png.tmp
26
27 test: check
28
29 screenshot:
30         file=${PREFIX}.$$(echo "${PHANTOMJS_URL}" | perl -npe 's,(\W),-,g; s/-$$//;'); \
31           ${PHANTOMJS} ${PROG} "${PHANTOMJS_URL}" ${IMAGES}/tmp.$$file.png ${SCREENSHOT_WIDTH_HEIGHT} ${TIMEOUT}; \
32           mv -f  ${IMAGES}/tmp.$$file.png  ${IMAGES}/$$file.png
33
34 screenshots: clean estimate-time iframe
35         set -e; \
36         for t in ${TESTS}; do \
37             for i in $$(cat url.$$t); do \
38                 ${MAKE} PHANTOMJS_URL="$$i" TIMEOUT=4 PREFIX=$$t screenshot; \
39             done; \
40             ${MAKE} PREFIX=$$t index; \
41         done
42
43 estimate-time:
44         @wc -l url.* | tail -n1 | awk '{print "Estimeate run time: " $$1 * (1 + '${TIMEOUT}'), "seconds" }'
45         @echo ""
46
47 index:
48         ( cd ${IMAGES}; ls -tr ${PREFIX}.*.png | perl -ne 'chomp; print qq{<h2>$$_</h2><img src="'${IMAGES}/'$$_"/><br/><br/><p/>\n}' ) > index-${PREFIX}.html
49
50 iframe: index-iframe-demo
51 index-iframe-demo:
52         ( cat url.demos | perl -ne 'chomp; print qq{<h2>$$_</h2><iframe width="900px" height="600px" src="$$_"></iframe>\n}' ) > iframe-demos.html
53
54 help:
55         @echo "make [ all | clean | distclean ]"
56         @echo "     [ screenshots ]"
57         @echo "     [ screenshot | index | iframe ]"
58         @echo ""
59         @echo "Examples: "
60         @echo ""
61         @echo "make TESTS=mike screenshots"
62