check filename for .png extension
[mkws-moved-to-github.git] / test / phantom / run-jasmine.js
1 /*
2     Fetch a mkws/jasmine based page into node.js, evaluate the page and check if test status
3     This should make it possible to run the test on the command line in jenkins.  e.g.:
4
5       phantomjs evaluate.js https://mkws-dev.indexdata.com/jasmine-local-popup.html
6 */
7
8 var page = require('webpage').create(),
9     system = require('system');
10
11 if (system.args.length === 1) {
12     console.log('Usage: screenshot.js <some URL>');
13     phantom.exit();
14 }
15 var url = system.args[1];
16
17 var run_time = 8; // poll up to seconds
18 if (system.args[2] && parseFloat(system.args[2]) > 0) {
19     run_time = parseFloat(system.args[2]);
20 }
21
22 page.viewportSize = {
23     width: 1200,
24     height: 1000
25 };
26
27 // 0: silent, 1: some infos,  2: display console.log() output
28 var debug = 2;
29 if (typeof system.env['DEBUG'] != 'undefined' && parseInt(system.env['DEBUG']) != NaN) {
30     debug = system.env['DEBUG'];
31     if (debug > 0) console.log("reset debug level to: " + debug);
32 }
33
34 /************************/
35
36 function wait_for_jasmine(checkFx, readyFx, failFx, timeout) {
37     var max_timeout = timeout ? timeout : run_time * 1000,
38         start = new Date().getTime(),
39         result, condition = false;
40
41     var interval = setInterval(function () {
42         if (debug == 1) console.log(".");
43
44         // done
45         if (condition) {
46             clearInterval(interval);
47             result.time = (new Date().getTime() - start);
48             result.failed ? failFx(result) : readyFx(result);
49             phantom.exit(result.failed == 0 ? 0 : 2);
50         }
51
52         // timeout
53         else if (new Date().getTime() - start >= max_timeout) {
54             result.time = (new Date().getTime() - start);
55             failFx(result);
56             phantom.exit(1);
57         }
58
59         // checking
60         else {
61             result = checkFx();
62             if (result) condition = result.done;
63         }
64
65     }, 500); //< repeat check every N ms
66 };
67
68 function dump_html(file) {
69     // not yet implemented
70     var spawn = require('child_process').spawn,
71         lynx = spawn("lynx", ["-nolist", "-dump", file]);
72
73     lynx.stdout.on('data', function (data) {
74         console.log('lynx >> ' + data);
75     });
76
77     // lynx.stderr.on('data', function (data) { console.log('stderr: ' + data); });
78     // lynx.on('close', function (code) { console.log('child process exited with code ' + code) });
79 };
80
81 // redirect webkit console.log() output
82 page.onConsoleMessage = function (message) {
83     if (debug >= 2) console.log(message);
84 };
85
86 // cat webkit alert()
87 page.onAlert = function (msg) {
88     console.log("Alert: " + msg);
89 };
90
91 // display HTTP errors
92 page.onResourceError = function (resourceError) {
93     // console.log('phantomjs error code: ' + resourceError.errorCode);
94     console.log(resourceError.errorString);
95     phantom.exit(3);
96 };
97
98 page.open(url, function (status) {
99     if (debug >= 1) console.log("fetch " + url + " with status: " + status);
100
101     if (status != 'success') {
102         console.log("Failed to fetch page, give up. Network error?");
103         phantom.exit(1);
104     }
105
106     if (debug >= 1) console.log("polling MKWS jasmine test status for " + run_time + " seconds");
107
108
109     var exit = wait_for_jasmine(function () {
110         return page.evaluate(function () {
111             if (!window || !window.mkws || !window.mkws.$) {
112                 console.log("No window object found");
113                 return false;
114             }
115
116             var $ = window.mkws.$;
117             var error_msg = [""];
118             var passing = $(".passingAlert").text() || $(".failingAlert").text();
119
120             // extract failed tests
121             var list = $('.results > #details > .specDetail.failed');
122             if (list && list.length > 0) {
123                 error_msg.push("==> " + list.length + ' test(s) FAILED:');
124                 for (i = 0; i < list.length; ++i) {
125                     var el = list[i],
126                         desc = el.querySelector('.description'),
127                         msg = el.querySelector('.resultMessage.fail');
128                     error_msg.push($(desc).text());
129                     error_msg.push($(msg).text());
130                 }
131             }
132
133             return {
134                 mkws: window.mkws,
135                 done: $('.symbolSummary .pending').length == 0,
136                 html: $("html").html(),
137                 duration: $(".duration").text(),
138                 error_msg: error_msg,
139                 failed: (list.length > 0 || !passing),
140                 passing: passing
141             };
142         })
143     },
144
145     function (result) {
146         if (debug < 1) return;
147
148         console.log("");
149         console.log("MKWS tests are successfully done in " + result.time / 1000 + " seconds. Hooray!");
150         console.log("jasmine duration: " + result.duration);
151         console.log("jasmine passing: " + result.passing);
152     },
153
154     function (result) {
155         var error_png = "./mkws-error.png";
156         var error_html = "./mkws-error.html";
157
158         var html = result.html + "\n\n<!-- mkws: " + JSON.stringify(result.mkws) + " -->\n";
159         var fs = require('fs');
160         fs.write(error_html, html, "wb");
161         dump_html(error_html);
162
163         console.log("MKWS tests failed after " + result.time / 1000 + " seconds");
164         console.log(result.error_msg.join("\n"));
165         console.log("keep screenshot in '" + error_png + "'");
166         page.render(error_png);
167
168         console.log("keep html DOM in '" + error_html + "'");
169         // console.log("you may run: lynx -nolist -dump " + error_html);
170     }, run_time * 1000);
171 });