X-Git-Url: http://git.indexdata.com/?p=mkws-moved-to-github.git;a=blobdiff_plain;f=test%2Fwidgets%2FMakefile;h=e91e13c22c8b0194f592686895a00d156e370608;hp=94ff1585405cdb9d3b29a1bfdd94a56bed22b925;hb=683b0a702bcc1b4dbf9b69e005e41bca6949c1ff;hpb=8aead6499fa38935ea592a03900ccc60701d3ff7 diff --git a/test/widgets/Makefile b/test/widgets/Makefile index 94ff158..e91e13c 100644 --- a/test/widgets/Makefile +++ b/test/widgets/Makefile @@ -1,7 +1,7 @@ # 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 @@ -18,6 +18,7 @@ all: help clean: rm -f index-*.html + rm -f iframe-*.html rm -f ${IMAGES}/*.png distclean: clean @@ -27,16 +28,22 @@ test: check screenshot: file=${PREFIX}.$$(echo "${PHANTOMJS_URL}" | perl -npe 's,(\W),-,g; s/-$$//;'); \ - ${PHANTOMJS} ${PROG} ${PHANTOMJS_URL} ${IMAGES}/tmp.$$file.png ${SCREENSHOT_WIDTH_HEIGHT} ${TIMEOUT}; \ + ${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 + 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 + ${MAKE} tidy help-url + +help-url: + @echo "" + @echo "Please check now: http://localhost/test/widgets/" estimate-time: @wc -l url.* | tail -n1 | awk '{print "Estimeate run time: " $$1 * (1 + '${TIMEOUT}'), "seconds" }' @@ -45,10 +52,20 @@ 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 + +tidy: + for i in iframe-demos.html index-*.html; do \ + tidy -i -m $$i >/dev/null 2>&1; \ + perl -i -npe 's,(^\s*),\n$$1,' $$i; \ + done + help: @echo "make [ all | clean | distclean ]" @echo " [ screenshots ]" - @echo " [ screenshot | index ]" + @echo " [ screenshot | index | iframe | tidy ]" @echo "" @echo "Examples: " @echo ""