Further changes for the Use cases on the live site.
[yaffs-website] / node_modules / phantomjs-prebuilt / lib / phantom / examples / run-jasmine.js
1 "use strict";
2 var system = require('system');
3
4 /**
5  * Wait until the test condition is true or a timeout occurs. Useful for waiting
6  * on a server response or for a ui change (fadeIn, etc.) to occur.
7  *
8  * @param testFx javascript condition that evaluates to a boolean,
9  * it can be passed in as a string (e.g.: "1 == 1" or "$('#bar').is(':visible')" or
10  * as a callback function.
11  * @param onReady what to do when testFx condition is fulfilled,
12  * it can be passed in as a string (e.g.: "1 == 1" or "$('#bar').is(':visible')" or
13  * as a callback function.
14  * @param timeOutMillis the max amount of time to wait. If not specified, 3 sec is used.
15  */
16 function waitFor(testFx, onReady, timeOutMillis) {
17     var maxtimeOutMillis = timeOutMillis ? timeOutMillis : 3001, //< Default Max Timeout is 3s
18         start = new Date().getTime(),
19         condition = false,
20         interval = setInterval(function() {
21             if ( (new Date().getTime() - start < maxtimeOutMillis) && !condition ) {
22                 // If not time-out yet and condition not yet fulfilled
23                 condition = (typeof(testFx) === "string" ? eval(testFx) : testFx()); //< defensive code
24             } else {
25                 if(!condition) {
26                     // If condition still not fulfilled (timeout but condition is 'false')
27                     console.log("'waitFor()' timeout");
28                     phantom.exit(1);
29                 } else {
30                     // Condition fulfilled (timeout and/or condition is 'true')
31                     console.log("'waitFor()' finished in " + (new Date().getTime() - start) + "ms.");
32                     typeof(onReady) === "string" ? eval(onReady) : onReady(); //< Do what it's supposed to do once the condition is fulfilled
33                     clearInterval(interval); //< Stop this interval
34                 }
35             }
36         }, 100); //< repeat check every 100ms
37 };
38
39
40 if (system.args.length !== 2) {
41     console.log('Usage: run-jasmine.js URL');
42     phantom.exit(1);
43 }
44
45 var page = require('webpage').create();
46
47 // Route "console.log()" calls from within the Page context to the main Phantom context (i.e. current "this")
48 page.onConsoleMessage = function(msg) {
49     console.log(msg);
50 };
51
52 page.open(system.args[1], function(status){
53     if (status !== "success") {
54         console.log("Unable to open " + system.args[1]);
55         phantom.exit(1);
56     } else {
57         waitFor(function(){
58             return page.evaluate(function(){
59                 return document.body.querySelector('.symbolSummary .pending') === null
60             });
61         }, function(){
62             var exitCode = page.evaluate(function(){
63                 try {
64                     console.log('');
65                     console.log(document.body.querySelector('.description').innerText);
66                     var list = document.body.querySelectorAll('.results > #details > .specDetail.failed');
67                     if (list && list.length > 0) {
68                       console.log('');
69                       console.log(list.length + ' test(s) FAILED:');
70                       for (i = 0; i < list.length; ++i) {
71                           var el = list[i],
72                               desc = el.querySelector('.description'),
73                               msg = el.querySelector('.resultMessage.fail');
74                           console.log('');
75                           console.log(desc.innerText);
76                           console.log(msg.innerText);
77                           console.log('');
78                       }
79                       return 1;
80                     } else {
81                       console.log(document.body.querySelector('.alert > .passingAlert.bar').innerText);
82                       return 0;
83                     }
84                 } catch (ex) {
85                     console.log(ex);
86                     return 1;
87                 }
88             });
89             phantom.exit(exitCode);
90         });
91     }
92 });