info@54
|
1 |
/*
|
info@54
|
2 |
* grunt-contrib-qunit
|
info@54
|
3 |
* http://gruntjs.com/
|
info@54
|
4 |
*
|
info@54
|
5 |
* Copyright (c) 2013 "Cowboy" Ben Alman, contributors
|
info@54
|
6 |
* Licensed under the MIT license.
|
info@54
|
7 |
*/
|
info@54
|
8 |
|
info@54
|
9 |
/*global QUnit:true, alert:true*/
|
info@54
|
10 |
(function () {
|
info@54
|
11 |
'use strict';
|
info@54
|
12 |
|
info@54
|
13 |
// Don't re-order tests.
|
info@54
|
14 |
QUnit.config.reorder = false
|
info@54
|
15 |
// Run tests serially, not in parallel.
|
info@54
|
16 |
QUnit.config.autorun = false
|
info@54
|
17 |
|
info@54
|
18 |
// Send messages to the parent PhantomJS process via alert! Good times!!
|
info@54
|
19 |
function sendMessage() {
|
info@54
|
20 |
var args = [].slice.call(arguments)
|
info@54
|
21 |
alert(JSON.stringify(args))
|
info@54
|
22 |
}
|
info@54
|
23 |
|
info@54
|
24 |
// These methods connect QUnit to PhantomJS.
|
info@54
|
25 |
QUnit.log = function(obj) {
|
info@54
|
26 |
// What is this I don’t even
|
info@54
|
27 |
if (obj.message === '[object Object], undefined:undefined') { return }
|
info@54
|
28 |
// Parse some stuff before sending it.
|
info@54
|
29 |
var actual = QUnit.jsDump.parse(obj.actual)
|
info@54
|
30 |
var expected = QUnit.jsDump.parse(obj.expected)
|
info@54
|
31 |
// Send it.
|
info@54
|
32 |
sendMessage('qunit.log', obj.result, actual, expected, obj.message, obj.source)
|
info@54
|
33 |
}
|
info@54
|
34 |
|
info@54
|
35 |
QUnit.testStart = function(obj) {
|
info@54
|
36 |
sendMessage('qunit.testStart', obj.name)
|
info@54
|
37 |
}
|
info@54
|
38 |
|
info@54
|
39 |
QUnit.testDone = function(obj) {
|
info@54
|
40 |
sendMessage('qunit.testDone', obj.name, obj.failed, obj.passed, obj.total)
|
info@54
|
41 |
}
|
info@54
|
42 |
|
info@54
|
43 |
QUnit.moduleStart = function(obj) {
|
info@54
|
44 |
sendMessage('qunit.moduleStart', obj.name)
|
info@54
|
45 |
}
|
info@54
|
46 |
|
info@54
|
47 |
QUnit.begin = function () {
|
info@54
|
48 |
sendMessage('qunit.begin')
|
info@54
|
49 |
console.log("Starting test suite")
|
info@54
|
50 |
console.log("================================================\n")
|
info@54
|
51 |
}
|
info@54
|
52 |
|
info@54
|
53 |
QUnit.moduleDone = function (opts) {
|
info@54
|
54 |
if (opts.failed === 0) {
|
info@54
|
55 |
console.log("\r\u2714 All tests passed in '" + opts.name + "' module")
|
info@54
|
56 |
} else {
|
info@54
|
57 |
console.log("\u2716 " + opts.failed + " tests failed in '" + opts.name + "' module")
|
info@54
|
58 |
}
|
info@54
|
59 |
sendMessage('qunit.moduleDone', opts.name, opts.failed, opts.passed, opts.total)
|
info@54
|
60 |
}
|
info@54
|
61 |
|
info@54
|
62 |
QUnit.done = function (opts) {
|
info@54
|
63 |
console.log("\n================================================")
|
info@54
|
64 |
console.log("Tests completed in " + opts.runtime + " milliseconds")
|
info@54
|
65 |
console.log(opts.passed + " tests of " + opts.total + " passed, " + opts.failed + " failed.")
|
info@54
|
66 |
sendMessage('qunit.done', opts.failed, opts.passed, opts.total, opts.runtime)
|
info@54
|
67 |
}
|
info@54
|
68 |
|
info@54
|
69 |
}())
|