X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Fwidgets%2FMakefile;h=e2d3581537bb71eb1a8d8021d95e9c28a090b115;hb=87f71ca01b619b8d613407cb3fcbb91d12d932fe;hp=13be5411ec6789c4341a5455a1f267165c011720;hpb=7aeb498a603e6bd40182de101a042a50a6ceba74;p=mkws-moved-to-github.git diff --git a/test/widgets/Makefile b/test/widgets/Makefile index 13be541..e2d3581 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= ../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) -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 @@ -18,6 +18,7 @@ all: help clean: rm -f index-*.html + rm -f iframe-*.html rm -f ${IMAGES}/*.png distclean: clean @@ -30,7 +31,7 @@ screenshot: ${PHANTOMJS} ${PROG} ${PHANTOMJS_URL} ${IMAGES}/tmp.$$file.png ${SCREENSHOT_WIDTH_HEIGHT} ${TIMEOUT}; \ mv -f ${IMAGES}/tmp.$$file.png ${IMAGES}/$$file.png -screenshots: clean estimate-time +screenshots: clean estimate-time iframe for t in ${TESTS}; do \ for i in $$(cat url.$$t); do \ ${MAKE} PHANTOMJS_URL="$$i" TIMEOUT=4 PREFIX=$$t screenshot; \ @@ -45,9 +46,16 @@ estimate-time: index: ( 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"