X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Fwidgets%2FMakefile;h=f1d13f22bb05bbd6b15cd09d7b9a78af3f23fc18;hb=b977aa0eac12c1d80b35e8d8a7a429377bcb6c7c;hp=5d731c0acfd198246d5fc8aa171b5bfc91955a8b;hpb=c4a892ed9cba0c10e9e7257137acf4c7580f3b86;p=mkws-moved-to-github.git diff --git a/test/widgets/Makefile b/test/widgets/Makefile index 5d731c0..f1d13f2 100644 --- a/test/widgets/Makefile +++ b/test/widgets/Makefile @@ -1,14 +1,15 @@ # Copyright (c) 2013-2014 Index Data ApS. http://indexdata.com -PHANTOMJS_TIMEOUT=18 -PHANTOMJS= ../node_modules/phantomjs/bin/phantomjs +PHANTOMJS_TIMEOUT=30 +PHANTOMJS= perl ../bin/bomb.pl --timeout=${PHANTOMJS_TIMEOUT} ../node_modules/phantomjs/bin/phantomjs IMAGES= ./images SCREENSHOT_WIDTH_HEIGHT= 1000 1200 PERL_SCRIPTS= ../bin/bomb.pl PROG= ../phantom/screenshot.js MD5= $(shell which md5 md5sum) -URL_FILE= koha.url -TIMEOUT=5 +TESTS= koha demos mike # koha.url +TIMEOUT=4 +PREFIX= test PHANTOMJS_URL= http://cph.koha.indexdata.com/cgi-bin/koha/opac-search.pl?q=sushi PHANTOMJS_URL= http://www.indexdata.com/ @@ -16,31 +17,46 @@ PHANTOMJS_URL= http://www.indexdata.com/ all: help clean: - rm -f mkws-error.png mkws-error.html - rm -f ${IMAGES}/*.png ${IMAGES}/*.png.tmp - rm -f ${IMAGES}/index.html + rm -f index-*.html + rm -f iframe-*.html + rm -f ${IMAGES}/*.png distclean: clean + rm -f ${IMAGES}/*.png.tmp test: check screenshot: - file=$$(echo "${PHANTOMJS_URL}" | perl -npe 's,(\W),-,g'); \ - ${PHANTOMJS} ${PROG} ${PHANTOMJS_URL} ${IMAGES}/tmp.$$file.png ${SCREENSHOT_WIDTH_HEIGHT} ${TIMEOUT}; \ + file=${PREFIX}.$$(echo "${PHANTOMJS_URL}" | perl -npe 's,(\W),-,g; s/-$$//;'); \ + ${PHANTOMJS} ${PROG} "${PHANTOMJS_URL}" ${IMAGES}/tmp.$$file.png ${SCREENSHOT_WIDTH_HEIGHT} ${TIMEOUT}; \ mv -f ${IMAGES}/tmp.$$file.png ${IMAGES}/$$file.png -screenshots: clean - for i in $$(cat ${URL_FILE}); do \ - ${MAKE} PHANTOMJS_URL="$$i" TIMEOUT=4 screenshot; \ - done; wait - ${MAKE} index +screenshots: clean estimate-time iframe + set -e; \ + for t in ${TESTS}; do \ + for i in $$(cat url.$$t); do \ + ${MAKE} PHANTOMJS_URL="$$i" TIMEOUT=4 PREFIX=$$t screenshot; \ + done; \ + ${MAKE} PREFIX=$$t index; \ + done + +estimate-time: + @wc -l url.* | tail -n1 | awk '{print "Estimeate run time: " $$1 * (1 + '${TIMEOUT}'), "seconds" }' + @echo "" index: - cd ${IMAGES}; ls -tr *.png | perl -ne 'chomp; print qq{

$$_



\n}' > index.html + ( cd ${IMAGES}; ls -tr ${PREFIX}.*.png | perl -ne 'chomp; print qq{

$$_



\n}' ) > index-${PREFIX}.html + +iframe: index-iframe-demo +index-iframe-demo: + ( cat url.demos | perl -ne 'chomp; print qq{

$$_

\n}' ) > iframe-demos.html help: @echo "make [ all | clean | distclean ]" @echo " [ screenshots ]" - @echo " [ screenshot | index ]" + @echo " [ screenshot | index | iframe ]" + @echo "" + @echo "Examples: " @echo "" + @echo "make TESTS=mike screenshots"