Spaces:
Running
Running
File size: 4,724 Bytes
87b3b3a |
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 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 |
(function() {
if (! jasmine) {
throw new Exception("jasmine library does not exist in global namespace!");
}
/**
* Basic reporter that outputs spec results to the browser console.
* Useful if you need to test an html page and don't want the TrivialReporter
* markup mucking things up.
*
* Usage:
*
* jasmine.getEnv().addReporter(new jasmine.ConsoleReporter());
* jasmine.getEnv().execute();
*/
var ConsoleReporter = function() {
this.started = false;
this.finished = false;
};
ConsoleReporter.prototype = {
reportRunnerResults: function(runner) {
if (this.hasGroupedConsole()) {
var suites = runner.suites();
startGroup(runner.results(), 'tests');
for (var i=0; i<suites.length; i++) {
if (!suites[i].parentSuite) {
suiteResults(suites[i]);
}
}
console.groupEnd();
}
else {
var dur = (new Date()).getTime() - this.start_time;
var failed = this.executed_specs - this.passed_specs;
var spec_str = this.executed_specs + (this.executed_specs === 1 ? " spec, " : " specs, ");
var fail_str = failed + (failed === 1 ? " failure in " : " failures in ");
this.log("Runner Finished.");
this.log(spec_str + fail_str + (dur/1000) + "s.");
}
this.finished = true;
},
hasGroupedConsole: function() {
var console = jasmine.getGlobal().console;
return console && console.info && console.warn && console.group && console.groupEnd && console.groupCollapsed;
},
reportRunnerStarting: function(runner) {
this.started = true;
if (!this.hasGroupedConsole()) {
this.start_time = (new Date()).getTime();
this.executed_specs = 0;
this.passed_specs = 0;
this.log("Runner Started.");
}
},
reportSpecResults: function(spec) {
if (!this.hasGroupedConsole()) {
var resultText = "Failed.";
if (spec.results().passed()) {
this.passed_specs++;
resultText = "Passed.";
}
this.log(resultText);
}
},
reportSpecStarting: function(spec) {
if (!this.hasGroupedConsole()) {
this.executed_specs++;
this.log(spec.suite.description + ' : ' + spec.description + ' ... ');
}
},
reportSuiteResults: function(suite) {
if (!this.hasGroupedConsole()) {
var results = suite.results();
this.log(suite.description + ": " + results.passedCount + " of " + results.totalCount + " passed.");
}
},
log: function(str) {
var console = jasmine.getGlobal().console;
if (console && console.log) {
console.log(str);
}
}
};
function suiteResults(suite) {
var results = suite.results();
startGroup(results, suite.description);
var specs = suite.specs();
for (var i in specs) {
if (specs.hasOwnProperty(i)) {
specResults(specs[i]);
}
}
var suites = suite.suites();
for (var j in suites) {
if (suites.hasOwnProperty(j)) {
suiteResults(suites[j]);
}
}
console.groupEnd();
}
function specResults(spec) {
var results = spec.results();
startGroup(results, spec.description);
var items = results.getItems();
for (var k in items) {
if (items.hasOwnProperty(k)) {
itemResults(items[k]);
}
}
console.groupEnd();
}
function itemResults(item) {
if (item.passed && !item.passed()) {
console.warn({actual:item.actual,expected: item.expected});
item.trace.message = item.matcherName;
console.error(item.trace);
} else {
console.info('Passed');
}
}
function startGroup(results, description) {
var consoleFunc = (results.passed() && console.groupCollapsed) ? 'groupCollapsed' : 'group';
console[consoleFunc](description + ' (' + results.passedCount + '/' + results.totalCount + ' passed, ' + results.failedCount + ' failures)');
}
// export public
jasmine.ConsoleReporter = ConsoleReporter;
})();
|