And what I meant was *this* commit was pulling in the fixes to TrivialConsoleReporter

This commit is contained in:
Davis W. Frank 2011-05-25 08:28:16 -07:00
commit da297d0f56
3 changed files with 647 additions and 548 deletions

View File

@ -6,24 +6,26 @@ var path = require('path');
// undefined = "diz be undefined yo"; // undefined = "diz be undefined yo";
var jasmineGlobals = require("../src/base"); var jasmineGlobals = require("../src/base");
for(var k in jasmineGlobals) {global[k] = jasmineGlobals[k];} for (var k in jasmineGlobals) {
global[k] = jasmineGlobals[k];
}
//load jasmine src files based on the order in runner.html //load jasmine src files based on the order in runner.html
var srcFilesInProperRequireOrder = []; var srcFilesInProperRequireOrder = [];
var runnerHtmlLines = fs.readFileSync("spec/runner.html", "utf8").split("\n"); var runnerHtmlLines = fs.readFileSync("spec/runner.html", "utf8").split("\n");
var srcFileLines = []; var srcFileLines = [];
for (var i=0; i<runnerHtmlLines.length; i++) for (var i = 0; i < runnerHtmlLines.length; i++)
if (runnerHtmlLines[i].match(/script(.*?)\/src\//)) if (runnerHtmlLines[i].match(/script(.*?)\/src\//))
srcFileLines.push(runnerHtmlLines[i]); srcFileLines.push(runnerHtmlLines[i]);
for (i=0; i<srcFileLines.length; i++) srcFilesInProperRequireOrder.push(srcFileLines[i].match(/src=\"(.*?)\"/)[1]); for (i = 0; i < srcFileLines.length; i++) srcFilesInProperRequireOrder.push(srcFileLines[i].match(/src=\"(.*?)\"/)[1]);
for (i=0; i<srcFilesInProperRequireOrder.length; i++) require(srcFilesInProperRequireOrder[i]); for (i = 0; i < srcFilesInProperRequireOrder.length; i++) require(srcFilesInProperRequireOrder[i]);
/* /*
Pulling in code from jasmine-node. Pulling in code from jasmine-node.
We can't just depend on jasmine-node because it has its own jasmine that it uses. We can't just depend on jasmine-node because it has its own jasmine that it uses.
*/ */
global.window = { global.window = {
setTimeout: setTimeout, setTimeout: setTimeout,
@ -34,33 +36,36 @@ global.window = {
delete global.window; delete global.window;
function noop(){} function noop() {
}
jasmine.executeSpecs = function(specs, done){ jasmine.executeSpecs = function(specs, done) {
for (var i = 0, len = specs.length; i < len; ++i){ for (var i = 0, len = specs.length; i < len; ++i) {
var filename = specs[i]; var filename = specs[i];
require(filename.replace(/\.\w+$/, "")); require(filename.replace(/\.\w+$/, ""));
} }
var jasmineEnv = jasmine.getEnv(); var jasmineEnv = jasmine.getEnv();
jasmineEnv.reporter = new jasmine.TrivialConsoleReporter(sys.print, done) var consoleReporter = new jasmine.TrivialConsoleReporter(sys.print, done);
jasmineEnv.addReporter(consoleReporter);
jasmineEnv.execute(); jasmineEnv.execute();
}; };
jasmine.getAllSpecFiles = function(dir, matcher){ jasmine.getAllSpecFiles = function(dir, matcher) {
var specs = []; var specs = [];
if (fs.statSync(dir).isFile() && dir.match(matcher)) { if (fs.statSync(dir).isFile() && dir.match(matcher)) {
specs.push(dir); specs.push(dir);
} else { } else {
var files = fs.readdirSync(dir); var files = fs.readdirSync(dir);
for (var i = 0, len = files.length; i < len; ++i){ for (var i = 0, len = files.length; i < len; ++i) {
var filename = dir + '/' + files[i]; var filename = dir + '/' + files[i];
if (fs.statSync(filename).isFile() && filename.match(matcher)){ if (fs.statSync(filename).isFile() && filename.match(matcher)) {
specs.push(filename); specs.push(filename);
}else if (fs.statSync(filename).isDirectory()){ } else if (fs.statSync(filename).isDirectory()) {
var subfiles = this.getAllSpecFiles(filename, matcher); var subfiles = this.getAllSpecFiles(filename, matcher);
subfiles.forEach(function(result){ subfiles.forEach(function(result) {
specs.push(result); specs.push(result);
}); });
} }
@ -70,25 +75,15 @@ jasmine.getAllSpecFiles = function(dir, matcher){
return specs; return specs;
}; };
jasmine.printRunnerResults = function(runner){ function now() {
var results = runner.results();
var suites = runner.suites();
var msg = '';
msg += suites.length + ' spec' + ((suites.length === 1) ? '' : 's') + ', ';
msg += results.totalCount + ' expectation' + ((results.totalCount === 1) ? '' : 's') + ', ';
msg += results.failedCount + ' failure' + ((results.failedCount === 1) ? '' : 's') + '\n';
return msg;
};
function now(){
return new Date().getTime(); return new Date().getTime();
} }
jasmine.asyncSpecWait = function(){ jasmine.asyncSpecWait = function() {
var wait = jasmine.asyncSpecWait; var wait = jasmine.asyncSpecWait;
wait.start = now(); wait.start = now();
wait.done = false; wait.done = false;
(function innerWait(){ (function innerWait() {
waits(10); waits(10);
runs(function() { runs(function() {
if (wait.start + wait.timeout < now()) { if (wait.start + wait.timeout < now()) {
@ -102,26 +97,22 @@ jasmine.asyncSpecWait = function(){
})(); })();
}; };
jasmine.asyncSpecWait.timeout = 4 * 1000; jasmine.asyncSpecWait.timeout = 4 * 1000;
jasmine.asyncSpecDone = function(){ jasmine.asyncSpecDone = function() {
jasmine.asyncSpecWait.done = true; jasmine.asyncSpecWait.done = true;
}; };
for ( var key in jasmine) { for (var key in jasmine) {
exports[key] = jasmine[key]; exports[key] = jasmine[key];
} }
/* /*
End jasmine-node runner End jasmine-node runner
*/ */
var isVerbose = false; var isVerbose = false;
var showColors = true; var showColors = true;
process.argv.forEach(function(arg){ process.argv.forEach(function(arg) {
switch(arg) { switch (arg) {
case '--color': showColors = true; break; case '--color': showColors = true; break;
case '--noColor': showColors = false; break; case '--noColor': showColors = false; break;
case '--verbose': isVerbose = true; break; case '--verbose': isVerbose = true; break;
@ -130,13 +121,13 @@ process.argv.forEach(function(arg){
var specs = jasmine.getAllSpecFiles(__dirname + '/suites', new RegExp(".js$")); var specs = jasmine.getAllSpecFiles(__dirname + '/suites', new RegExp(".js$"));
var domIndependentSpecs = []; var domIndependentSpecs = [];
for(var i=0; i<specs.length; i++) { for (var i = 0; i < specs.length; i++) {
if (fs.readFileSync(specs[i], "utf8").indexOf("document.createElement")<0) { if (fs.readFileSync(specs[i], "utf8").indexOf("document.createElement") < 0) {
domIndependentSpecs.push(specs[i]); domIndependentSpecs.push(specs[i]);
} }
} }
jasmine.executeSpecs(domIndependentSpecs, function(runner, log){ jasmine.executeSpecs(domIndependentSpecs, function(runner, log) {
if (runner.results().failedCount === 0) { if (runner.results().failedCount === 0) {
process.exit(0); process.exit(0);
} else { } else {

View File

@ -1,68 +1,128 @@
if (jasmine.TrivialConsoleReporter) { describe("TrivialConsoleReporter", function() {
describe("TrivialConsoleReporter", function() {
//keep these literal. otherwise the test loses value as a test. //keep these literal. otherwise the test loses value as a test.
function green(str) { return '\033[32m' + str + '\033[0m'; } function green(str) {
function red(str) { return '\033[31m' + str + '\033[0m'; } return '\033[32m' + str + '\033[0m';
function yellow(str) { return '\033[33m' + str + '\033[0m'; } }
function prefixGreen(str) { return '\033[32m' + str; } function red(str) {
function prefixRed(str) { return '\033[31m' + str; } return '\033[31m' + str + '\033[0m';
}
function yellow(str) {
return '\033[33m' + str + '\033[0m';
}
function prefixGreen(str) {
return '\033[32m' + str;
}
function prefixRed(str) {
return '\033[31m' + str;
}
var newline = "\n"; var newline = "\n";
var passingSpec = { results: function(){ return {passed: function(){return true;}}; } }, var passingSpec = {
failingSpec = { results: function(){ return {passed: function(){return false;}}; } }, results: function() {
skippedSpec = { results: function(){ return {skipped: true}; } }, return {
passingRun = { results: function(){ return {failedCount: 0, items_: [null, null, null]}; } }, passed: function() {
failingRun = { results: function(){ return {failedCount: 7, items_: [null, null, null]}; } }; return true;
}
};
}
},
failingSpec = {
results: function() {
return {
passed: function() {
return false;
}
};
}
},
skippedSpec = {
results: function() {
return {skipped: true};
}
},
passingRun = {
specs: function() {
return [null, null, null];
},
results: function() {
return {failedCount: 0, items_: [null, null, null]};
}
},
failingRun = {
specs: function() {
return [null, null, null];
},
results: function() {
return {
failedCount: 7, items_: [null, null, null]};
}
};
function repeatedlyInvoke(f, times) { for(var i=0; i<times; i++) f(times+1); } function repeatedlyInvoke(f, times) {
for (var i = 0; i < times; i++) f(times + 1);
}
function repeat(thing, times) { function repeat(thing, times) {
var arr = []; var arr = [];
for(var i=0; i<times; i++) arr.push(thing); for (var i = 0; i < times; i++) arr.push(thing);
return arr; return arr;
} }
var fiftyRedFs = repeat(red("F"), 50).join(""),
fiftyGreenDots = repeat(green("."), 50).join("");
function simulateRun(reporter, specResults, suiteResults, finalRunner, startTime, endTime) { function simulateRun(reporter, specResults, suiteResults, finalRunner, startTime, endTime) {
reporter.reportRunnerStarting(); reporter.reportRunnerStarting();
for(var i=0; i<specResults.length; i++) reporter.reportSpecResults(specResults[i]); for (var i = 0; i < specResults.length; i++) {
for(i=0; i<suiteResults.length; i++) reporter.reportSuiteResults(suiteResults[i]); reporter.reportSpecResults(specResults[i]);
}
for (i = 0; i < suiteResults.length; i++) {
reporter.reportSuiteResults(suiteResults[i]);
}
reporter.runnerStartTime = startTime; reporter.runnerStartTime = startTime;
reporter.now = function(){return endTime;}; reporter.now = function() {
return endTime;
};
reporter.reportRunnerResults(finalRunner); reporter.reportRunnerResults(finalRunner);
} }
var reporter, out, done;
beforeEach(function() { beforeEach(function() {
this.out = (function(){ out = (function() {
var output = ""; var output = "";
return { return {
print:function(str) {output += str;}, print:function(str) {
getOutput:function(){return output;}, output += str;
clear: function(){output = "";} },
getOutput:function() {
return output;
},
clear: function() {
output = "";
}
}; };
})(); })();
this.done = false done = false;
var self = this reporter = new jasmine.TrivialConsoleReporter(out.print, function(runner) {
this.reporter = new jasmine.TrivialConsoleReporter(this.out.print, function(runner){ done = true
self.done = true
}); });
}); });
describe('Integration', function(){ describe('Integration', function() {
it("prints the proper output under a pass scenario. small numbers.", function(){ it("prints the proper output under a pass scenario. small numbers.", function() {
simulateRun(this.reporter, simulateRun(reporter,
repeat(passingSpec, 3), repeat(passingSpec, 3),
[], [],
{ {
results:function(){ specs: function() {
return [null, null, null];
},
results:function() {
return { return {
items_: [null, null, null], items_: [null, null, null],
totalCount: 7, totalCount: 7,
@ -71,9 +131,10 @@ if (jasmine.TrivialConsoleReporter) {
} }
}, },
1000, 1000,
1777); 1777
);
expect(this.out.getOutput()).toEqual( expect(out.getOutput()).toEqual(
[ [
"Started", "Started",
green(".") + green(".") + green("."), green(".") + green(".") + green("."),
@ -85,12 +146,15 @@ if (jasmine.TrivialConsoleReporter) {
); );
}); });
it("prints the proper output under a pass scenario. large numbers.", function(){ it("prints the proper output under a pass scenario. large numbers.", function() {
simulateRun(this.reporter, simulateRun(reporter,
repeat(passingSpec, 57), repeat(passingSpec, 57),
[], [],
{ {
results:function(){ specs: function() {
return [null, null, null];
},
results:function() {
return { return {
items_: [null, null, null], items_: [null, null, null],
totalCount: 7, totalCount: 7,
@ -101,7 +165,7 @@ if (jasmine.TrivialConsoleReporter) {
1000, 1000,
1777); 1777);
expect(this.out.getOutput()).toEqual( expect(out.getOutput()).toEqual(
[ [
"Started", "Started",
@ -114,7 +178,7 @@ if (jasmine.TrivialConsoleReporter) {
green(".") + green(".") + green(".") + green(".") + green(".") + green(".") + green(".") + green(".") + green(".") + green(".") +
green(".") + green(".") + green(".") + green(".") + green(".") + green(".") + green(".") + green(".") + green(".") + green(".") +
green(".") + green(".") + green(".") + green(".") + green(".") + green(".") + green(".") + green(".") + green(".") + green(".") +
green(".") + green(".") + green(".") + green(".") + green(".") + newline + green(".") + green(".") + green(".") + green(".") + green(".") +
green(".") + green(".") + green(".") + green(".") + green(".") + //7 green dots green(".") + green(".") + green(".") + green(".") + green(".") + //7 green dots
green(".") + green("."), green(".") + green("."),
@ -128,11 +192,12 @@ if (jasmine.TrivialConsoleReporter) {
}); });
it("prints the proper output under a failure scenario.", function(){ it("prints the proper output under a failure scenario.", function() {
simulateRun(this.reporter, simulateRun(reporter,
[failingSpec, passingSpec, failingSpec], [failingSpec, passingSpec, failingSpec],
[{description:"The oven", [
results:function(){ {description:"The oven",
results:function() {
return { return {
items_:[ items_:[
{failedCount:2, {failedCount:2,
@ -145,7 +210,7 @@ if (jasmine.TrivialConsoleReporter) {
}; };
}}, }},
{description:"The washing machine", {description:"The washing machine",
results:function(){ results:function() {
return { return {
items_:[ items_:[
{failedCount:2, {failedCount:2,
@ -158,7 +223,10 @@ if (jasmine.TrivialConsoleReporter) {
}} }}
], ],
{ {
results:function(){ specs: function() {
return [null, null, null];
},
results:function() {
return { return {
items_: [null, null, null], items_: [null, null, null],
totalCount: 7, totalCount: 7,
@ -169,7 +237,7 @@ if (jasmine.TrivialConsoleReporter) {
1000, 1000,
1777); 1777);
expect(this.out.getOutput()).toEqual( expect(out.getOutput()).toEqual(
[ [
"Started", "Started",
red("F") + green(".") + red("F"), red("F") + green(".") + red("F"),
@ -188,125 +256,103 @@ if (jasmine.TrivialConsoleReporter) {
].join("\n") + "\n" ].join("\n") + "\n"
); );
}); });
}); });
describe('A Test Run', function(){ describe('When a Jasmine environment executes', function() {
beforeEach(function() {
reporter.reportRunnerStarting();
});
describe('Starts', function(){ it("should print 'Started' to the console", function() {
it("prints Started", function(){ expect(out.getOutput()).toEqual("Started" + newline);
this.reporter.reportRunnerStarting(); });
expect(this.out.getOutput()).toEqual( describe('when a spec reports', function() {
"Started" + newline beforeEach(function() {
); out.clear();
});
it("prints a green dot if the spec passes", function() {
reporter.reportSpecResults(passingSpec);
expect(out.getOutput()).toEqual(green("."));
});
it("prints a red dot if the spec fails", function() {
reporter.reportSpecResults(failingSpec);
expect(out.getOutput()).toEqual(red("F"));
});
it("prints a yellow star if the spec was skipped", function() {
reporter.reportSpecResults(skippedSpec);
expect(out.getOutput()).toEqual(yellow("*"));
}); });
}); });
describe('A spec runs', function(){ describe('when a suite reports', function() {
it("prints a green dot if the spec passes", function(){ var emptyResults;
this.reporter.reportSpecResults(passingSpec); beforeEach(function() {
emptyResults = function() {
expect(this.out.getOutput()).toEqual( return {
green(".") items_:[]
); };
};
}); });
it("prints a red dot if the spec fails", function(){ it("remembers suite results", function() {
this.reporter.reportSpecResults(failingSpec); reporter.reportSuiteResults({description: "Oven", results: emptyResults});
reporter.reportSuiteResults({description: "Mixer", results: emptyResults});
expect(this.out.getOutput()).toEqual( expect(reporter.suiteResults[0].description).toEqual('Oven');
red("F") expect(reporter.suiteResults[1].description).toEqual('Mixer');
);
}); });
it("prints a yellow star if the spec was skipped", function(){ it("creates a description out of the current suite and any parent suites", function() {
this.reporter.reportSpecResults(skippedSpec); var grandparentSuite = {
description: "My house",
results: emptyResults
};
var parentSuite = {
description: "kitchen",
parentSuite: grandparentSuite,
results: emptyResults
};
reporter.reportSuiteResults({ description: "oven", parentSuite: parentSuite, results: emptyResults });
expect(this.out.getOutput()).toEqual( expect(reporter.suiteResults[0].description).toEqual("My house kitchen oven");
yellow("*")
);
});
}); });
it("gathers failing spec results from the suite - the spec must have a description.", function() {
describe('Many specs run', function(){ reporter.reportSuiteResults({description:"Oven",
it("starts a new line every 50 specs", function(){ results: function() {
var self = this;
repeatedlyInvoke(function(){self.reporter.reportSpecResults(failingSpec);}, 49);
expect(this.out.getOutput()).
toEqual(repeat(red("F"), 49).join(""));
repeatedlyInvoke(function(){self.reporter.reportSpecResults(failingSpec);}, 3);
expect(this.out.getOutput()).
toEqual(fiftyRedFs + newline +
red("F") + red("F"));
repeatedlyInvoke(function(){self.reporter.reportSpecResults(failingSpec);}, 48);
repeatedlyInvoke(function(){self.reporter.reportSpecResults(passingSpec);}, 2);
expect(this.out.getOutput()).
toEqual(fiftyRedFs + newline +
fiftyRedFs + newline +
green(".") + green("."));
});
});
describe('A suite runs', function(){
it("remembers suite results", function(){
var emptyResults = function(){return {items_:[]};};
this.reporter.reportSuiteResults({description:"Oven", results:emptyResults});
this.reporter.reportSuiteResults({description:"Mixer", results:emptyResults});
var self = this;
var descriptions = [];
for(var i=0; i<self.reporter.suiteResults.length; i++)
descriptions.push(self.reporter.suiteResults[i].description);
expect(descriptions).toEqual(["Oven", "Mixer"]);
});
it("creates a description out of the current suite and any parent suites", function(){
var emptyResults = function(){return {items_:[]};};
var grandparentSuite = {description:"My house", results:emptyResults};
var parentSuite = {description:"kitchen", parentSuite: grandparentSuite, results:emptyResults};
this.reporter.reportSuiteResults({description:"oven", parentSuite: parentSuite, results:emptyResults});
expect(this.reporter.suiteResults[0].description).toEqual("My house kitchen oven");
});
it("gathers failing spec results from the suite. the spec must have a description.", function(){
this.reporter.reportSuiteResults({description:"Oven",
results:function(){
return { return {
items_:[ items_:[
{failedCount:0, description:"specOne"}, { failedCount: 0, description: "specOne" },
{failedCount:99, description:"specTwo"}, { failedCount: 99, description: "specTwo" },
{failedCount:0, description:"specThree"}, { failedCount: 0, description: "specThree" },
{failedCount:88, description:"specFour"}, { failedCount: 88, description: "specFour" },
{failedCount:3} { failedCount: 3 }
] ]
}; };
}}); }});
expect(this.reporter.suiteResults[0].failedSpecResults). expect(reporter.suiteResults[0].failedSpecResults).
toEqual([ toEqual([
{failedCount:99, description:"specTwo"}, { failedCount: 99, description: "specTwo" },
{failedCount:88, description:"specFour"} { failedCount: 88, description: "specFour" }
]); ]);
}); });
}); });
describe('Finishes', function(){ describe('and finishes', function() {
describe('Spec failure information', function(){ describe('when reporting spec failure information', function() {
it("prints suite and spec descriptions together as a sentence", function(){ it("prints suite and spec descriptions together as a sentence", function() {
this.reporter.suiteResults = [ reporter.suiteResults = [
{description:"The oven", failedSpecResults:[ {description:"The oven", failedSpecResults:[
{description:"heats up", items_:[]}, {description:"heats up", items_:[]},
{description:"cleans itself", items_:[]} {description:"cleans itself", items_:[]}
@ -316,15 +362,15 @@ if (jasmine.TrivialConsoleReporter) {
]} ]}
]; ];
this.reporter.reportRunnerResults(failingRun); reporter.reportRunnerResults(failingRun);
expect(this.out.getOutput()).toContain("The oven heats up"); expect(out.getOutput()).toContain("The oven heats up");
expect(this.out.getOutput()).toContain("The oven cleans itself"); expect(out.getOutput()).toContain("The oven cleans itself");
expect(this.out.getOutput()).toContain("The mixer blends things together"); expect(out.getOutput()).toContain("The mixer blends things together");
}); });
it("prints stack trace of spec failure", function(){ it("prints stack trace of spec failure", function() {
this.reporter.suiteResults = [ reporter.suiteResults = [
{description:"The oven", failedSpecResults:[ {description:"The oven", failedSpecResults:[
{description:"heats up", {description:"heats up",
items_:[ items_:[
@ -334,98 +380,111 @@ if (jasmine.TrivialConsoleReporter) {
]} ]}
]; ];
this.reporter.reportRunnerResults(failingRun); reporter.reportRunnerResults(failingRun);
expect(this.out.getOutput()).toContain("The oven heats up"); expect(out.getOutput()).toContain("The oven heats up");
expect(this.out.getOutput()).toContain("stack trace one"); expect(out.getOutput()).toContain("stack trace one");
expect(this.out.getOutput()).toContain("stack trace two"); expect(out.getOutput()).toContain("stack trace two");
}); });
}); });
describe('Finished line', function(){ describe('when reporting the execution time', function() {
it("prints the elapsed time in the summary message", function(){ it("prints the full finished message", function() {
this.reporter.now = function(){return 1000;}; reporter.now = function() {
this.reporter.reportRunnerStarting(); return 1000;
this.reporter.now = function(){return 1777;}; };
this.reporter.reportRunnerResults(passingRun); reporter.reportRunnerStarting();
expect(this.out.getOutput()).toContain("0.777 seconds"); reporter.now = function() {
return 1777;
};
reporter.reportRunnerResults(failingRun);
expect(out.getOutput()).toContain("Finished in 0.777 seconds");
}); });
it("prints round time numbers correctly", function(){ it("prints round time numbers correctly", function() {
var self = this;
function run(startTime, endTime) { function run(startTime, endTime) {
self.out.clear(); out.clear();
self.reporter.runnerStartTime = startTime; reporter.runnerStartTime = startTime;
self.reporter.now = function(){return endTime;}; reporter.now = function() {
self.reporter.reportRunnerResults(passingRun); return endTime;
};
reporter.reportRunnerResults(passingRun);
} }
run(1000, 11000); run(1000, 11000);
expect(this.out.getOutput()).toContain("10 seconds"); expect(out.getOutput()).toContain("10 seconds");
run(1000, 2000); run(1000, 2000);
expect(this.out.getOutput()).toContain("1 seconds"); expect(out.getOutput()).toContain("1 seconds");
run(1000, 1100); run(1000, 1100);
expect(this.out.getOutput()).toContain("0.1 seconds"); expect(out.getOutput()).toContain("0.1 seconds");
run(1000, 1010); run(1000, 1010);
expect(this.out.getOutput()).toContain("0.01 seconds"); expect(out.getOutput()).toContain("0.01 seconds");
run(1000, 1001); run(1000, 1001);
expect(this.out.getOutput()).toContain("0.001 seconds"); expect(out.getOutput()).toContain("0.001 seconds");
});
it("prints the full finished message", function(){
this.reporter.now = function(){return 1000;};
this.reporter.reportRunnerStarting();
this.reporter.now = function(){return 1777;};
this.reporter.reportRunnerResults(failingRun);
expect(this.out.getOutput()).toContain("Finished in 0.777 seconds");
}); });
}); });
describe("specs/expectations/failures summary", function(){ describe("when reporting the results summary", function() {
it("prints statistics in green if there were no failures", function() { it("prints statistics in green if there were no failures", function() {
this.reporter.reportRunnerResults({ reporter.reportRunnerResults({
results:function(){return {items_: [null, null, null], totalCount: 7, failedCount: 0};} specs: function() {
return [null, null, null];
},
results:function() {
return {items_: [null, null, null], totalCount: 7, failedCount: 0};
}
}); });
expect(this.out.getOutput()). expect(out.getOutput()).
toContain("3 specs, 7 expectations, 0 failures"); toContain("3 specs, 7 expectations, 0 failures");
}); });
it("prints statistics in red if there was a failure", function() { it("prints statistics in red if there was a failure", function() {
this.reporter.reportRunnerResults({ reporter.reportRunnerResults({
results:function(){return {items_: [null, null, null], totalCount: 7, failedCount: 3};} specs: function() {
return [null, null, null];
},
results:function() {
return {items_: [null, null, null], totalCount: 7, failedCount: 3};
}
}); });
expect(this.out.getOutput()). expect(out.getOutput()).
toContain("3 specs, 7 expectations, 3 failures"); toContain("3 specs, 7 expectations, 3 failures");
}); });
it("handles pluralization with 1's ones appropriately", function() { it("handles pluralization with 1's ones appropriately", function() {
this.reporter.reportRunnerResults({ reporter.reportRunnerResults({
results:function(){return {items_: [null], totalCount: 1, failedCount: 1};} specs: function() {
return [null];
},
results:function() {
return {items_: [null], totalCount: 1, failedCount: 1};
}
}); });
expect(this.out.getOutput()). expect(out.getOutput()).
toContain("1 spec, 1 expectation, 1 failure"); toContain("1 spec, 1 expectation, 1 failure");
}); });
}); });
describe("done callback", function(){ describe("done callback", function() {
it("calls back when done", function() { it("calls back when done", function() {
expect(this.done).toBeFalsy(); expect(done).toBeFalsy();
this.reporter.reportRunnerResults({ reporter.reportRunnerResults({
results:function(){return {items_: [null, null, null], totalCount: 7, failedCount: 0};} specs: function() {
return [null, null, null];
},
results:function() {
return {items_: [null, null, null], totalCount: 7, failedCount: 0};
}
}); });
expect(this.done).toBeTruthy(); expect(done).toBeTruthy();
}); });
}); });
}); });
}); });
});
});
}

View File

@ -2,36 +2,73 @@ jasmine.TrivialConsoleReporter = function(print, doneCallback) {
//inspired by mhevery's jasmine-node reporter //inspired by mhevery's jasmine-node reporter
//https://github.com/mhevery/jasmine-node //https://github.com/mhevery/jasmine-node
doneCallback = doneCallback || function(){}; doneCallback = doneCallback || function() {
};
var defaultColumnsPerLine = 50, var defaultColumnsPerLine = 50,
ansi = { green: '\033[32m', red: '\033[31m', yellow: '\033[33m', none: '\033[0m' }, ansi = {
language = { spec:"spec", expectation:"expectation", failure:"failure" }; green: '\033[32m',
red: '\033[31m',
yellow: '\033[33m',
none: '\033[0m'
},
language = {
spec: "spec",
expectation: "expectation",
failure: "failure"
};
function coloredStr(color, str) { return ansi[color] + str + ansi.none; } function coloredStr(color, str) {
return ansi[color] + str + ansi.none;
}
function greenStr(str) { return coloredStr("green", str); } function greenStr(str) {
function redStr(str) { return coloredStr("red", str); } return coloredStr("green", str);
function yellowStr(str) { return coloredStr("yellow", str); } }
function newline() { print("\n"); } function redStr(str) {
function started() { print("Started"); return coloredStr("red", str);
newline(); } }
function greenDot() { print(greenStr(".")); } function yellowStr(str) {
function redF() { print(redStr("F")); } return coloredStr("yellow", str);
function yellowStar() { print(yellowStr("*")); } }
function plural(str, count) { return count == 1 ? str : str + "s"; } function newline() {
print("\n");
}
function repeat(thing, times) { var arr = []; function started() {
for(var i=0; i<times; i++) arr.push(thing); print("Started");
newline();
}
function greenDot() {
print(greenStr("."));
}
function redF() {
print(redStr("F"));
}
function yellowStar() {
print(yellowStr("*"));
}
function plural(str, count) {
return count == 1 ? str : str + "s";
}
function repeat(thing, times) {
var arr = [];
for (var i = 0; i < times; i++) arr.push(thing);
return arr; return arr;
} }
function indent(str, spaces) { var lines = str.split("\n"); function indent(str, spaces) {
var lines = (str || '').split("\n");
var newArr = []; var newArr = [];
for(var i=0; i<lines.length; i++) { for (var i = 0; i < lines.length; i++) {
newArr.push(repeat(" ", spaces).join("") + lines[i]); newArr.push(repeat(" ", spaces).join("") + lines[i]);
} }
return newArr.join("\n"); return newArr.join("\n");
@ -41,24 +78,33 @@ jasmine.TrivialConsoleReporter = function(print, doneCallback) {
newline(); newline();
print(suiteDescription + " " + specDescription); print(suiteDescription + " " + specDescription);
newline(); newline();
for(var i=0; i<stackTraces.length; i++) { for (var i = 0; i < stackTraces.length; i++) {
print(indent(stackTraces[i], 2)); print(indent(stackTraces[i], 2));
newline(); newline();
} }
} }
function finished(elapsed) { newline();
print("Finished in " + elapsed/1000 + " seconds"); } function finished(elapsed) {
function summary(colorF, specs, expectations, failed) { newline(); newline();
print("Finished in " + elapsed / 1000 + " seconds");
}
function summary(colorF, specs, expectations, failed) {
newline();
print(colorF(specs + " " + plural(language.spec, specs) + ", " + print(colorF(specs + " " + plural(language.spec, specs) + ", " +
expectations + " " + plural(language.expectation, expectations) + ", " + expectations + " " + plural(language.expectation, expectations) + ", " +
failed + " " + plural(language.failure, failed))); failed + " " + plural(language.failure, failed)));
newline(); newline();
newline(); } newline();
function greenSummary(specs, expectations, failed){ summary(greenStr, specs, expectations, failed); } }
function redSummary(specs, expectations, failed){ summary(redStr, specs, expectations, failed); }
function greenSummary(specs, expectations, failed) {
summary(greenStr, specs, expectations, failed);
}
function redSummary(specs, expectations, failed) {
summary(redStr, specs, expectations, failed);
}
function lineEnder(columnsPerLine) { function lineEnder(columnsPerLine) {
var columnsSoFar = 0; var columnsSoFar = 0;
@ -73,20 +119,23 @@ jasmine.TrivialConsoleReporter = function(print, doneCallback) {
function fullSuiteDescription(suite) { function fullSuiteDescription(suite) {
var fullDescription = suite.description; var fullDescription = suite.description;
if (suite.parentSuite) fullDescription = fullSuiteDescription(suite.parentSuite) + " " + fullDescription ; if (suite.parentSuite) fullDescription = fullSuiteDescription(suite.parentSuite) + " " + fullDescription;
return fullDescription; return fullDescription;
} }
var startNewLineIfNecessary = lineEnder(defaultColumnsPerLine); var startNewLineIfNecessary = lineEnder(defaultColumnsPerLine);
this.now = function() { return new Date().getTime(); }; this.now = function() {
return new Date().getTime();
};
this.reportRunnerStarting = function() { this.reportRunnerStarting = function() {
this.runnerStartTime = this.now(); this.runnerStartTime = this.now();
started(); started();
}; };
this.reportSpecStarting = function() { /* do nothing */ }; this.reportSpecStarting = function() { /* do nothing */
};
this.reportSpecResults = function(spec) { this.reportSpecResults = function(spec) {
var results = spec.results(); var results = spec.results();
@ -97,7 +146,7 @@ jasmine.TrivialConsoleReporter = function(print, doneCallback) {
} else { } else {
redF(); redF();
} }
startNewLineIfNecessary(); // startNewLineIfNecessary();
}; };
this.suiteResults = []; this.suiteResults = [];
@ -108,7 +157,7 @@ jasmine.TrivialConsoleReporter = function(print, doneCallback) {
failedSpecResults: [] failedSpecResults: []
}; };
suite.results().items_.forEach(function(spec){ suite.results().items_.forEach(function(spec) {
if (spec.failedCount > 0 && spec.description) suiteResult.failedSpecResults.push(spec); if (spec.failedCount > 0 && spec.description) suiteResult.failedSpecResults.push(spec);
}); });
@ -116,12 +165,12 @@ jasmine.TrivialConsoleReporter = function(print, doneCallback) {
}; };
function eachSpecFailure(suiteResults, callback) { function eachSpecFailure(suiteResults, callback) {
for(var i=0; i<suiteResults.length; i++) { for (var i = 0; i < suiteResults.length; i++) {
var suiteResult = suiteResults[i]; var suiteResult = suiteResults[i];
for(var j=0; j<suiteResult.failedSpecResults.length; j++) { for (var j = 0; j < suiteResult.failedSpecResults.length; j++) {
var failedSpecResult = suiteResult.failedSpecResults[j]; var failedSpecResult = suiteResult.failedSpecResults[j];
var stackTraces = []; var stackTraces = [];
for(var k=0; k<failedSpecResult.items_.length; k++) stackTraces.push(failedSpecResult.items_[k].trace.stack); for (var k = 0; k < failedSpecResult.items_.length; k++) stackTraces.push(failedSpecResult.items_[k].trace.stack);
callback(suiteResult.description, failedSpecResult.description, stackTraces); callback(suiteResult.description, failedSpecResult.description, stackTraces);
} }
} }
@ -138,7 +187,7 @@ jasmine.TrivialConsoleReporter = function(print, doneCallback) {
var results = runner.results(); var results = runner.results();
var summaryFunction = results.failedCount === 0 ? greenSummary : redSummary; var summaryFunction = results.failedCount === 0 ? greenSummary : redSummary;
summaryFunction(results.items_.length, results.totalCount, results.failedCount); summaryFunction(runner.specs().length, results.totalCount, results.failedCount);
doneCallback(runner); doneCallback(runner);
}; };
}; };