Class: CI::Reporter::RSpec

Inherits:
Object
  • Object
show all
Defined in:
lib/ci/reporter/rspec.rb

Overview

Custom RSpec formatter used to hook into the spec runs and capture results.

Direct Known Subclasses

RSpecBase, RSpecDoc

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(*args) ⇒ RSpec

Returns a new instance of RSpec.



92
93
94
95
96
# File 'lib/ci/reporter/rspec.rb', line 92

def initialize(*args)
  @formatter ||= RSpecFormatters::ProgressFormatter.new(*args)
  @report_manager = ReportManager.new("spec")
  @suite = nil
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(meth, *args, &block) ⇒ Object

Pass through other methods to RSpec formatter for compatibility



168
169
170
# File 'lib/ci/reporter/rspec.rb', line 168

def method_missing(meth,*args,&block)
  @formatter.send(meth,*args,&block)
end

Instance Attribute Details

#formatterObject

Returns the value of attribute formatter.



91
92
93
# File 'lib/ci/reporter/rspec.rb', line 91

def formatter
  @formatter
end

#report_managerObject

Returns the value of attribute report_manager.



90
91
92
# File 'lib/ci/reporter/rspec.rb', line 90

def report_manager
  @report_manager
end

Instance Method Details

#add_behaviour(name) ⇒ Object

rspec 0.9



99
100
101
102
# File 'lib/ci/reporter/rspec.rb', line 99

def add_behaviour(name)
  @formatter.add_behaviour(name)
  new_suite(name)
end

#add_example_group(example_group) ⇒ Object

Compatibility with rspec < 1.2.4



105
106
107
108
# File 'lib/ci/reporter/rspec.rb', line 105

def add_example_group(example_group)
  @formatter.add_example_group(example_group)
  new_suite(description_for(example_group))
end

#dump_summary(*args) ⇒ Object



157
158
159
160
161
# File 'lib/ci/reporter/rspec.rb', line 157

def dump_summary(*args)
  @formatter.dump_summary(*args)
  write_report
  @formatter.dump_failures
end

#example_failed(name_or_example, *rest) ⇒ Object



123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
# File 'lib/ci/reporter/rspec.rb', line 123

def example_failed(name_or_example, *rest)
  @formatter.example_failed(name_or_example, *rest)

  # In case we fail in before(:all)
  example_started(name_or_example) if @suite.testcases.empty?

  if name_or_example.respond_to?(:execution_result) # RSpec 2
    failure = RSpec2Failure.new(name_or_example, @formatter)
  else
    failure = RSpecFailure.new(rest[1]) # example_failed(name, counter, failure) in RSpec 1
  end

  spec = @suite.testcases.last
  spec.finish
  spec.name = description_for(name_or_example)
  spec.failures << failure
end

#example_group_started(example_group) ⇒ Object

rspec >= 1.2.4



111
112
113
114
# File 'lib/ci/reporter/rspec.rb', line 111

def example_group_started(example_group)
  @formatter.example_group_started(example_group)
  new_suite(description_for(example_group))
end

#example_passed(name_or_example) ⇒ Object



141
142
143
144
145
146
# File 'lib/ci/reporter/rspec.rb', line 141

def example_passed(name_or_example)
  @formatter.example_passed(name_or_example)
  spec = @suite.testcases.last
  spec.finish
  spec.name = description_for(name_or_example)
end

#example_pending(*args) ⇒ Object



148
149
150
151
152
153
154
155
# File 'lib/ci/reporter/rspec.rb', line 148

def example_pending(*args)
  @formatter.example_pending(*args)
  name = description_for(args[0])
  spec = @suite.testcases.last
  spec.finish
  spec.name = "#{name} (PENDING)"
  spec.skipped = true
end

#example_started(name_or_example) ⇒ Object



116
117
118
119
120
121
# File 'lib/ci/reporter/rspec.rb', line 116

def example_started(name_or_example)
  @formatter.example_started(name_or_example)
  spec = TestCase.new
  @suite.testcases << spec
  spec.start
end

#respond_to?(*args) ⇒ Boolean

Returns:

  • (Boolean)


163
164
165
# File 'lib/ci/reporter/rspec.rb', line 163

def respond_to?(*args)
  @formatter.respond_to?(*args)
end