X-Git-Url: http://git.indexdata.com/?p=mkws-moved-to-github.git;a=blobdiff_plain;f=test%2Fwidgets%2FMakefile;h=6433265a9194730645718f3e4d7cb98d44a4d3eb;hp=188a07d80bc65a666ec73a79fa28af413ae3332b;hb=65d474669fb7e4220a6a2d3a1411a1e4b0278be1;hpb=5e0fe437e8612e87fb023dfa89ca2547628cb1c9 diff --git a/test/widgets/Makefile b/test/widgets/Makefile index 188a07d..6433265 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=30 -PHANTOMJS= ../node_modules/phantomjs/bin/phantomjs +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 @@ -28,32 +28,48 @@ 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 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} PHANTOMJS_URL="$$i" TIMEOUT=4 PREFIX=$$t screenshot & sleep 1; \ + done; wait; \ ${MAKE} PREFIX=$$t index; \ done + ${MAKE} index-widgets tidy help-url + +help-url: + @echo "" + @echo "Please check now: http://localhost/test/widgets/index.html" estimate-time: - @wc -l url.* | tail -n1 | awk '{print "Estimeate run time: " $$1 * (1 + '${TIMEOUT}'), "seconds" }' + @wc -l url.* | tail -n1 | awk '{print "Estimeate run time: " $$1 * (1 + '${TIMEOUT}') * 0.5, "seconds" }' @echo "" index: ( cd ${IMAGES}; ls -tr ${PREFIX}.*.png | perl -ne 'chomp; print qq{

$$_



\n}' ) > index-${PREFIX}.html +index-widgets: + ls -t index-*html iframe-*.html | perl -ne 'chomp; print qq{$$_
\n}' > index.html + iframe: index-iframe-demo index-iframe-demo: - ( cat url.demos | perl -ne 'chomp; print qq{

$$_

\n}' ) > iframe-demos.html + ( egrep example.indexdata.com url.demos | perl -ne 'chomp; print qq{

$$_

\n}' ) > iframe-demos-example.html + ( egrep -v example.indexdata.com url.demos | perl -ne 'chomp; print qq{

$$_

\n}' ) > iframe-demos-other.html + +tidy: + for i in iframe-demos*.html index*.html; do \ + tidy -i -m $$i >/dev/null 2>&1; \ + perl -i -npe 's,(^\s*), $$1,' $$i; \ + done help: @echo "make [ all | clean | distclean ]" @echo " [ screenshots ]" - @echo " [ screenshot | index | iframe ]" + @echo " [ screenshot | index | iframe | tidy ]" @echo "" @echo "Examples: " @echo ""