-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathphantom_mocha_runner.js
63 lines (54 loc) · 1.61 KB
/
phantom_mocha_runner.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/*
* Qt+WebKit powered headless test runner using Phantomjs
*
* Phantomjs installation: http://code.google.com/p/phantomjs/wiki/BuildInstructions
*
* Run with:
* phantomjs runner.js [url-of-your-qunit-testsuite]
*
* E.g.
* phantomjs runner.js http://localhost/qunit/test
*/
/*jshint latedef:false */
/*global phantom:true require:true console:true */
var url = phantom.args[0],
threshold = phantom.args[1],
page = require('webpage').create();
// Route "console.log()" calls from within the Page context to the main Phantom context (i.e. current "this")
page.onConsoleMessage = function(msg) {
console.log(msg);
};
page.onInitialized = function() {
page.injectJs('travisCov.js');
};
page.open(url, function(status){
if (status !== "success") {
console.log("Unable to access network: " + status);
phantom.exit(1);
} else {
var interval = setInterval(function() {
if (finished()) {
clearInterval(interval);
onfinishedTests();
}
}, 500);
}
});
function finished() {
return page.evaluate(function(){
var m = document.getElementById("mocha"),
ms = document.getElementById("mocha-stats");
return m && ms;
});
}
function onfinishedTests() {
var output = page.evaluate(function(threshold) {
//print a success message
var retval=0;
if (!window.travisCov.check(window._$blanket,{threshold: threshold})){
retval=1;
}
return retval;
});
phantom.exit(output > 0 ? 1 : 0);
}