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
|
# Copyright (C) 2011-2016 Kouhei Sutou <kou@clear-code.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
# TODO: It should be done in RR.
require "rr/without_autohook"
RR.adapters.clear
require "rr"
require "test-unit"
require "test/unit/rr/version"
module Test::Unit
module RR
module Adapter
if ::RR.const_defined?(:DSL)
include ::RR::DSL
else
include ::RR::Adapters::RRMethods
end
class << self
def included(mod)
mod.module_eval do
setup :before => :prepend
def setup_rr
::Test::Unit::RR::Adapter.reset
end
cleanup :after => :append
def cleanup_rr
::RR.verify
end
exception_handler do |test_case, exception|
target_p = exception.is_a?(::RR::Errors::RRError)
if target_p
test_case.problem_occurred
test_case.add_failure(exception.message, exception.backtrace)
end
handled = target_p
handled
end
end
end
def reset
::RR.reset
::RR.trim_backtrace = true
end
end
def assert_received(subject, &block)
block.call(received(subject)).call
end
# Verify double declarations by RR in block. It is useful to
# clear your double declarations scope.
#
# @example Success case
# assert_rr do
# subject = Object.new
# assert_rr do
# mock(subject).should_be_called
# subject.should_be_called
# end
# end
#
# @example Failure case
# assert_rr do
# subject = Object.new
# assert_rr do
# mock(subject).should_be_called
# # subject.should_be_called
# end
# end
#
# @yield
# declares your doubles and uses the doubles in the block. The
# doubles are verified before and after the block is called.
def assert_rr
begin
::RR.verify
ensure
::Test::Unit::RR::Adapter.reset
end
result = yield
begin
::RR.verify
ensure
::Test::Unit::RR::Adapter.reset
end
result
end
end
end
class TestCase
include RR::Adapter
end
end
|