X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Fwidgets%2FMakefile;h=18a303c3f0a4fc1751cf8a2bf2549069d7e7f70e;hb=1aae30270442f31de384423a4360e256cc6e941f;hp=dcb3dfaad5fe4c8e4a2e2b2a67148c423a18a118;hpb=b12ecdb82f557f6a2add8cbad1e5ade03590045a;p=mkws-moved-to-github.git diff --git a/test/widgets/Makefile b/test/widgets/Makefile index dcb3dfa..18a303c 100644 --- a/test/widgets/Makefile +++ b/test/widgets/Makefile @@ -1,14 +1,14 @@ # Copyright (c) 2013-2014 Index Data ApS. http://indexdata.com -PHANTOMJS_TIMEOUT=18 +PHANTOMJS_TIMEOUT=30 PHANTOMJS= ../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) -TESTS= koha demos # 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 @@ -26,11 +26,11 @@ distclean: clean test: check screenshot: - file=${PREFIX}.$$(echo "${PHANTOMJS_URL}" | perl -npe 's,(\W),-,g'); \ + 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 +screenshots: clean estimate-time for t in ${TESTS}; do \ for i in $$(cat url.$$t); do \ ${MAKE} PHANTOMJS_URL="$$i" TIMEOUT=4 PREFIX=$$t screenshot; \ @@ -38,6 +38,10 @@ screenshots: clean ${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 ${PREFIX}.*.png | perl -ne 'chomp; print qq{

$$_



\n}' ) > index-${PREFIX}.html @@ -46,4 +50,7 @@ help: @echo " [ screenshots ]" @echo " [ screenshot | index ]" @echo "" + @echo "Examples: " + @echo "" + @echo "make TESTS=mike screenshots"