Module: Test::Unit::Assertions
- Included in:
- TestCase
- Defined in:
- lib/test/unit/assertions.rb
Overview
Test::Unit::Assertions contains the standard Test::Unit assertions. Assertions is included in Test::Unit::TestCase.
To include it in your own code and use its functionality, you simply need to rescue Test::Unit::AssertionFailedError. Additionally you may override add_assertion to get notified whenever an assertion is made.
Notes:
-
The message to each assertion, if given, will be propagated with the failure.
-
It is easy to add your own assertions based on assert_block().
Example Custom Assertion
def deny(boolean, = nil)
= , '<?> is not false or nil.', boolean
assert_block do
not boolean
end
end
Defined Under Namespace
Classes: AssertionMessage
Constant Summary collapse
- UncaughtThrow =
{NameError => /^uncaught throw \`(.+)\'$/, ThreadError => /^uncaught throw \`(.+)\' in thread /}
Class Method Summary collapse
Instance Method Summary collapse
- #assert(boolean, message = nil) ⇒ Object
-
#assert_block(message = "assert_block failed.") ⇒ Object
:yields:.
- #assert_equal(expected, actual, message = nil) ⇒ Object
- #assert_in_delta(expected_float, actual_float, delta, message = "") ⇒ Object
- #assert_instance_of(klass, object, message = "") ⇒ Object
- #assert_kind_of(klass, object, message = "") ⇒ Object
- #assert_match(pattern, string, message = "") ⇒ Object
- #assert_nil(object, message = "") ⇒ Object
- #assert_no_match(regexp, string, message = "") ⇒ Object
- #assert_not_equal(expected, actual, message = "") ⇒ Object
- #assert_not_nil(object, message = "") ⇒ Object
- #assert_not_same(expected, actual, message = "") ⇒ Object
- #assert_nothing_raised(*args) ⇒ Object
- #assert_nothing_thrown(message = "", &proc) ⇒ Object
- #assert_operator(object1, operator, object2, message = "") ⇒ Object
- #assert_raise(*args) ⇒ Object
- #assert_raises(*args, &block) ⇒ Object
- #assert_respond_to(object, method, message = "") ⇒ Object
- #assert_same(expected, actual, message = "") ⇒ Object
- #assert_send(send_array, message = "") ⇒ Object
- #assert_throws(expected_symbol, message = "", &proc) ⇒ Object
- #build_message(head, template = nil, *arguments) ⇒ Object
- #flunk(message = "Flunked") ⇒ Object
Class Method Details
.use_pp=(value) ⇒ Object
517 518 519 |
# File 'lib/test/unit/assertions.rb', line 517 def self.use_pp=(value) AssertionMessage.use_pp = value end |
Instance Method Details
#assert(boolean, message = nil) ⇒ Object
60 61 62 63 64 65 |
# File 'lib/test/unit/assertions.rb', line 60 def assert(boolean, =nil) _wrap_assertion do assert_block("assert should not be called with a block.") { !block_given? } assert_block((, "<?> is not true.", boolean)) { boolean } end end |
#assert_block(message = "assert_block failed.") ⇒ Object
:yields:
45 46 47 48 49 50 51 |
# File 'lib/test/unit/assertions.rb', line 45 def assert_block(="assert_block failed.") # :yields: _wrap_assertion do if (! yield) raise AssertionFailedError.new(.to_s) end end end |
#assert_equal(expected, actual, message = nil) ⇒ Object
78 79 80 81 82 83 84 |
# File 'lib/test/unit/assertions.rb', line 78 def assert_equal(expected, actual, =nil) = (, <<EOT, expected, actual) <?> expected but was <?>. EOT assert_block() { expected == actual } end |
#assert_in_delta(expected_float, actual_float, delta, message = "") ⇒ Object
439 440 441 442 443 444 445 446 447 448 449 450 451 452 |
# File 'lib/test/unit/assertions.rb', line 439 def assert_in_delta(expected_float, actual_float, delta, ="") _wrap_assertion do {expected_float => "first float", actual_float => "second float", delta => "delta"}.each do |float, name| assert_respond_to(float, :to_f, "The arguments must respond to to_f; the #{name} did not") end assert_operator(delta, :>=, 0.0, "The delta should not be negative") = (, <<EOT, expected_float, actual_float, delta) <?> and <?> expected to be within <?> of each other. EOT assert_block() { (expected_float.to_f - actual_float.to_f).abs <= delta.to_f } end end |
#assert_instance_of(klass, object, message = "") ⇒ Object
152 153 154 155 156 157 158 159 160 161 162 |
# File 'lib/test/unit/assertions.rb', line 152 def assert_instance_of(klass, object, ="") _wrap_assertion do assert_equal(Class, klass.class, "assert_instance_of takes a Class as its first argument") = (, <<EOT, object, klass, object.class) <?> expected to be an instance of <?> but was <?>. EOT assert_block(){object.instance_of?(klass)} end end |
#assert_kind_of(klass, object, message = "") ⇒ Object
182 183 184 185 186 187 188 |
# File 'lib/test/unit/assertions.rb', line 182 def assert_kind_of(klass, object, ="") _wrap_assertion do assert(klass.kind_of?(Module), "The first parameter to assert_kind_of should be a kind_of Module.") = (, "<?>\nexpected to be kind_of\\?\n<?> but was\n<?>.", object, klass, object.class) assert_block(){object.kind_of?(klass)} end end |
#assert_match(pattern, string, message = "") ⇒ Object
220 221 222 223 224 225 226 227 228 229 230 231 |
# File 'lib/test/unit/assertions.rb', line 220 def assert_match(pattern, string, ="") _wrap_assertion do pattern = case(pattern) when String Regexp.new(Regexp.escape(pattern)) else pattern end = (, "<?> expected to be =~\n<?>.", string, pattern) assert_block() { string =~ pattern } end end |
#assert_nil(object, message = "") ⇒ Object
171 172 173 |
# File 'lib/test/unit/assertions.rb', line 171 def assert_nil(object, ="") assert_equal(nil, object, ) end |
#assert_no_match(regexp, string, message = "") ⇒ Object
364 365 366 367 368 369 370 |
# File 'lib/test/unit/assertions.rb', line 364 def assert_no_match(regexp, string, ="") _wrap_assertion do assert_instance_of(Regexp, regexp, "The first argument to assert_no_match should be a Regexp.") = (, "<?> expected to not match\n<?>.", regexp, string) assert_block() { regexp !~ string } end end |
#assert_not_equal(expected, actual, message = "") ⇒ Object
340 341 342 343 |
# File 'lib/test/unit/assertions.rb', line 340 def assert_not_equal(expected, actual, ="") = (, "<?> expected to be != to\n<?>.", expected, actual) assert_block() { expected != actual } end |
#assert_not_nil(object, message = "") ⇒ Object
352 353 354 355 |
# File 'lib/test/unit/assertions.rb', line 352 def assert_not_nil(object, ="") = (, "<?> expected to not be nil.", object) assert_block(){!object.nil?} end |
#assert_not_same(expected, actual, message = "") ⇒ Object
323 324 325 326 327 328 329 330 331 |
# File 'lib/test/unit/assertions.rb', line 323 def assert_not_same(expected, actual, ="") = (, <<EOT, expected, expected.__id__, actual, actual.__id__) <?> with id <?> expected to not be equal\\? to <?> with id <?>. EOT assert_block() { !actual.equal?(expected) } end |
#assert_nothing_raised(*args) ⇒ Object
283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 |
# File 'lib/test/unit/assertions.rb', line 283 def assert_nothing_raised(*args) _wrap_assertion do if Module === args.last = "" else = args.pop end exceptions, modules = _check_exception_class(args) begin yield rescue Exception => e if ((args.empty? && !e.instance_of?(AssertionFailedError)) || _expected_exception?(e, exceptions, modules)) assert_block((, "Exception raised:\n?", e)){false} else raise end end nil end end |
#assert_nothing_thrown(message = "", &proc) ⇒ Object
415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 |
# File 'lib/test/unit/assertions.rb', line 415 def assert_nothing_thrown(="", &proc) _wrap_assertion do assert(block_given?, "Should have passed a block to assert_nothing_thrown") begin proc.call rescue NameError, ThreadError => error if UncaughtThrow[error.class] !~ error. raise error end = (, "<?> was thrown when nothing was expected", $1.intern) flunk() end assert(true, "Expected nothing to be thrown") end end |
#assert_operator(object1, operator, object2, message = "") ⇒ Object
261 262 263 264 265 266 267 268 269 270 271 272 |
# File 'lib/test/unit/assertions.rb', line 261 def assert_operator(object1, operator, object2, ="") _wrap_assertion do = (nil, "<?>\ngiven as the operator for #assert_operator must be a Symbol or #respond_to\\?(:to_str).", operator) assert_block(){operator.kind_of?(Symbol) || operator.respond_to?(:to_str)} = (, <<EOT, object1, AssertionMessage.literal(operator), object2) <?> expected to be ? <?>. EOT assert_block() { object1.__send__(operator, object2) } end end |
#assert_raise(*args) ⇒ Object
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 |
# File 'lib/test/unit/assertions.rb', line 110 def assert_raise(*args) _wrap_assertion do if Module === args.last = "" else = args.pop end exceptions, modules = _check_exception_class(args) expected = args.size == 1 ? args.first : args actual_exception = nil = (, "<?> exception expected but none was thrown.", expected) assert_block() do begin yield rescue Exception => actual_exception break end false end = (, "<?> exception expected but was\n?", expected, actual_exception) assert_block() {_expected_exception?(actual_exception, exceptions, modules)} actual_exception end end |
#assert_raises(*args, &block) ⇒ Object
141 142 143 |
# File 'lib/test/unit/assertions.rb', line 141 def assert_raises(*args, &block) assert_raise(*args, &block) end |
#assert_respond_to(object, method, message = "") ⇒ Object
197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
# File 'lib/test/unit/assertions.rb', line 197 def assert_respond_to(object, method, ="") _wrap_assertion do = (nil, "<?>\ngiven as the method name argument to #assert_respond_to must be a Symbol or #respond_to\\?(:to_str).", method) assert_block() do method.kind_of?(Symbol) || method.respond_to?(:to_str) end = (, <<EOT, object, object.class, method) <?> of type <?> expected to respond_to\\?<?>. EOT assert_block() { object.respond_to?(method) } end end |
#assert_same(expected, actual, message = "") ⇒ Object
242 243 244 245 246 247 248 249 250 |
# File 'lib/test/unit/assertions.rb', line 242 def assert_same(expected, actual, ="") = (, <<EOT, expected, expected.__id__, actual, actual.__id__) <?> with id <?> expected to be equal\\? to <?> with id <?>. EOT assert_block() { actual.equal?(expected) } end |
#assert_send(send_array, message = "") ⇒ Object
466 467 468 469 470 471 472 473 474 475 476 |
# File 'lib/test/unit/assertions.rb', line 466 def assert_send(send_array, ="") _wrap_assertion do assert_instance_of(Array, send_array, "assert_send requires an array of send information") assert(send_array.size >= 2, "assert_send requires at least a receiver and a message name") = (, <<EOT, send_array[0], AssertionMessage.literal(send_array[1].to_s), send_array[2..-1]) <?> expected to respond to <?(?)> with a true value. EOT assert_block() { send_array[0].__send__(send_array[1], *send_array[2..-1]) } end end |
#assert_throws(expected_symbol, message = "", &proc) ⇒ Object
384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 |
# File 'lib/test/unit/assertions.rb', line 384 def assert_throws(expected_symbol, ="", &proc) _wrap_assertion do assert_instance_of(Symbol, expected_symbol, "assert_throws expects the symbol that should be thrown for its first argument") assert_block("Should have passed a block to assert_throws."){block_given?} caught = true begin catch(expected_symbol) do proc.call caught = false end = (, "<?> should have been thrown.", expected_symbol) assert_block(){caught} rescue NameError, ThreadError => error if UncaughtThrow[error.class] !~ error. raise error end = (, "<?> expected to be thrown but\n<?> was thrown.", expected_symbol, $1.intern) flunk() end end end |
#build_message(head, template = nil, *arguments) ⇒ Object
483 484 485 486 |
# File 'lib/test/unit/assertions.rb', line 483 def (head, template=nil, *arguments) template &&= template.chomp return AssertionMessage.new(head, template, arguments) end |
#flunk(message = "Flunked") ⇒ Object
312 313 314 |
# File 'lib/test/unit/assertions.rb', line 312 def flunk(="Flunked") assert_block(()){false} end |