Skip to content

Instantly share code, notes, and snippets.

@Filirom1
Forked from kembuco/run-mocha.js
Created July 3, 2012 17:31
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save Filirom1/3041251 to your computer and use it in GitHub Desktop.
JavaScript: PhantomJS Mocha Scrapper
/*global phantom:true, console:true, WebPage:true, Date:true*/
(function () {
var url, timeout, page, defer;
if (phantom.args.length < 1) {
console.log("Usage: phantomjs run-mocha.coffee URL [timeout]");
phantom.exit();
}
url = phantom.args[0];
timeout = phantom.args[1] || 6000;
page = new WebPage();
defer = function (test, scrapper) {
var start, condition, func, interval, time, testStart;
start = new Date().getTime();
testStart = new Date().getTime();
condition = false;
func = function () {
if (new Date().getTime() - start < timeout && !condition) {
condition = test();
} else {
if (!condition) {
console.log("Timeout passed before the tests finished.");
phantom.exit();
} else {
clearInterval(interval);
time = Math.round((new Date().getTime() - testStart) / 100) / 10;
console.log("Finished in " + time + "s.\n");
scrapper();
phantom.exit();
}
}
};
interval = setInterval(func, 100);
};
page.onConsoleMessage = function (msg) { console.log(msg); };
page.open(url, function (status) {
var test, scrapper;
if (status !== "success") {
console.log("Failed to load the page. Check the url");
phantom.exit();
}
test = function () {
return page.evaluate(function () {
return document.querySelector(".duration");
});
};
scrapper = function () {
var all, list, i, len;
all = page.evaluate(function () {
var specs, i, len, results = [];
specs = document.querySelectorAll(".test");
for (i = 0, len = specs.length; i < len; i += 1) {
results.push(specs[i].getAttribute("class").search(/fail/) === -1);
}
return results;
});
// Outputs a '.' or 'F' for each test
console.log(all.reduce(function (str, a) {
return str += (a) ? "." : "F";
}, ""));
list = page.evaluate(function () {
var parseSuite, parseSuites, parseTests, extractNodes;
extractNodes = function (nodes, match) {
var i, len, regex, results = [];
regex = new RegExp(match);
for (i = 0, len = nodes.length; i < len; i += 1) {
if (nodes[i].getAttribute("class").search(regex) !== -1) {
results.push(nodes[i]);
}
}
return results;
};
parseTests = function(tests) {
var i, len, messages = [];
for (i = 0, len = tests.length; i < len; i += 1) {
messages.push(
tests[i].querySelector("h2").innerText + " - " +
tests[i].querySelector(".error").innerText
);
}
messages = messages.join(" \n");
return messages;
};
parseSuite = function (suite, description) {
var nested, tests, div, fails = [];
div = suite.querySelector("div");
if (typeof description === "undefined") {
description = [];
}
description.push(suite.querySelector("h1").innerText);
tests = extractNodes(div.childNodes, "fail");
if (tests.length) {
fails.push({
desc: description.join(" :: "),
msg: " " + parseTests(tests)
});
}
nested = extractNodes(div.childNodes, "suite");
if (nested.length) {
fails = fails.concat(parseSuites(nested, description));
}
return fails;
};
parseSuites = function (suites, description) {
var i, len, fails = [];
for (i = 0, len = suites.length; i < len; i += 1) {
fails = fails.concat(parseSuite(suites[i], description));
}
return fails;
};
return parseSuites(document.querySelectorAll("#mocha > .suite"), []);
});
// If the list of failures is not empty output the failure messages
console.log("");
if (list.length) {
for (i = 0, len = list.length; i < len; i += 1) {
console.log(list[i].desc + "\n" + list[i].msg + "\n");
}
}
};
defer(test, scrapper);
});
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment