From b9cbd3c5a06bdd2285fa7160ecd99b5839ed48d0 Mon Sep 17 00:00:00 2001 From: Steve Conover Date: Mon, 28 Feb 2011 22:30:03 -0800 Subject: [PATCH] integration test - failure scenario --- spec/suites/TrivialConsoleReporterSpec.js | 66 ++++++++++++++++++++++- src/console/TrivialConsoleReporter.js | 19 ++++++- 2 files changed, 82 insertions(+), 3 deletions(-) diff --git a/spec/suites/TrivialConsoleReporterSpec.js b/spec/suites/TrivialConsoleReporterSpec.js index 718fff9..9e438cf 100644 --- a/spec/suites/TrivialConsoleReporterSpec.js +++ b/spec/suites/TrivialConsoleReporterSpec.js @@ -51,7 +51,7 @@ describe("TrivialConsoleReporter", function() { }); - describe('Integration test', function(){ + describe('Integration', function(){ it("prints the proper output under a pass scenario. small numbers.", function(){ simulateRun(this.reporter, repeat(passingSpec, 3), @@ -121,6 +121,70 @@ describe("TrivialConsoleReporter", function() { ].join("\n") + "\n" ); }); + + + it("prints the proper output under a failure scenario.", function(){ + simulateRun(this.reporter, + [failingSpec, passingSpec, failingSpec], + [{description:"The oven", + results:function(){ + return { + items_:[ + {failedCount:2, + description:"heats up", + items_:[ + {trace:{stack:"stack trace one\n second line"}}, + {trace:{stack:"stack trace two"}} + ]} + ] + }; + }}, + {description:"The washing machine", + results:function(){ + return { + items_:[ + {failedCount:2, + description:"washes clothes", + items_:[ + {trace:{stack:"stack trace one"}} + ]} + ] + }; + }} + ], + { + results:function(){ + return { + specs: function(){return [null, null, null];}, + totalCount: 7, + failedCount: 2 + }; + } + }, + 1000, + 1777); + + expect(this.out.getOutput()).toEqual( + [ + "Started", + red("F") + green(".") + red("F"), + "", + "The oven heats up", + " stack trace one", + " second line", + " stack trace two", + "", + "The washing machine washes clothes", + " stack trace one", + "", + "Finished in 0.777 seconds", + red("3 specs, 7 assertions, 2 failures"), + "" + ].join("\n") + "\n" + ); + }); + + }); describe('A Test Run', function(){ diff --git a/src/console/TrivialConsoleReporter.js b/src/console/TrivialConsoleReporter.js index d349aa4..77e5e76 100644 --- a/src/console/TrivialConsoleReporter.js +++ b/src/console/TrivialConsoleReporter.js @@ -30,17 +30,30 @@ jasmine.TrivialConsoleReporter = function(print) { function plural(str, count) { return count == 1 ? str : str + "s"; } + function repeat(thing, times) { var arr = []; + for(var i=0; i