Class: Turn::TestRunner

Inherits:
Test::Unit::UI::Console::TestRunner
  • Object
show all
Defined in:
lib/turn/runners/testrunner.rb

Overview

Turn’s Test::Unit console test runner.

Instance Method Summary collapse

Constructor Details

#initialize(suite, output_level, stdout = $stdout) ⇒ TestRunner

Returns a new instance of TestRunner.



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
# File 'lib/turn/runners/testrunner.rb', line 22

def initialize(suite, output_level, stdout=$stdout)
  turn_config = Turn.config

  #output_level = 2 # 2-NORMAL 3-VERBOSE

  name = turn_config.suite_name

  # TODO: instead of building up a new suite, filter the suite
  # passed into initialize.
  sub_suites = []
  ObjectSpace.each_object(Class) do |klass|
    if(Test::Unit::TestCase > klass)
      sub_suites << klass.suite
    end
  end
  suite = Test::Unit::TestSuite.new(name)

  matchcase = turn_config.matchcase
  pattern   = turn_config.pattern

  if matchcase
    sub_suites = sub_suites.select{|s| matchcase =~ s.name}
  end
  sub_suites.sort_by{|s|s.name}.each{|s| suite << s}

  suite.tests.each do |c|
    c.tests.reject!{ |t| pattern !~ t.method_name }
  end

  @t_reporter = turn_config.reporter

  super(suite, output_level, stdout)
end

Instance Method Details

#attach_to_mediatorObject



59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# File 'lib/turn/runners/testrunner.rb', line 59

def attach_to_mediator
  @mediator.add_listener(::Test::Unit::UI::TestRunnerMediator::STARTED, &method(:t_started))
  @mediator.add_listener(::Test::Unit::UI::TestRunnerMediator::FINISHED, &method(:t_finished))
  @mediator.add_listener(::Test::Unit::TestSuite::STARTED, &method(:t_case_started))
  @mediator.add_listener(::Test::Unit::TestSuite::FINISHED, &method(:t_case_finished))
  @mediator.add_listener(::Test::Unit::TestCase::STARTED, &method(:t_test_started))
  @mediator.add_listener(::Test::Unit::TestCase::FINISHED, &method(:t_test_finished))
  @mediator.add_listener(::Test::Unit::TestResult::FAULT, &method(:t_fault))

  @io.sync    = true

  @t_result   = nil
  @t_fault    = nil

  @not_first_case = nil

  @t_previous_run_count       = 0
  @t_previous_error_count     = 0
  @t_previous_failure_count   = 0
  @t_previous_assertion_count = 0
end

#setup_mediatorObject

This is copied verbatim from test/unit/ui/console/testrunner.rb. It is here for one simple reason: to supress testunits output of “Loaded Suite”.



157
158
159
160
161
162
163
164
# File 'lib/turn/runners/testrunner.rb', line 157

def setup_mediator
  @mediator = create_mediator(@suite)
  suite_name = @suite.to_s
  if ( @suite.kind_of?(Module) )
    suite_name = @suite.name
  end
  #output("Loaded suite #{suite_name}")
end

#t_attach_to_mediatorObject

Is this needed?



57
# File 'lib/turn/runners/testrunner.rb', line 57

alias :t_attach_to_mediator :attach_to_mediator

#t_case_finished(name) ⇒ Object



124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
# File 'lib/turn/runners/testrunner.rb', line 124

def t_case_finished(name)
  # Err.. why is testunit running this on the suite?
  return if name=='' # FIXME skip suite call

  #t = @t_result.run_count       - @t_previous_run_count
  #f = @t_result.failure_count   - @t_previous_failure_count
  #e = @t_result.error_count     - @t_previous_error_count
  a = @t_result.assertion_count - @t_previous_assertion_count
  #@t_case.counts(t,a,f,e)

  @t_case.count_assertions = a

  #@t_previous_run_count       = @t_result.run_count.to_i
  #@t_previous_failure_count   = @t_result.failure_count.to_i
  #@t_previous_error_count     = @t_result.error_count.to_i
  @t_previous_assertion_count = @t_result.assertion_count.to_i

  @t_reporter.finish_case(@t_case)
end

#t_case_started(name) ⇒ Object



88
89
90
91
92
93
# File 'lib/turn/runners/testrunner.rb', line 88

def t_case_started(name)
  # Err.. why is testunit running this on the suite?
  (@not_first_case = true; return) unless @not_first_case
  @t_case = @t_suite.new_case(name)
  @t_reporter.start_case(@t_case)
end

#t_fault(fault) ⇒ Object



103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
# File 'lib/turn/runners/testrunner.rb', line 103

def t_fault(fault)
  case fault
  when ::Test::Unit::Error
    #msg = ""
    #msg << fault.to_s.split("\n")[2..-1].join("\n")
    @t_test.error!(fault.exception)
    @t_reporter.error(fault.exception)
  when ::Test::Unit::Failure
    #msg = ""
    #msg << fault.location[0] << "\n"
    #msg << fault.message #.gsub("\n","\n")
    @t_test.fail!(fault)
    @t_reporter.fail(fault)
  end
end

#t_finished(elapsed_time) ⇒ Object



144
145
146
147
148
149
150
151
152
# File 'lib/turn/runners/testrunner.rb', line 144

def t_finished(elapsed_time)
  #@t_suite.count_tests      = @t_result.run_count
  #@t_suite.count_failures   = @t_result.failure_count
  #@t_suite.count_errors     = @t_result.error_count
  #@t_suite.count_passes     = @t_result.run_count - @t_result.failure_count - @t_result.error_count
  @t_suite.count_assertions = @t_result.assertion_count

  @t_reporter.finish_suite(@t_suite)
end

#t_started(result) ⇒ Object



81
82
83
84
85
86
# File 'lib/turn/runners/testrunner.rb', line 81

def t_started(result)
  @t_suite = Turn::TestSuite.new(@suite.name)
  @t_suite.size = @suite.size
  @t_result = result
  @t_reporter.start_suite(@t_suite)
end

#t_test_finished(name) ⇒ Object



119
120
121
122
# File 'lib/turn/runners/testrunner.rb', line 119

def t_test_finished(name)
  @t_reporter.pass if @t_test.pass?
  @t_reporter.finish_test(@t_test)
end

#t_test_started(name) ⇒ Object



95
96
97
98
99
100
101
# File 'lib/turn/runners/testrunner.rb', line 95

def t_test_started(name)
  methname, tcase = name.scan(%r/^([^\(]+)\(([^\)]+)\)/o).flatten!
  @t_test = @t_case.new_test(methname)
  #@t_test.file = tcase
  #@t_test.name = method
  @t_reporter.start_test(@t_test)
end