improve polling
[mkws-moved-to-github.git] / test / phantom / evaluate.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 page.viewportSize = {
18     width: 1200,
19     height: 1000
20 };
21
22 var run_time = 12; // poll up to seconds
23
24 /************************/
25
26 function wait_for_jasmine(checkFx, readyFx, failFx, timeout) {
27     var max_timeout = timeout ? timeout : run_time * 1000,
28         start = new Date().getTime(),
29         result,
30         condition = false;
31
32     var interval = setInterval(function() {
33         console.log(".");
34
35         // success
36         if (condition) {
37             // console.log("'waitFor()' finished in " + (new Date().getTime() - start) + "ms.");
38             readyFx(result);
39             clearInterval(interval);
40             phantom.exit(0);
41         }
42
43         // timeout
44         else if ( new Date().getTime() - start >= max_timeout ) {
45             result.time = (new Date().getTime() - start);
46             failFx(result);
47             phantom.exit(1);
48         }
49
50         // checking
51         else {
52             result = checkFx();
53             condition = result.mkws.jasmine_done;
54         }
55
56     }, 500); //< repeat check every N ms
57 };
58
59
60
61 page.open(url, function (status) {
62     console.log("fetch " + url + " with status: " + status);
63     console.log("polling MKWS test status...");
64
65     var exit = wait_for_jasmine(function () {
66         return page.evaluate(function () {
67             return {
68                 mkws: window.mkws,
69                 duration: window.$(".duration").text(),
70                 passing: window.$(".passingAlert").text()
71             };
72         })},
73
74         function(result) {
75             if (result.mkws.jasmine_done) {
76                 console.log("MKWS tests are successfully done. Hooray!");
77                 console.log("jasmine duration: " + result.duration);
78                 console.log("jasmine passing: " + result.passing);
79             }
80         },
81
82         function (result) {
83             var error_png = "./mkws-error.png";
84             console.log("MKWS tests failed after " + result.time/1000 + " seconds");
85             console.log("keep screenshot in '" + error_png + "'");
86             page.render(error_png);
87         },
88         run_time * 1000);
89
90 });