X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Fwidgets%2FMakefile;h=65f96d13ee435e2c8c234ed79d47ff997824b649;hb=HEAD;hp=f1d13f22bb05bbd6b15cd09d7b9a78af3f23fc18;hpb=b977aa0eac12c1d80b35e8d8a7a429377bcb6c7c;p=mkws-moved-to-github.git diff --git a/test/widgets/Makefile b/test/widgets/Makefile index f1d13f2..65f96d1 100644 --- a/test/widgets/Makefile +++ b/test/widgets/Makefile @@ -1,15 +1,15 @@ # Copyright (c) 2013-2014 Index Data ApS. http://indexdata.com PHANTOMJS_TIMEOUT=30 -PHANTOMJS= perl ../bin/bomb.pl --timeout=${PHANTOMJS_TIMEOUT} ../node_modules/phantomjs/bin/phantomjs +PHANTOMJS= ../bin/bomb --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 mike # koha.url TIMEOUT=4 PREFIX= test +APACHE_PORT:= $(shell echo $${APACHE_PORT-4040}) PHANTOMJS_URL= http://cph.koha.indexdata.com/cgi-bin/koha/opac-search.pl?q=sushi PHANTOMJS_URL= http://www.indexdata.com/ @@ -35,26 +35,44 @@ 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: " + @echo " http://localhost:${APACHE_PORT}/test/widgets/index.html" + @echo "" + @echo "You can start the web server with: make apache-start" 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 ""