require File.dirname(__FILE__) + '/../../spec_helper' require 'mspec/guards/guard' require 'mspec/runner/formatters/html' require 'mspec/runner/mspec' require 'mspec/runner/state' describe HtmlFormatter do before :each do @formatter = HtmlFormatter.new end it "responds to #register by registering itself with MSpec for appropriate actions" do MSpec.stub!(:register) MSpec.should_receive(:register).with(:start, @formatter) MSpec.should_receive(:register).with(:enter, @formatter) MSpec.should_receive(:register).with(:leave, @formatter) @formatter.register end end describe HtmlFormatter, "#start" do before :each do $stdout = @out = IOStub.new @formatter = HtmlFormatter.new end after :each do $stdout = STDOUT end it "prints the HTML head" do @formatter.start ruby_name = RUBY_NAME ruby_name.should =~ /^ruby/ @out.should == %[ Spec Output For #{ruby_name} (1.8.6) ] end end describe HtmlFormatter, "#enter" do before :each do $stdout = @out = IOStub.new @formatter = HtmlFormatter.new end after :each do $stdout = STDOUT end it "prints the #describe string" do @formatter.enter "describe" @out.should == "

describe

\n\n
\n" end end describe HtmlFormatter, "#after" do before :each do $stdout = @out = IOStub.new @formatter = HtmlFormatter.new @state = SpecState.new("describe", "it") end after :each do $stdout = STDOUT end it "prints the #it once when there are no exceptions raised" do @formatter.after @state @out.should == %[
  • - it
  • \n] end it "prints the #it string once for each exception raised" do @formatter.register @state.exceptions << ["msg", ExpectationNotMetError.new("disappointing")] @state.exceptions << ["msg", MSpecExampleError.new("painful")] @formatter.tally.after @state @formatter.after @state @out.should == %[
  • - it (FAILED - 1)
  • - it (ERROR - 2)
  • ] end end describe HtmlFormatter, "#finish" do before :each do @tally = mock("tally", :null_object => true) TallyAction.stub!(:new).and_return(@tally) @timer = mock("timer", :null_object => true) TimerAction.stub!(:new).and_return(@timer) $stdout = @out = IOStub.new @state = SpecState.new("describe", "it") MSpec.stub!(:register) @formatter = HtmlFormatter.new @formatter.register @exception = MSpecExampleError.new("broken") @exception.stub!(:backtrace).and_return(["file.rb:1", "file.rb:2"]) end after :each do $stdout = STDOUT end it "prints a failure message for an exception" do @state.exceptions << ["msg", @exception] @formatter.instance_variable_set :@states, [@state] @formatter.finish @out.should =~ %r[

    describe it ERROR

    ] end it "prints a backtrace for an exception" do @formatter.stub!(:backtrace).and_return("path/to/some/file.rb:35:in method") @state.exceptions << ["msg", @exception] @formatter.instance_variable_set :@states, [@state] @formatter.finish @out.should =~ %r[
    .*path/to/some/file.rb:35:in method.*
    ]m end it "prints a summary of elapsed time" do @timer.should_receive(:format).and_return("Finished in 2.0 seconds") @formatter.finish @out.should =~ %r[

    Finished in 2.0 seconds

    \n] end it "prints a tally of counts" do @tally.should_receive(:format).and_return("1 example, 0 failures") @formatter.finish @out.should =~ %r[

    1 example, 0 failures

    ] end it "prints errors, backtraces, elapsed time, and tallies" do @state.exceptions << ["msg", @exception] @formatter.stub!(:backtrace).and_return("path/to/some/file.rb:35:in method") @timer.should_receive(:format).and_return("Finished in 2.0 seconds") @tally.should_receive(:format).and_return("1 example, 1 failures") @formatter.instance_variable_set :@states, [@state] @formatter.finish @out.should == %[
    1. describe it ERROR

      MSpecExampleError: broken

      path/to/some/file.rb:35:in method

    Finished in 2.0 seconds

    1 example, 1 failures

    ] end end