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.:
5 phantomjs evaluate.js https://mkws-dev.indexdata.com/jasmine-local-popup.html
8 var page = require('webpage').create(),
9 system = require('system');
11 if (system.args.length === 1) {
12 console.log('Usage: screenshot.js <some URL>');
15 var url = system.args[1];
22 var run_time = 8; // poll up to seconds
23 if (system.args[2] && parseFloat(system.args[2]) > 0){
24 run_time = parseFloat(system.args[2] );
27 /************************/
29 function wait_for_jasmine(checkFx, readyFx, failFx, timeout) {
30 var max_timeout = timeout ? timeout : run_time * 1000,
31 start = new Date().getTime(),
35 var interval = setInterval(function() {
40 // console.log("'waitFor()' finished in " + (new Date().getTime() - start) + "ms.");
41 result.time = (new Date().getTime() - start);
43 clearInterval(interval);
48 else if ( new Date().getTime() - start >= max_timeout ) {
49 result.time = (new Date().getTime() - start);
58 condition = result.mkws.jasmine_done;
61 }, 500); //< repeat check every N ms
66 page.open(url, function (status) {
67 console.log("fetch " + url + " with status: " + status);
68 if (status != 'success') {
69 console.log("Failed to fetch page, give up");
73 console.log("polling MKWS jasmine test status for " + run_time + " seconds");
75 var exit = wait_for_jasmine(function () {
76 return page.evaluate(function () {
77 if (!window || !window.$ || !window.mkws) {
82 html: window.$("html").html(),
83 duration: window.$(".duration").text(),
84 passing: window.$(".passingAlert").text()
90 console.log("MKWS tests are successfully done in " + result.time/1000 + " seconds. Hooray!");
91 console.log("jasmine duration: " + result.duration);
92 console.log("jasmine passing: " + result.passing);
96 var error_png = "./mkws-error.png";
97 var error_html = "./mkws-error.html";
99 console.log("MKWS tests failed after " + result.time/1000 + " seconds");
100 console.log("keep screenshot in '" + error_png + "'");
101 page.render(error_png);
103 console.log("keep html DOM in '" + error_html + "'");
104 var html = result.html + "\n\n<!-- mkws: " + JSON.stringify(result.mkws) + " -->\n";
105 var fs = require('fs');
106 fs.write(error_html, html, "wb");