X-Git-Url: http://git.indexdata.com/?p=mkws-moved-to-github.git;a=blobdiff_plain;f=test%2FMakefile;h=2d3e8bbfe4f9f68b27403b5a5a5f6355efaf2ac1;hp=8891679caa31270b38be317c24235534ceaac68b;hb=e39fc641e7845d8b114f465b73aa7a5e7fa7d412;hpb=c6573b00a7fd15722df7ca5155a46fff05b1040c diff --git a/test/Makefile b/test/Makefile index 8891679..2d3e8bb 100644 --- a/test/Makefile +++ b/test/Makefile @@ -1,26 +1,136 @@ -# Copyright (c) 2013 IndexData ApS. http://indexdata.com +# Copyright (c) 2013-2014 Index Data ApS. http://indexdata.com + +# For running on Mike's local install of node.js +MIKE = PATH=$$PATH:/usr/local/lib/node-v0.10.24-linux-x64/bin + +APACHE_PORT:= $(shell echo $${APACHE_PORT-4040}) + +#PHANTOMJS_URL=https://mkws-dev.indexdata.com/jasmine-popup.html +PHANTOMJS_PATH=jasmine-local-popup.html +PHANTOMJS_URL=http://localhost:${APACHE_PORT}/${PHANTOMJS_PATH} +PHANTOMJS_TIMEOUT ?= 30 + +NPM_INSTALL_FLAGS=-q +JASMINE_NODE= ./node_modules/jasmine-node/bin/jasmine-node +PHANTOMJS= ./node_modules/phantomjs/bin/phantomjs +IMAGES= ./images +SCREENSHOT_WIDTH= 360 480 640 768 1024 1200 1440 2048 +PERL_SCRIPTS= bin/bomb.pl +TMP_DIR= ./logs +APACHE_HTTPD:= $(shell env PATH=$$PATH:/usr/sbin which apache2 httpd false | head -1 ) +APACHE_PORT ?= 4040 all: check clean: + rm -f mkws-error.png mkws-error.html + rm -f images/*.png + ${MAKE} -C./widgets $@ -distclean: +distclean: apache-stop clean clean-tmp clean-error rm -rf node_modules - + rm -f libexec + +clean-error: + rm -f mkws-error.png.* mkws-error.html.* + +clean-tmp: + rm -rf ${TMP_DIR} + mkdir -p ${TMP_DIR} + touch ${TMP_DIR}/.gitkeep -check: - jasmine-node --captureExceptions ./spec +mkws-complete-syntax-check: + ${MAKE} -C../src ../tools/htdocs/mkws-complete.min.js + +check check-js: node-modules mkws-complete-syntax-check + ${JASMINE_NODE} --noColor --captureExceptions --forceexit ./spec + +check-node-installation: + @if [ ! -e node_modules ]; then \ + echo "==> please run first: make node-modules"; \ + echo ""; \ + exit 1; \ + fi test: check +terse: + $(MIKE) jasmine-node --noColor --captureExceptions --forceexit spec + +phantomjs p: check-js apache-stop apache-start _phantomjs + ${MAKE} apache-stop + +_phantomjs: + ./bin/bomb --timeout="${PHANTOMJS_TIMEOUT}.5" ${PHANTOMJS} phantom/run-jasmine.js ${PHANTOMJS_URL} ${PHANTOMJS_TIMEOUT} + +phantomjs-all p-all: + ${MAKE} phantomjs PHANTOMJS_PATH=jasmine-local-popup.html + ${MAKE} phantomjs PHANTOMJS_PATH=jasmine-popup.html?lang=de + ${MAKE} phantomjs PHANTOMJS_PATH=jasmine-cms-popup.html?lang=en + ${MAKE} phantomjs PHANTOMJS_PATH=jasmine.html?lang=da + +mike-test: + $(MAKE) _phantomjs PHANTOMJS_URL=http://x.example.indexdata.com/jasmine-popup.html + +screenshot: + ${PHANTOMJS} phantom/screenshot.js ${PHANTOMJS_URL} ${IMAGES}/screenshot.png 1200 1000 + +screenshot-mkws: + for i in ${SCREENSHOT_WIDTH}; do \ + ${PHANTOMJS} phantom/screenshot.js http://mkws.indexdata.com ${IMAGES}/mkws-$$i.png $$i 1000 & \ + done; wait + ls -l ${IMAGES} + +screenshot-indexdata: + for i in ${SCREENSHOT_WIDTH}; do \ + ${PHANTOMJS} phantom/screenshot.js http://www.indexdata.com ${IMAGES}/indexdata-$$i.png $$i 1000 & \ + done; wait + ls -l ${IMAGES} + +screenshots: check + ${MAKE} -C ./widgets $@ + jsbeautifier jsb indent: - for i in ./spec/*.js ./js/*.js; do \ + for i in package.json ./spec*/*.js ./js/*.js ./phantom/*.js; do \ jsbeautifier -j $$i > $@.tmp && mv -f $@.tmp $$i; \ done -node-modules: node_modules -node_modules: - npm install jquery jsdom request jasmine-node +perltidy: + @ls ${PERL_SCRIPTS} | xargs -n1 -P16 perl -c 2>/dev/null + @ls ${PERL_SCRIPTS} | xargs -n2 -P8 perltidy -b + + +node_modules node-modules: + npm install ${NPM_INSTALL_FLAGS} + +apache-start: + bin/apache-template-update + umask 002; ${APACHE_HTTPD} -f `pwd`/${TMP_DIR}/jasmine-dev-${APACHE_PORT}.conf + +APACHE_PID_FILE=${TMP_DIR}/mkws-jasmine-${APACHE_PORT}.pid +apache-stop: + @-if [ -e ${APACHE_PID_FILE} ]; then \ + kill `cat ${APACHE_PID_FILE}`; \ + else \ + killall ${APACHE_HTTPD} 2> /dev/null; \ + fi + @sleep 0.6 + rm -f ${APACHE_PID_FILE} help: - @echo "make [ all | clean | check | jsbeautifier | node-modules ]" + @echo "make [ all | check | clean | distclean ]" + @echo " [ phantomjs | phantomjs-all ]" + @echo " [ jsbeautifier | perltidy | screenshot ]" + @echo " [ screenshots ]" + @echo " [ node-modules ]" + @echo " [ apache-stop apache-start ]" + @echo "" + @echo "Examples: " + @echo "" + @echo "make phantomjs PHANTOMJS_PATH=${PHANTOMJS_PATH}" + @echo "DEBUG=0 APACHE_PORT=5050 make -s phantomjs PHANTOMJS_TIMEOUT=16 PHANTOMJS_PATH=${PHANTOMJS_PATH}" + @echo "DEBUG=2 make phantomjs PHANTOMJS_TIMEOUT=12 PHANTOMJS_URL=${PHANTOMJS_URL}" + @echo "" + @echo "make APACHE_PORT=5050 apache-start" + @echo "make phantomjs-all" + @echo ""