jferris-mocha 0.9.5.0.1240002286
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/COPYING +3 -0
- data/MIT-LICENSE +7 -0
- data/README +37 -0
- data/RELEASE +269 -0
- data/Rakefile +217 -0
- data/examples/misc.rb +43 -0
- data/examples/mocha.rb +25 -0
- data/examples/stubba.rb +64 -0
- data/lib/mocha/any_instance_method.rb +55 -0
- data/lib/mocha/api.rb +232 -0
- data/lib/mocha/argument_iterator.rb +21 -0
- data/lib/mocha/backtrace_filter.rb +17 -0
- data/lib/mocha/cardinality.rb +95 -0
- data/lib/mocha/central.rb +27 -0
- data/lib/mocha/change_state_side_effect.rb +19 -0
- data/lib/mocha/class_method.rb +87 -0
- data/lib/mocha/configuration.rb +60 -0
- data/lib/mocha/deprecation.rb +22 -0
- data/lib/mocha/exception_raiser.rb +17 -0
- data/lib/mocha/expectation.rb +484 -0
- data/lib/mocha/expectation_error.rb +15 -0
- data/lib/mocha/expectation_list.rb +50 -0
- data/lib/mocha/in_state_ordering_constraint.rb +19 -0
- data/lib/mocha/inspect.rb +67 -0
- data/lib/mocha/instance_method.rb +16 -0
- data/lib/mocha/integration/bacon/assertion_counter.rb +23 -0
- data/lib/mocha/integration/bacon/version_11_and_above.rb +34 -0
- data/lib/mocha/integration/bacon.rb +1 -0
- data/lib/mocha/integration/mini_test/assertion_counter.rb +23 -0
- data/lib/mocha/integration/mini_test/version_131_and_above.rb +49 -0
- data/lib/mocha/integration/mini_test.rb +1 -0
- data/lib/mocha/integration/test_unit/assertion_counter.rb +23 -0
- data/lib/mocha/integration/test_unit/gem_version_200.rb +49 -0
- data/lib/mocha/integration/test_unit/gem_version_201_and_above.rb +49 -0
- data/lib/mocha/integration/test_unit/ruby_version_185_and_below.rb +48 -0
- data/lib/mocha/integration/test_unit/ruby_version_186_and_above.rb +50 -0
- data/lib/mocha/integration/test_unit.rb +4 -0
- data/lib/mocha/invocation.rb +10 -0
- data/lib/mocha/is_a.rb +9 -0
- data/lib/mocha/logger.rb +15 -0
- data/lib/mocha/metaclass.rb +13 -0
- data/lib/mocha/method_matcher.rb +21 -0
- data/lib/mocha/mock.rb +200 -0
- data/lib/mocha/mockery.rb +189 -0
- data/lib/mocha/module_method.rb +16 -0
- data/lib/mocha/multiple_yields.rb +20 -0
- data/lib/mocha/names.rb +53 -0
- data/lib/mocha/no_yields.rb +11 -0
- data/lib/mocha/object.rb +187 -0
- data/lib/mocha/parameter_matchers/all_of.rb +42 -0
- data/lib/mocha/parameter_matchers/any_of.rb +47 -0
- data/lib/mocha/parameter_matchers/any_parameters.rb +40 -0
- data/lib/mocha/parameter_matchers/anything.rb +33 -0
- data/lib/mocha/parameter_matchers/base.rb +15 -0
- data/lib/mocha/parameter_matchers/equals.rb +42 -0
- data/lib/mocha/parameter_matchers/has_entries.rb +45 -0
- data/lib/mocha/parameter_matchers/has_entry.rb +57 -0
- data/lib/mocha/parameter_matchers/has_key.rb +42 -0
- data/lib/mocha/parameter_matchers/has_value.rb +42 -0
- data/lib/mocha/parameter_matchers/includes.rb +40 -0
- data/lib/mocha/parameter_matchers/instance_of.rb +42 -0
- data/lib/mocha/parameter_matchers/is_a.rb +42 -0
- data/lib/mocha/parameter_matchers/kind_of.rb +42 -0
- data/lib/mocha/parameter_matchers/not.rb +42 -0
- data/lib/mocha/parameter_matchers/object.rb +15 -0
- data/lib/mocha/parameter_matchers/optionally.rb +55 -0
- data/lib/mocha/parameter_matchers/regexp_matches.rb +43 -0
- data/lib/mocha/parameter_matchers/responds_with.rb +43 -0
- data/lib/mocha/parameter_matchers/yaml_equivalent.rb +43 -0
- data/lib/mocha/parameter_matchers.rb +27 -0
- data/lib/mocha/parameters_matcher.rb +37 -0
- data/lib/mocha/pretty_parameters.rb +28 -0
- data/lib/mocha/return_values.rb +31 -0
- data/lib/mocha/sequence.rb +42 -0
- data/lib/mocha/single_return_value.rb +17 -0
- data/lib/mocha/single_yield.rb +18 -0
- data/lib/mocha/state_machine.rb +91 -0
- data/lib/mocha/stubbing_error.rb +16 -0
- data/lib/mocha/unexpected_invocation.rb +18 -0
- data/lib/mocha/yield_parameters.rb +31 -0
- data/lib/mocha.rb +69 -0
- data/lib/mocha_standalone.rb +2 -0
- data/lib/stubba.rb +4 -0
- data/test/acceptance/acceptance_test_helper.rb +38 -0
- data/test/acceptance/api_test.rb +139 -0
- data/test/acceptance/bacon_spec.rb +67 -0
- data/test/acceptance/bacon_test.rb +110 -0
- data/test/acceptance/bug_18914_test.rb +43 -0
- data/test/acceptance/bug_21465_test.rb +34 -0
- data/test/acceptance/bug_21563_test.rb +25 -0
- data/test/acceptance/expected_invocation_count_test.rb +196 -0
- data/test/acceptance/failure_messages_test.rb +64 -0
- data/test/acceptance/minitest_test.rb +146 -0
- data/test/acceptance/mocha_example_test.rb +98 -0
- data/test/acceptance/mocha_test_result_test.rb +84 -0
- data/test/acceptance/mock_test.rb +100 -0
- data/test/acceptance/mock_with_initializer_block_test.rb +51 -0
- data/test/acceptance/mocked_methods_dispatch_test.rb +78 -0
- data/test/acceptance/optional_parameters_test.rb +70 -0
- data/test/acceptance/parameter_matcher_test.rb +209 -0
- data/test/acceptance/partial_mocks_test.rb +47 -0
- data/test/acceptance/return_value_test.rb +52 -0
- data/test/acceptance/sequence_test.rb +186 -0
- data/test/acceptance/spy_test.rb +109 -0
- data/test/acceptance/states_test.rb +70 -0
- data/test/acceptance/stub_any_instance_method_test.rb +195 -0
- data/test/acceptance/stub_class_method_test.rb +203 -0
- data/test/acceptance/stub_everything_test.rb +56 -0
- data/test/acceptance/stub_instance_method_test.rb +203 -0
- data/test/acceptance/stub_module_method_test.rb +163 -0
- data/test/acceptance/stub_test.rb +52 -0
- data/test/acceptance/stubba_example_test.rb +102 -0
- data/test/acceptance/stubba_test.rb +15 -0
- data/test/acceptance/stubba_test_result_test.rb +66 -0
- data/test/acceptance/stubbing_error_backtrace_test.rb +64 -0
- data/test/acceptance/stubbing_method_unnecessarily_test.rb +65 -0
- data/test/acceptance/stubbing_non_existent_any_instance_method_test.rb +130 -0
- data/test/acceptance/stubbing_non_existent_class_method_test.rb +157 -0
- data/test/acceptance/stubbing_non_existent_instance_method_test.rb +147 -0
- data/test/acceptance/stubbing_non_public_any_instance_method_test.rb +130 -0
- data/test/acceptance/stubbing_non_public_class_method_test.rb +163 -0
- data/test/acceptance/stubbing_non_public_instance_method_test.rb +143 -0
- data/test/acceptance/stubbing_on_non_mock_object_test.rb +64 -0
- data/test/deprecation_disabler.rb +15 -0
- data/test/execution_point.rb +36 -0
- data/test/matcher_helpers.rb +5 -0
- data/test/method_definer.rb +24 -0
- data/test/simple_counter.rb +13 -0
- data/test/test_helper.rb +16 -0
- data/test/test_runner.rb +33 -0
- data/test/unit/any_instance_method_test.rb +126 -0
- data/test/unit/array_inspect_test.rb +16 -0
- data/test/unit/assert_received_test.rb +136 -0
- data/test/unit/backtrace_filter_test.rb +19 -0
- data/test/unit/cardinality_test.rb +56 -0
- data/test/unit/central_test.rb +65 -0
- data/test/unit/change_state_side_effect_test.rb +41 -0
- data/test/unit/class_method_test.rb +237 -0
- data/test/unit/date_time_inspect_test.rb +21 -0
- data/test/unit/exception_raiser_test.rb +42 -0
- data/test/unit/expectation_list_test.rb +57 -0
- data/test/unit/expectation_test.rb +526 -0
- data/test/unit/hash_inspect_test.rb +16 -0
- data/test/unit/have_received_test.rb +137 -0
- data/test/unit/in_state_ordering_constraint_test.rb +43 -0
- data/test/unit/invocation_test.rb +17 -0
- data/test/unit/metaclass_test.rb +22 -0
- data/test/unit/method_matcher_test.rb +23 -0
- data/test/unit/mock_test.rb +329 -0
- data/test/unit/mockery_test.rb +163 -0
- data/test/unit/multiple_yields_test.rb +18 -0
- data/test/unit/no_yields_test.rb +18 -0
- data/test/unit/object_inspect_test.rb +37 -0
- data/test/unit/object_test.rb +82 -0
- data/test/unit/parameter_matchers/all_of_test.rb +26 -0
- data/test/unit/parameter_matchers/any_of_test.rb +26 -0
- data/test/unit/parameter_matchers/anything_test.rb +21 -0
- data/test/unit/parameter_matchers/equals_test.rb +25 -0
- data/test/unit/parameter_matchers/has_entries_test.rb +51 -0
- data/test/unit/parameter_matchers/has_entry_test.rb +82 -0
- data/test/unit/parameter_matchers/has_key_test.rb +36 -0
- data/test/unit/parameter_matchers/has_value_test.rb +37 -0
- data/test/unit/parameter_matchers/includes_test.rb +25 -0
- data/test/unit/parameter_matchers/instance_of_test.rb +25 -0
- data/test/unit/parameter_matchers/is_a_test.rb +25 -0
- data/test/unit/parameter_matchers/kind_of_test.rb +25 -0
- data/test/unit/parameter_matchers/not_test.rb +26 -0
- data/test/unit/parameter_matchers/regexp_matches_test.rb +25 -0
- data/test/unit/parameter_matchers/responds_with_test.rb +25 -0
- data/test/unit/parameter_matchers/stub_matcher.rb +27 -0
- data/test/unit/parameter_matchers/yaml_equivalent_test.rb +25 -0
- data/test/unit/parameters_matcher_test.rb +121 -0
- data/test/unit/return_values_test.rb +63 -0
- data/test/unit/sequence_test.rb +104 -0
- data/test/unit/single_return_value_test.rb +14 -0
- data/test/unit/single_yield_test.rb +18 -0
- data/test/unit/state_machine_test.rb +98 -0
- data/test/unit/string_inspect_test.rb +11 -0
- data/test/unit/yield_parameters_test.rb +93 -0
- metadata +245 -0
@@ -0,0 +1,34 @@
|
|
1
|
+
require 'mocha/integration/bacon/assertion_counter'
|
2
|
+
|
3
|
+
module Mocha
|
4
|
+
|
5
|
+
module Integration
|
6
|
+
|
7
|
+
module Bacon
|
8
|
+
|
9
|
+
module Version11AndAbove
|
10
|
+
|
11
|
+
def self.included(base)
|
12
|
+
|
13
|
+
base.class_eval do
|
14
|
+
alias :it_before_bacon :it
|
15
|
+
def it(description)
|
16
|
+
it_before_bacon(description) do
|
17
|
+
assertion_counter = ::Mocha::Integration::Bacon::AssertionCounter.new(::Bacon::Counter)
|
18
|
+
mocha_setup
|
19
|
+
yield
|
20
|
+
mocha_verify(assertion_counter)
|
21
|
+
mocha_teardown
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
end
|
27
|
+
|
28
|
+
end
|
29
|
+
|
30
|
+
end
|
31
|
+
|
32
|
+
end
|
33
|
+
|
34
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
require 'mocha/integration/bacon/version_11_and_above.rb'
|
@@ -0,0 +1,23 @@
|
|
1
|
+
module Mocha
|
2
|
+
|
3
|
+
module Integration
|
4
|
+
|
5
|
+
module MiniTest
|
6
|
+
|
7
|
+
class AssertionCounter
|
8
|
+
|
9
|
+
def initialize(test_case)
|
10
|
+
@test_case = test_case
|
11
|
+
end
|
12
|
+
|
13
|
+
def increment
|
14
|
+
@test_case._assertions += 1
|
15
|
+
end
|
16
|
+
|
17
|
+
end
|
18
|
+
|
19
|
+
end
|
20
|
+
|
21
|
+
end
|
22
|
+
|
23
|
+
end
|
@@ -0,0 +1,49 @@
|
|
1
|
+
require 'mocha/integration/mini_test/assertion_counter'
|
2
|
+
require 'mocha/expectation_error'
|
3
|
+
|
4
|
+
module Mocha
|
5
|
+
|
6
|
+
module Integration
|
7
|
+
|
8
|
+
module MiniTest
|
9
|
+
|
10
|
+
def self.translate(exception)
|
11
|
+
return exception unless exception.kind_of?(::Mocha::ExpectationError)
|
12
|
+
translated_exception = ::MiniTest::Assertion.new(exception.message)
|
13
|
+
translated_exception.set_backtrace(exception.backtrace)
|
14
|
+
translated_exception
|
15
|
+
end
|
16
|
+
|
17
|
+
module Version131AndAbove
|
18
|
+
def run runner
|
19
|
+
assertion_counter = AssertionCounter.new(self)
|
20
|
+
result = '.'
|
21
|
+
begin
|
22
|
+
begin
|
23
|
+
@passed = nil
|
24
|
+
self.setup
|
25
|
+
self.__send__ self.name
|
26
|
+
mocha_verify(assertion_counter)
|
27
|
+
@passed = true
|
28
|
+
rescue Exception => e
|
29
|
+
@passed = false
|
30
|
+
result = runner.puke(self.class, self.name, Mocha::Integration::MiniTest.translate(e))
|
31
|
+
ensure
|
32
|
+
begin
|
33
|
+
self.teardown
|
34
|
+
rescue Exception => e
|
35
|
+
result = runner.puke(self.class, self.name, Mocha::Integration::MiniTest.translate(e))
|
36
|
+
end
|
37
|
+
end
|
38
|
+
ensure
|
39
|
+
mocha_teardown
|
40
|
+
end
|
41
|
+
result
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
end
|
46
|
+
|
47
|
+
end
|
48
|
+
|
49
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
require 'mocha/integration/mini_test/version_131_and_above'
|
@@ -0,0 +1,23 @@
|
|
1
|
+
module Mocha
|
2
|
+
|
3
|
+
module Integration
|
4
|
+
|
5
|
+
module TestUnit
|
6
|
+
|
7
|
+
class AssertionCounter
|
8
|
+
|
9
|
+
def initialize(test_result)
|
10
|
+
@test_result = test_result
|
11
|
+
end
|
12
|
+
|
13
|
+
def increment
|
14
|
+
@test_result.add_assertion
|
15
|
+
end
|
16
|
+
|
17
|
+
end
|
18
|
+
|
19
|
+
end
|
20
|
+
|
21
|
+
end
|
22
|
+
|
23
|
+
end
|
@@ -0,0 +1,49 @@
|
|
1
|
+
require 'test/unit/testcase'
|
2
|
+
require 'mocha/integration/test_unit/assertion_counter'
|
3
|
+
require 'mocha/expectation_error'
|
4
|
+
|
5
|
+
module Mocha
|
6
|
+
|
7
|
+
module Integration
|
8
|
+
|
9
|
+
module TestUnit
|
10
|
+
|
11
|
+
module GemVersion200
|
12
|
+
def run(result)
|
13
|
+
assertion_counter = AssertionCounter.new(result)
|
14
|
+
begin
|
15
|
+
@_result = result
|
16
|
+
yield(Test::Unit::TestCase::STARTED, name)
|
17
|
+
begin
|
18
|
+
begin
|
19
|
+
run_setup
|
20
|
+
__send__(@method_name)
|
21
|
+
mocha_verify(assertion_counter)
|
22
|
+
rescue Mocha::ExpectationError => e
|
23
|
+
add_failure(e.message, e.backtrace)
|
24
|
+
rescue Exception
|
25
|
+
@interrupted = true
|
26
|
+
raise unless handle_exception($!)
|
27
|
+
ensure
|
28
|
+
begin
|
29
|
+
run_teardown
|
30
|
+
rescue Exception
|
31
|
+
raise unless handle_exception($!)
|
32
|
+
end
|
33
|
+
end
|
34
|
+
ensure
|
35
|
+
mocha_teardown
|
36
|
+
end
|
37
|
+
result.add_run
|
38
|
+
yield(Test::Unit::TestCase::FINISHED, name)
|
39
|
+
ensure
|
40
|
+
@_result = nil
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
end
|
46
|
+
|
47
|
+
end
|
48
|
+
|
49
|
+
end
|
@@ -0,0 +1,49 @@
|
|
1
|
+
require 'test/unit/testcase'
|
2
|
+
require 'mocha/integration/test_unit/assertion_counter'
|
3
|
+
require 'mocha/expectation_error'
|
4
|
+
|
5
|
+
module Mocha
|
6
|
+
|
7
|
+
module Integration
|
8
|
+
|
9
|
+
module TestUnit
|
10
|
+
|
11
|
+
module GemVersion201AndAbove
|
12
|
+
def run(result)
|
13
|
+
assertion_counter = AssertionCounter.new(result)
|
14
|
+
begin
|
15
|
+
@_result = result
|
16
|
+
yield(Test::Unit::TestCase::STARTED, name)
|
17
|
+
begin
|
18
|
+
begin
|
19
|
+
run_setup
|
20
|
+
run_test
|
21
|
+
mocha_verify(assertion_counter)
|
22
|
+
rescue Mocha::ExpectationError => e
|
23
|
+
add_failure(e.message, e.backtrace)
|
24
|
+
rescue Exception
|
25
|
+
@interrupted = true
|
26
|
+
raise unless handle_exception($!)
|
27
|
+
ensure
|
28
|
+
begin
|
29
|
+
run_teardown
|
30
|
+
rescue Exception
|
31
|
+
raise unless handle_exception($!)
|
32
|
+
end
|
33
|
+
end
|
34
|
+
ensure
|
35
|
+
mocha_teardown
|
36
|
+
end
|
37
|
+
result.add_run
|
38
|
+
yield(Test::Unit::TestCase::FINISHED, name)
|
39
|
+
ensure
|
40
|
+
@_result = nil
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
end
|
46
|
+
|
47
|
+
end
|
48
|
+
|
49
|
+
end
|
@@ -0,0 +1,48 @@
|
|
1
|
+
require 'test/unit/testcase'
|
2
|
+
require 'mocha/integration/test_unit/assertion_counter'
|
3
|
+
require 'mocha/expectation_error'
|
4
|
+
|
5
|
+
module Mocha
|
6
|
+
|
7
|
+
module Integration
|
8
|
+
|
9
|
+
module TestUnit
|
10
|
+
|
11
|
+
module RubyVersion185AndBelow
|
12
|
+
def run(result)
|
13
|
+
assertion_counter = AssertionCounter.new(result)
|
14
|
+
yield(Test::Unit::TestCase::STARTED, name)
|
15
|
+
@_result = result
|
16
|
+
begin
|
17
|
+
begin
|
18
|
+
setup
|
19
|
+
__send__(@method_name)
|
20
|
+
mocha_verify(assertion_counter)
|
21
|
+
rescue Mocha::ExpectationError => e
|
22
|
+
add_failure(e.message, e.backtrace)
|
23
|
+
rescue Test::Unit::AssertionFailedError => e
|
24
|
+
add_failure(e.message, e.backtrace)
|
25
|
+
rescue StandardError, ScriptError
|
26
|
+
add_error($!)
|
27
|
+
ensure
|
28
|
+
begin
|
29
|
+
teardown
|
30
|
+
rescue Test::Unit::AssertionFailedError => e
|
31
|
+
add_failure(e.message, e.backtrace)
|
32
|
+
rescue StandardError, ScriptError
|
33
|
+
add_error($!)
|
34
|
+
end
|
35
|
+
end
|
36
|
+
ensure
|
37
|
+
mocha_teardown
|
38
|
+
end
|
39
|
+
result.add_run
|
40
|
+
yield(Test::Unit::TestCase::FINISHED, name)
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
end
|
45
|
+
|
46
|
+
end
|
47
|
+
|
48
|
+
end
|
@@ -0,0 +1,50 @@
|
|
1
|
+
require 'test/unit/testcase'
|
2
|
+
require 'mocha/integration/test_unit/assertion_counter'
|
3
|
+
require 'mocha/expectation_error'
|
4
|
+
|
5
|
+
module Mocha
|
6
|
+
|
7
|
+
module Integration
|
8
|
+
|
9
|
+
module TestUnit
|
10
|
+
|
11
|
+
module RubyVersion186AndAbove
|
12
|
+
def run(result)
|
13
|
+
assertion_counter = AssertionCounter.new(result)
|
14
|
+
yield(Test::Unit::TestCase::STARTED, name)
|
15
|
+
@_result = result
|
16
|
+
begin
|
17
|
+
begin
|
18
|
+
setup
|
19
|
+
__send__(@method_name)
|
20
|
+
mocha_verify(assertion_counter)
|
21
|
+
rescue Mocha::ExpectationError => e
|
22
|
+
add_failure(e.message, e.backtrace)
|
23
|
+
rescue Test::Unit::AssertionFailedError => e
|
24
|
+
add_failure(e.message, e.backtrace)
|
25
|
+
rescue Exception
|
26
|
+
raise if Test::Unit::TestCase::PASSTHROUGH_EXCEPTIONS.include? $!.class
|
27
|
+
add_error($!)
|
28
|
+
ensure
|
29
|
+
begin
|
30
|
+
teardown
|
31
|
+
rescue Test::Unit::AssertionFailedError => e
|
32
|
+
add_failure(e.message, e.backtrace)
|
33
|
+
rescue Exception
|
34
|
+
raise if Test::Unit::TestCase::PASSTHROUGH_EXCEPTIONS.include? $!.class
|
35
|
+
add_error($!)
|
36
|
+
end
|
37
|
+
end
|
38
|
+
ensure
|
39
|
+
mocha_teardown
|
40
|
+
end
|
41
|
+
result.add_run
|
42
|
+
yield(Test::Unit::TestCase::FINISHED, name)
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
end
|
47
|
+
|
48
|
+
end
|
49
|
+
|
50
|
+
end
|
data/lib/mocha/is_a.rb
ADDED
data/lib/mocha/logger.rb
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
module Mocha
|
2
|
+
|
3
|
+
class MethodMatcher
|
4
|
+
|
5
|
+
attr_reader :expected_method_name
|
6
|
+
|
7
|
+
def initialize(expected_method_name)
|
8
|
+
@expected_method_name = expected_method_name
|
9
|
+
end
|
10
|
+
|
11
|
+
def match?(actual_method_name)
|
12
|
+
@expected_method_name == actual_method_name
|
13
|
+
end
|
14
|
+
|
15
|
+
def mocha_inspect
|
16
|
+
"#{@expected_method_name}"
|
17
|
+
end
|
18
|
+
|
19
|
+
end
|
20
|
+
|
21
|
+
end
|
data/lib/mocha/mock.rb
ADDED
@@ -0,0 +1,200 @@
|
|
1
|
+
require 'mocha/expectation'
|
2
|
+
require 'mocha/expectation_list'
|
3
|
+
require 'mocha/metaclass'
|
4
|
+
require 'mocha/names'
|
5
|
+
require 'mocha/mockery'
|
6
|
+
require 'mocha/method_matcher'
|
7
|
+
require 'mocha/parameters_matcher'
|
8
|
+
require 'mocha/unexpected_invocation'
|
9
|
+
require 'mocha/argument_iterator'
|
10
|
+
|
11
|
+
module Mocha # :nodoc:
|
12
|
+
|
13
|
+
# Traditional mock object.
|
14
|
+
#
|
15
|
+
# Methods return an Expectation which can be further modified by methods on Expectation.
|
16
|
+
class Mock
|
17
|
+
|
18
|
+
# :call-seq: expects(method_name) -> expectation
|
19
|
+
# expects(method_names_vs_return_values) -> last expectation
|
20
|
+
#
|
21
|
+
# Adds an expectation that a method identified by +method_name+ Symbol/String must be called exactly once with any parameters.
|
22
|
+
# Returns the new expectation which can be further modified by methods on Expectation.
|
23
|
+
# object = mock()
|
24
|
+
# object.expects(:method1)
|
25
|
+
# object.method1
|
26
|
+
# # no error raised
|
27
|
+
#
|
28
|
+
# object = mock()
|
29
|
+
# object.expects(:method1)
|
30
|
+
# # error raised, because method1 not called exactly once
|
31
|
+
# If +method_names_vs_return_values+ is a +Hash+, an expectation will be set up for each entry using the key as +method_name+ and value as +return_value+.
|
32
|
+
# object = mock()
|
33
|
+
# object.expects(:method1 => :result1, :method2 => :result2)
|
34
|
+
#
|
35
|
+
# # exactly equivalent to
|
36
|
+
#
|
37
|
+
# object = mock()
|
38
|
+
# object.expects(:method1).returns(:result1)
|
39
|
+
# object.expects(:method2).returns(:result2)
|
40
|
+
#
|
41
|
+
# Aliased by <tt>\_\_expects\_\_</tt>
|
42
|
+
def expects(method_name_or_hash, backtrace = nil)
|
43
|
+
iterator = ArgumentIterator.new(method_name_or_hash)
|
44
|
+
iterator.each { |*args|
|
45
|
+
method_name = args.shift
|
46
|
+
ensure_method_not_already_defined(method_name)
|
47
|
+
expectation = Expectation.new(self, method_name, backtrace)
|
48
|
+
expectation.returns(args.shift) if args.length > 0
|
49
|
+
@expectations.add(expectation)
|
50
|
+
}
|
51
|
+
end
|
52
|
+
|
53
|
+
# :call-seq: stubs(method_name) -> expectation
|
54
|
+
# stubs(method_names_vs_return_values) -> last expectation
|
55
|
+
#
|
56
|
+
# Adds an expectation that a method identified by +method_name+ Symbol/String may be called any number of times with any parameters.
|
57
|
+
# Returns the new expectation which can be further modified by methods on Expectation.
|
58
|
+
# object = mock()
|
59
|
+
# object.stubs(:method1)
|
60
|
+
# object.method1
|
61
|
+
# object.method1
|
62
|
+
# # no error raised
|
63
|
+
# If +method_names_vs_return_values+ is a +Hash+, an expectation will be set up for each entry using the key as +method_name+ and value as +return_value+.
|
64
|
+
# object = mock()
|
65
|
+
# object.stubs(:method1 => :result1, :method2 => :result2)
|
66
|
+
#
|
67
|
+
# # exactly equivalent to
|
68
|
+
#
|
69
|
+
# object = mock()
|
70
|
+
# object.stubs(:method1).returns(:result1)
|
71
|
+
# object.stubs(:method2).returns(:result2)
|
72
|
+
#
|
73
|
+
# Aliased by <tt>\_\_stubs\_\_</tt>
|
74
|
+
def stubs(method_name_or_hash, backtrace = nil)
|
75
|
+
iterator = ArgumentIterator.new(method_name_or_hash)
|
76
|
+
iterator.each { |*args|
|
77
|
+
method_name = args.shift
|
78
|
+
ensure_method_not_already_defined(method_name)
|
79
|
+
expectation = Expectation.new(self, method_name, backtrace)
|
80
|
+
expectation.at_least(0)
|
81
|
+
expectation.returns(args.shift) if args.length > 0
|
82
|
+
@expectations.add(expectation)
|
83
|
+
}
|
84
|
+
end
|
85
|
+
|
86
|
+
# :call-seq: responds_like(responder) -> mock
|
87
|
+
#
|
88
|
+
# Constrains the +mock+ so that it can only expect or stub methods to which +responder+ responds. The constraint is only applied at method invocation time.
|
89
|
+
#
|
90
|
+
# A +NoMethodError+ will be raised if the +responder+ does not <tt>respond_to?</tt> a method invocation (even if the method has been expected or stubbed).
|
91
|
+
#
|
92
|
+
# The +mock+ will delegate its <tt>respond_to?</tt> method to the +responder+.
|
93
|
+
# class Sheep
|
94
|
+
# def chew(grass); end
|
95
|
+
# def self.number_of_legs; end
|
96
|
+
# end
|
97
|
+
#
|
98
|
+
# sheep = mock('sheep')
|
99
|
+
# sheep.expects(:chew)
|
100
|
+
# sheep.expects(:foo)
|
101
|
+
# sheep.respond_to?(:chew) # => true
|
102
|
+
# sheep.respond_to?(:foo) # => true
|
103
|
+
# sheep.chew
|
104
|
+
# sheep.foo
|
105
|
+
# # no error raised
|
106
|
+
#
|
107
|
+
# sheep = mock('sheep')
|
108
|
+
# sheep.responds_like(Sheep.new)
|
109
|
+
# sheep.expects(:chew)
|
110
|
+
# sheep.expects(:foo)
|
111
|
+
# sheep.respond_to?(:chew) # => true
|
112
|
+
# sheep.respond_to?(:foo) # => false
|
113
|
+
# sheep.chew
|
114
|
+
# sheep.foo # => raises NoMethodError exception
|
115
|
+
#
|
116
|
+
# sheep_class = mock('sheep_class')
|
117
|
+
# sheep_class.responds_like(Sheep)
|
118
|
+
# sheep_class.stubs(:number_of_legs).returns(4)
|
119
|
+
# sheep_class.expects(:foo)
|
120
|
+
# sheep_class.respond_to?(:number_of_legs) # => true
|
121
|
+
# sheep_class.respond_to?(:foo) # => false
|
122
|
+
# assert_equal 4, sheep_class.number_of_legs
|
123
|
+
# sheep_class.foo # => raises NoMethodError exception
|
124
|
+
#
|
125
|
+
# Aliased by +quacks_like+
|
126
|
+
def responds_like(object)
|
127
|
+
@responder = object
|
128
|
+
self
|
129
|
+
end
|
130
|
+
|
131
|
+
# :stopdoc:
|
132
|
+
|
133
|
+
def initialize(name = nil, &block)
|
134
|
+
@name = name || DefaultName.new(self)
|
135
|
+
@expectations = ExpectationList.new
|
136
|
+
@everything_stubbed = false
|
137
|
+
@responder = nil
|
138
|
+
instance_eval(&block) if block
|
139
|
+
end
|
140
|
+
|
141
|
+
attr_reader :everything_stubbed, :expectations
|
142
|
+
|
143
|
+
alias_method :__expects__, :expects
|
144
|
+
|
145
|
+
alias_method :__stubs__, :stubs
|
146
|
+
|
147
|
+
alias_method :quacks_like, :responds_like
|
148
|
+
|
149
|
+
def stub_everything
|
150
|
+
@everything_stubbed = true
|
151
|
+
end
|
152
|
+
|
153
|
+
def method_missing(symbol, *arguments, &block)
|
154
|
+
if @responder and not @responder.respond_to?(symbol)
|
155
|
+
raise NoMethodError, "undefined method `#{symbol}' for #{self.mocha_inspect} which responds like #{@responder.mocha_inspect}"
|
156
|
+
end
|
157
|
+
if matching_expectation_allowing_invocation = @expectations.match_allowing_invocation(symbol, *arguments)
|
158
|
+
matching_expectation_allowing_invocation.invoke(arguments, &block)
|
159
|
+
else
|
160
|
+
if (matching_expectation = @expectations.match(symbol, *arguments)) || (!matching_expectation && !@everything_stubbed)
|
161
|
+
message = UnexpectedInvocation.new(self, symbol, *arguments).to_s
|
162
|
+
message << Mockery.instance.mocha_inspect
|
163
|
+
raise ExpectationError.new(message, caller)
|
164
|
+
end
|
165
|
+
end
|
166
|
+
end
|
167
|
+
|
168
|
+
def respond_to?(symbol, include_private = false)
|
169
|
+
if @responder then
|
170
|
+
if @responder.method(:respond_to?).arity > 1
|
171
|
+
@responder.respond_to?(symbol, include_private)
|
172
|
+
else
|
173
|
+
@responder.respond_to?(symbol)
|
174
|
+
end
|
175
|
+
else
|
176
|
+
@everything_stubbed || @expectations.matches_method?(symbol)
|
177
|
+
end
|
178
|
+
end
|
179
|
+
|
180
|
+
def __verified__?(assertion_counter = nil)
|
181
|
+
@expectations.verified?(assertion_counter)
|
182
|
+
end
|
183
|
+
|
184
|
+
def mocha_inspect
|
185
|
+
@name.mocha_inspect
|
186
|
+
end
|
187
|
+
|
188
|
+
def inspect
|
189
|
+
mocha_inspect
|
190
|
+
end
|
191
|
+
|
192
|
+
def ensure_method_not_already_defined(method_name)
|
193
|
+
self.__metaclass__.send(:undef_method, method_name) if self.__metaclass__.method_defined?(method_name)
|
194
|
+
end
|
195
|
+
|
196
|
+
# :startdoc:
|
197
|
+
|
198
|
+
end
|
199
|
+
|
200
|
+
end
|