add perltidy target
[mkws-moved-to-github.git] / test / Makefile
1 # Copyright (c) 2013-2014 IndexData ApS. http://indexdata.com
2
3 # For running on Mike's local install of node.js
4 MIKE = PATH=$$PATH:/usr/local/lib/node-v0.10.24-linux-x64/bin
5
6 PHANTOMJS_URL=https://mkws-dev.indexdata.com/jasmine-popup.html 
7 PHANTOMJS_TIMEOUT=16
8
9 NPM_INSTALL_FLAGS=-q
10 JASMINE_NODE=   ./node_modules/jasmine-node/bin/jasmine-node
11 PHANTOMJS=      ./node_modules/phantomjs/bin/phantomjs
12 IMAGES= ./images
13 SCREENSHOT_WIDTH=       360 480 640 768 1024 1200 1440 2048
14 PERL_SCRIPTS=   bomb.pl
15
16 all: check
17
18 clean:
19         rm -f mkws-error.png mkws-error.html images/*.png
20
21 distclean: clean
22         rm -rf node_modules
23
24 mkws-complete-syntax-check:
25         ${MAKE} -C../tools/htdocs $@
26
27 check: mkws-complete-syntax-check
28         @if [ ! -e node_modules ]; then echo "please run first: make node-modules"; exit 1; fi 
29         ${JASMINE_NODE} --noColor --captureExceptions --forceexit ./spec
30
31 test: check
32
33 terse:
34         $(MIKE) jasmine-node --noColor --captureExceptions --forceexit spec
35
36 phantomjs p:
37         ./bomb.pl --timeout="${PHANTOMJS_TIMEOUT}.5" ${PHANTOMJS} phantom/run-jasmine.js ${PHANTOMJS_URL} ${PHANTOMJS_TIMEOUT}
38
39 screenshot:
40         ${PHANTOMJS} phantom/screenshot.js ${PHANTOMJS_URL} ${IMAGES}/screenshot.png 1200 1000
41
42 screenshot-mkws:
43         for i in ${SCREENSHOT_WIDTH}; do \
44             ${PHANTOMJS} phantom/screenshot.js http://mkws.indexdata.com ${IMAGES}/mkws-$$i.png $$i 1000 &  \
45         done; wait
46         ls -l ${IMAGES}
47
48 screenshot-indexdata:
49         for i in ${SCREENSHOT_WIDTH}; do \
50             ${PHANTOMJS} phantom/screenshot.js http://www.indexdata.com ${IMAGES}/indexdata-$$i.png $$i 1000 &  \
51         done; wait
52         ls -l ${IMAGES}
53
54 jsbeautifier jsb indent:
55         for i in package.json ./spec*/*.js ./js/*.js ./phantom/*.js; do \
56           jsbeautifier -j $$i > $@.tmp && mv -f $@.tmp $$i; \
57         done
58
59 perltidy:
60         @ls ${PERL_SCRIPTS} | xargs -n1 -P16 perl -c 2>/dev/null
61         @ls ${PERL_SCRIPTS} | xargs -n2 -P8 perltidy -b
62
63
64 node_modules node-modules:
65         npm install ${NPM_INSTALL_FLAGS}
66
67 help:
68         @echo "make [ all | check | clean | distclean ]"
69         @echo "     [ phantomjs | screenshot ]"
70         @echo "     [ jsbeautifier | perltidy ]"
71         @echo "     [ node-modules ]"
72         @echo ""
73         @echo "DEBUG=1 make phantomjs PHANTOMJS_TIMEOUT=8 PHANTOMJS_URL=https://mkws-dev.indexdata.com/jasmine-popup.html"
74