X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Fwidgets%2FMakefile;h=dbd9bbfc7270377f419ed233584bbfe7fc1b80aa;hb=b223f1236d9f125aa43db80eee372ef1b31fc723;hp=6463ae82c6d49707619b4840e87ddbe67c74a2be;hpb=caddda9e4b96e995bad36c41380d6a5e9afd65fa;p=mkws-moved-to-github.git diff --git a/test/widgets/Makefile b/test/widgets/Makefile index 6463ae8..dbd9bbf 100644 --- a/test/widgets/Makefile +++ b/test/widgets/Makefile @@ -3,7 +3,7 @@ PHANTOMJS_TIMEOUT=18 PHANTOMJS= ../node_modules/phantomjs/bin/phantomjs IMAGES= ./images -SCREENSHOT_WIDTH_HEIGHT= 1400 800 +SCREENSHOT_WIDTH_HEIGHT= 1000 1200 PERL_SCRIPTS= ../bin/bomb.pl PROG= ../phantom/screenshot.js MD5= $(shell which md5 md5sum) @@ -12,11 +12,11 @@ TIMEOUT=5 PHANTOMJS_URL= http://cph.koha.indexdata.com/cgi-bin/koha/opac-search.pl?q=sushi PHANTOMJS_URL= http://www.indexdata.com/ -all: check +all: help clean: rm -f mkws-error.png mkws-error.html - rm -f ${IMAGES}/*.png + rm -f ${IMAGES}/*.png ${IMAGES}/*.png.tmp rm -f ${IMAGES}/index.html distclean: clean @@ -24,20 +24,22 @@ distclean: clean test: check screenshot: - file=$$(echo "${PHANTOMJS_URL}" | ${MD5} | perl -npe 's,\s.*,,'); \ - ${PHANTOMJS} ${PROG} ${PHANTOMJS_URL} ${IMAGES}/$$file.png ${SCREENSHOT_WIDTH_HEIGHT} ${TIMEOUT} + file=$$(echo "${PHANTOMJS_URL}" | perl -npe 's,(\W),-,g'); \ + ${PHANTOMJS} ${PROG} ${PHANTOMJS_URL} ${IMAGES}/tmp.$$file.png ${SCREENSHOT_WIDTH_HEIGHT} ${TIMEOUT}; \ + mv -f ${IMAGES}/tmp.$$file.png ${IMAGES}/$$file.png -screenshots: +screenshots: clean for i in $$(cat url.txt); do \ make PHANTOMJS_URL="$$i" TIMEOUT=4 screenshot; \ done; wait make index index: - cd ${IMAGES}; ls *.png | perl -ne 'chomp; print qq{$$_
\n}' > index.html + cd ${IMAGES}; ls -tr *.png | perl -ne 'chomp; print qq{

$$_



\n}' > index.html help: @echo "make [ all | clean | distclean ]" - @echo " [ screenshot | index | screenshots ]" + @echo " [ screenshots ]" + @echo " [ screenshot | index ]" @echo ""