mirror of
https://github.com/danbulant/pngjs
synced 2026-05-27 22:02:22 +00:00
58 lines
1.3 KiB
JavaScript
58 lines
1.3 KiB
JavaScript
/*global phantom:true*/
|
|
|
|
'use strict';
|
|
|
|
var page = require('webpage').create();
|
|
|
|
var last = new Date();
|
|
var timeout = 10000;
|
|
|
|
setInterval(function () {
|
|
var results = page.evaluate(function () {
|
|
if (window.isFinished && window.isFinished()) {
|
|
return window.results;
|
|
}
|
|
});
|
|
|
|
if (results) {
|
|
var success = true;
|
|
var successes = [],
|
|
failures = [];
|
|
for (var i = 0; i < results.length; i++) {
|
|
var result = results[i];
|
|
if (result.success) {
|
|
successes.push(result.name);
|
|
} else {
|
|
failures.push(result.name);
|
|
}
|
|
success = success && result.success;
|
|
}
|
|
console.log("Success:", successes.join(", "));
|
|
if (failures.length) {
|
|
console.log("Failure:", failures.join(", "));
|
|
}
|
|
|
|
phantom.exit(success ? 0 : 1);
|
|
return;
|
|
}
|
|
|
|
if (new Date() - last > timeout) {
|
|
phantom.exit();
|
|
}
|
|
}, 100);
|
|
|
|
page.onConsoleMessage = function (msg, lineNum, sourceId) {
|
|
//console.log('CONSOLE: ' + msg);
|
|
};
|
|
|
|
page.onError = function (msg, trace) {
|
|
console.log('error.onError', msg, trace);
|
|
phantom.exit();
|
|
};
|
|
|
|
phantom.onError = function (msg, trace) {
|
|
console.log('error.onError', msg, trace);
|
|
phantom.exit();
|
|
};
|
|
|
|
page.open("http://localhost:8000");
|