1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281
|
#--
#
# Author:: Nathaniel Talbott.
# Copyright:: Copyright (c) 2000-2003 Nathaniel Talbott. All rights reserved.
# License:: Ruby license.
require 'test/unit/attribute'
require 'test/unit/fixture'
require 'test/unit/exceptionhandler'
require 'test/unit/assertions'
require 'test/unit/failure'
require 'test/unit/error'
require 'test/unit/pending'
require 'test/unit/omission'
require 'test/unit/notification'
require 'test/unit/priority'
require 'test/unit/testsuite'
require 'test/unit/assertionfailederror'
require 'test/unit/util/backtracefilter'
module Test
module Unit
# Ties everything together. If you subclass and add your own
# test methods, it takes care of making them into tests and
# wrapping those tests into a suite. It also does the
# nitty-gritty of actually running an individual test and
# collecting its results into a Test::Unit::TestResult object.
#
# You can run two hooks before/after a TestCase run.
#
# Example:
# class TestMyClass < Test::Unit::TestCase
# class << self
# def startup
# ...
# end
#
# def shutdown
# ...
# end
# end
#
# def setup
# ...
# end
#
# def teardown
# ...
# end
#
# def test_my_method1
# ...
# end
#
# def test_my_method2
# ...
# end
# end
#
# Here is a call order:
# * startup
# * setup
# * test_my_method1
# * teardown
# * setup
# * test_my_method2
# * teardown
# * shutdown
class TestCase
include Attribute
include Fixture
include ExceptionHandler
include ErrorHandler
include FailureHandler
include TestCasePendingSupport
include TestCaseOmissionSupport
include TestCaseNotificationSupport
include Priority
include Assertions
include Util::BacktraceFilter
STARTED = name + "::STARTED"
FINISHED = name + "::FINISHED"
DESCENDANTS = []
class << self
def inherited(sub_class)
DESCENDANTS << sub_class
end
# Rolls up all of the test* methods in the fixture into
# one suite, creating a new instance of the fixture for
# each method.
def suite
method_names = public_instance_methods(true).collect {|name| name.to_s}
tests = method_names.delete_if {|method_name| method_name !~ /^test./}
suite = TestSuite.new(name, self)
tests.sort.each do |test|
catch(:invalid_test) do
suite << new(test)
end
end
if suite.empty?
catch(:invalid_test) do
suite << new("default_test")
end
end
suite
end
end
attr_reader :method_name
# Creates a new instance of the fixture for running the
# test represented by test_method_name.
def initialize(test_method_name)
throw :invalid_test unless respond_to?(test_method_name)
throw :invalid_test if method(test_method_name).arity > 0
@method_name = test_method_name
@test_passed = true
@interrupted = false
end
# Runs the individual test method represented by this
# instance of the fixture, collecting statistics, failures
# and errors in result.
def run(result)
begin
@_result = result
yield(STARTED, name)
begin
run_setup
run_test
rescue Exception
@interrupted = true
raise unless handle_exception($!)
ensure
begin
run_teardown
rescue Exception
raise unless handle_exception($!)
end
end
result.add_run
yield(FINISHED, name)
ensure
@_result = nil
end
end
# Called before every test method runs. Can be used
# to set up fixture information.
#
# You can add additional setup tasks by the following
# code:
# class TestMyClass < Test::Unit::TestCase
# def setup
# ...
# end
#
# setup
# def my_setup1
# ...
# end
#
# setup
# def my_setup2
# ...
# end
#
# def test_my_class
# ...
# end
# end
#
# Here is a call order:
# * setup
# * my_setup1
# * my_setup2
# * test_my_class
def setup
end
# Called after every test method runs. Can be used to tear
# down fixture information.
#
# You can add additional teardown tasks by the following
# code:
# class TestMyClass < Test::Unit::TestCase
# def teardown
# ...
# end
#
# teardown
# def my_teardown1
# ...
# end
#
# teardown
# def my_teardown2
# ...
# end
#
# def test_my_class
# ...
# end
# end
#
# Here is a call order:
# * test_my_class
# * my_teardown2
# * my_teardown1
# * teardown
def teardown
end
def default_test
flunk("No tests were specified")
end
def size
1
end
# Returns a human-readable name for the specific test that
# this instance of TestCase represents.
def name
"#{@method_name}(#{self.class.name})"
end
# Overridden to return #name.
def to_s
name
end
# It's handy to be able to compare TestCase instances.
def ==(other)
return false unless(other.kind_of?(self.class))
return false unless(@method_name == other.method_name)
self.class == other.class
end
def interrupted?
@interrupted
end
private
def current_result
@_result
end
def run_test
__send__(@method_name)
end
def handle_exception(exception)
self.class.exception_handlers.each do |handler|
return true if send(handler, exception)
end
false
end
# Returns whether this individual test passed or
# not. Primarily for use in teardown so that artifacts
# can be left behind if the test fails.
def passed?
@test_passed
end
def problem_occurred
@test_passed = false
end
def add_assertion
current_result.add_assertion
end
end
end
end
|