add URL list for Mike's MKWS demos, MKWS-302
[mkws-moved-to-github.git] / test / widgets / Makefile
index 8a0dbd0..39aaada 100644 (file)
@@ -7,7 +7,9 @@ SCREENSHOT_WIDTH_HEIGHT=        1000 1200
 PERL_SCRIPTS=  ../bin/bomb.pl
 PROG=  ../phantom/screenshot.js
 MD5=   $(shell which md5 md5sum)
-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
 PHANTOMJS_URL= http://www.indexdata.com/
@@ -15,30 +17,38 @@ PHANTOMJS_URL=      http://www.indexdata.com/
 all: help
 
 clean:
-       rm -f mkws-error.png mkws-error.html 
+       rm -f index-*.html
        rm -f ${IMAGES}/*.png
-       rm -f ${IMAGES}/index.html
 
 distclean: clean
+       rm -f ${IMAGES}/*.png.tmp
 
 test: check
 
 screenshot:
-       file=$$(echo "${PHANTOMJS_URL}" | perl -npe 's,(\W),-,g'); \
-       ${PHANTOMJS} ${PROG} ${PHANTOMJS_URL} ${IMAGES}/$$file.png ${SCREENSHOT_WIDTH_HEIGHT} ${TIMEOUT}
-
-screenshots:
-       for i in $$(cat url.txt); do \
-         make PHANTOMJS_URL="$$i" TIMEOUT=4 screenshot; \
-       done; wait
-       make index
+       file=${PREFIX}.$$(echo "${PHANTOMJS_URL}" | perl -npe 's,(\W),-,g; s/-$$//;'); \
+         ${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
+       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
+
+estimate-time:
+       @wc -l url.* | tail -n1 | awk '{print "Estimeate run time: " $$1 * (1 + '${TIMEOUT}'), "seconds" }'
+       @echo ""
 
 index:
-       cd ${IMAGES}; ls -tr *.png | perl -ne 'chomp; print qq{<h2>$$_</h2><img src="$$_"/><br/><br/><p/>\n}' > index.html
+       ( cd ${IMAGES}; ls -tr ${PREFIX}.*.png | perl -ne 'chomp; print qq{<h2>$$_</h2><img src="'${IMAGES}/'$$_"/><br/><br/><p/>\n}' ) > index-${PREFIX}.html
 
 help:
        @echo "make [ all | clean | distclean ]"
        @echo "     [ screenshots ]"
        @echo "     [ screenshot | index ]"
        @echo ""
+       @echo "     [ TESTS=mike screenshots ]"