X-Git-Url: http://sru.miketaylor.org.uk/?a=blobdiff_plain;f=test%2Fwidgets%2FMakefile;h=39aaadaa80c1a9d8b5d72ef60d52ef1bfa7d9fe2;hb=73477566f442547598f213c19d28272aec4d7a10;hp=0080dce7b0f40059963ad9c709c0e74bd647d3ec;hpb=50ea479d61483dbb41161311c1c2d8be0b4149e1;p=mkws-moved-to-github.git diff --git a/test/widgets/Makefile b/test/widgets/Makefile index 0080dce..39aaada 100644 --- a/test/widgets/Makefile +++ b/test/widgets/Makefile @@ -7,8 +7,8 @@ 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,18 +26,22 @@ 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 $$t.url); 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 ${PREFIX}.*.png | perl -ne 'chomp; print qq{

$$_



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