cleanup widgets
[mkws-moved-to-github.git] / test / Makefile
1 # Copyright (c) 2013-2014 Index Data 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 APACHE_PORT:= $(shell echo $${APACHE_PORT-4040})
7
8 #PHANTOMJS_URL=https://mkws-dev.indexdata.com/jasmine-popup.html        
9 PHANTOMJS_PATH=jasmine-local-popup.html
10 PHANTOMJS_URL=http://localhost:${APACHE_PORT}/${PHANTOMJS_PATH}
11 PHANTOMJS_TIMEOUT=18
12
13 NPM_INSTALL_FLAGS=-q
14 JASMINE_NODE=   ./node_modules/jasmine-node/bin/jasmine-node
15 PHANTOMJS=      ./node_modules/phantomjs/bin/phantomjs
16 IMAGES= ./images
17 SCREENSHOT_WIDTH=       360 480 640 768 1024 1200 1440 2048
18 PERL_SCRIPTS=   bin/bomb.pl
19 TMP_DIR=        ./logs
20 APACHE_HTTPD:=  $(shell env PATH=$$PATH:/usr/sbin which apache2 httpd false | head -1 )
21
22 all: check
23
24 clean:
25         rm -f mkws-error.png mkws-error.html 
26         rm -f images/*.png
27
28 distclean: clean clean-tmp clean-error
29         rm -rf node_modules
30         rm -f ${TMP_DIR}/jasmine-dev
31         rm -f libexec
32         make -C./widgets $@
33
34 clean-error:
35         rm -f mkws-error.png.* mkws-error.html.*
36
37 clean-tmp:
38         rm -rf ${TMP_DIR}
39         mkdir -p ${TMP_DIR}
40         touch ${TMP_DIR}/.gitkeep
41
42 mkws-complete-syntax-check:
43         ${MAKE} -C../tools/htdocs mkws-complete.min.js
44
45 check: mkws-complete-syntax-check
46         @if [ ! -e node_modules ]; then echo "please run first: make node-modules"; exit 1; fi 
47         ${JASMINE_NODE} --noColor --captureExceptions --forceexit ./spec
48
49 test: check
50
51 terse:
52         $(MIKE) jasmine-node --noColor --captureExceptions --forceexit spec
53
54 phantomjs p: apache-stop apache-start _phantomjs 
55         ${MAKE} apache-stop
56
57 _phantomjs:
58         perl ./bin/bomb.pl --timeout="${PHANTOMJS_TIMEOUT}.5" ${PHANTOMJS} phantom/run-jasmine.js ${PHANTOMJS_URL} ${PHANTOMJS_TIMEOUT}
59
60 phantomjs-all p-all:
61         ${MAKE} phantomjs PHANTOMJS_PATH=jasmine-local-popup.html
62         ${MAKE} phantomjs PHANTOMJS_PATH=jasmine-popup.html
63         ${MAKE} phantomjs PHANTOMJS_PATH=jasmine-cors-popup.html
64         ${MAKE} phantomjs PHANTOMJS_PATH=jasmine.html
65
66 mike-test:
67         $(MAKE) _phantomjs PHANTOMJS_URL=http://x.example.indexdata.com/jasmine-popup.html
68
69 screenshot:
70         ${PHANTOMJS} phantom/screenshot.js ${PHANTOMJS_URL} ${IMAGES}/screenshot.png 1200 1000
71
72 screenshot-mkws:
73         for i in ${SCREENSHOT_WIDTH}; do \
74             ${PHANTOMJS} phantom/screenshot.js http://mkws.indexdata.com ${IMAGES}/mkws-$$i.png $$i 1000 &  \
75         done; wait
76         ls -l ${IMAGES}
77
78 screenshot-indexdata:
79         for i in ${SCREENSHOT_WIDTH}; do \
80             ${PHANTOMJS} phantom/screenshot.js http://www.indexdata.com ${IMAGES}/indexdata-$$i.png $$i 1000 &  \
81         done; wait
82         ls -l ${IMAGES}
83
84 screenshots:
85         make -C ./widgets $@
86
87 jsbeautifier jsb indent:
88         for i in package.json ./spec*/*.js ./js/*.js ./phantom/*.js; do \
89           jsbeautifier -j $$i > $@.tmp && mv -f $@.tmp $$i; \
90         done
91
92 perltidy:
93         @ls ${PERL_SCRIPTS} | xargs -n1 -P16 perl -c 2>/dev/null
94         @ls ${PERL_SCRIPTS} | xargs -n2 -P8 perltidy -b
95
96
97 node_modules node-modules:
98         npm install ${NPM_INSTALL_FLAGS}
99
100 apache-start:
101         bin/apache-template-update
102         ${APACHE_HTTPD} -f `pwd`/${TMP_DIR}/jasmine-dev
103
104 apache-stop:
105         @-if [ -e ${TMP_DIR}/mkws-jasmine.pid ]; then \
106            kill `cat ${TMP_DIR}/mkws-jasmine.pid`; \
107         else \
108            killall apache2 2> /dev/null; \
109         fi
110         @sleep 0.6
111         rm -f ${TMP_DIR}/mkws-jasmine.pid
112
113 help:
114         @echo "make [ all | check | clean | distclean ]"
115         @echo "     [ phantomjs | phantomjs-all ]"
116         @echo "     [ jsbeautifier | perltidy | screenshot ]"
117         @echo "     [ screenshots ]"
118         @echo "     [ node-modules ]"
119         @echo "     [ apache-stop apache-start ]"
120         @echo ""
121         @echo "Examples: "
122         @echo ""
123         @echo "make phantomjs PHANTOMJS_PATH=${PHANTOMJS_PATH}"
124         @echo "DEBUG=0 APACHE_PORT=5050 make -s phantomjs PHANTOMJS_TIMEOUT=12 PHANTOMJS_PATH=${PHANTOMJS_PATH}"
125         @echo "DEBUG=2 make phantomjs PHANTOMJS_TIMEOUT=12 PHANTOMJS_URL=${PHANTOMJS_URL}"
126         @echo ""
127         @echo "make phantomjs-all"
128         @echo ""
129