mocha 1.0.0.alpha → 1.10.0.alpha
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.rubocop.yml +61 -0
- data/.rubocop_todo.yml +27 -0
- data/CONTRIBUTING.md +7 -0
- data/README.md +136 -42
- data/RELEASE.md +166 -16
- data/Rakefile +52 -36
- data/bin/build-matrix +32 -21
- data/docs/CNAME +1 -0
- data/docs/Mocha.html +254 -0
- data/docs/Mocha/API.html +1129 -0
- data/docs/Mocha/ClassMethods.html +339 -0
- data/docs/Mocha/Configuration.html +1383 -0
- data/docs/Mocha/Expectation.html +2654 -0
- data/docs/Mocha/ExpectationError.html +152 -0
- data/docs/Mocha/ExpectationErrorFactory.html +260 -0
- data/docs/Mocha/Hooks.html +370 -0
- data/docs/Mocha/Integration.html +125 -0
- data/docs/Mocha/Integration/MiniTest.html +123 -0
- data/docs/Mocha/Integration/MiniTest/Adapter.html +164 -0
- data/docs/Mocha/Integration/TestUnit.html +123 -0
- data/docs/Mocha/Integration/TestUnit/Adapter.html +164 -0
- data/docs/Mocha/Mock.html +1237 -0
- data/docs/Mocha/ObjectMethods.html +765 -0
- data/docs/Mocha/ParameterMatchers.html +2961 -0
- data/docs/Mocha/ParameterMatchers/AllOf.html +153 -0
- data/docs/Mocha/ParameterMatchers/AnyOf.html +153 -0
- data/docs/Mocha/ParameterMatchers/AnyParameters.html +153 -0
- data/docs/Mocha/ParameterMatchers/Anything.html +153 -0
- data/docs/Mocha/ParameterMatchers/Base.html +441 -0
- data/docs/Mocha/ParameterMatchers/Equals.html +153 -0
- data/docs/Mocha/ParameterMatchers/EquivalentUri.html +153 -0
- data/docs/Mocha/ParameterMatchers/HasEntries.html +153 -0
- data/docs/Mocha/ParameterMatchers/HasEntry.html +153 -0
- data/docs/Mocha/ParameterMatchers/HasKey.html +153 -0
- data/docs/Mocha/ParameterMatchers/HasValue.html +153 -0
- data/docs/Mocha/ParameterMatchers/Includes.html +153 -0
- data/docs/Mocha/ParameterMatchers/InstanceOf.html +153 -0
- data/docs/Mocha/ParameterMatchers/IsA.html +153 -0
- data/docs/Mocha/ParameterMatchers/KindOf.html +153 -0
- data/docs/Mocha/ParameterMatchers/Not.html +153 -0
- data/docs/Mocha/ParameterMatchers/Optionally.html +153 -0
- data/docs/Mocha/ParameterMatchers/RegexpMatches.html +153 -0
- data/docs/Mocha/ParameterMatchers/RespondsWith.html +153 -0
- data/docs/Mocha/ParameterMatchers/YamlEquivalent.html +153 -0
- data/docs/Mocha/Sequence.html +149 -0
- data/docs/Mocha/StateMachine.html +527 -0
- data/docs/Mocha/StateMachine/State.html +140 -0
- data/docs/Mocha/StateMachine/StatePredicate.html +140 -0
- data/docs/Mocha/StubbingError.html +150 -0
- data/docs/_index.html +519 -0
- data/docs/class_list.html +51 -0
- data/docs/css/common.css +1 -0
- data/docs/css/full_list.css +58 -0
- data/docs/css/style.css +496 -0
- data/docs/file.COPYING.html +81 -0
- data/docs/file.MIT-LICENSE.html +85 -0
- data/docs/file.README.html +429 -0
- data/docs/file.RELEASE.html +942 -0
- data/docs/file_list.html +71 -0
- data/docs/frames.html +17 -0
- data/docs/index.html +429 -0
- data/docs/js/app.js +303 -0
- data/docs/js/full_list.js +216 -0
- data/docs/js/jquery.js +4 -0
- data/docs/method_list.html +635 -0
- data/docs/top-level-namespace.html +118 -0
- data/gemfiles/Gemfile.minitest.5.11.3 +7 -0
- data/gemfiles/Gemfile.test-unit.latest +5 -1
- data/init.rb +1 -3
- data/lib/mocha.rb +8 -0
- data/lib/mocha/any_instance_method.rb +12 -50
- data/lib/mocha/api.rb +63 -65
- data/lib/mocha/argument_iterator.rb +4 -8
- data/lib/mocha/backtrace_filter.rb +1 -5
- data/lib/mocha/cardinality.rb +43 -35
- data/lib/mocha/central.rb +21 -12
- data/lib/mocha/change_state_side_effect.rb +0 -4
- data/lib/mocha/class_methods.rb +18 -20
- data/lib/mocha/configuration.rb +305 -18
- data/lib/mocha/debug.rb +3 -2
- data/lib/mocha/deprecation.rb +6 -10
- data/lib/mocha/detection/mini_test.rb +0 -2
- data/lib/mocha/detection/test_unit.rb +3 -5
- data/lib/mocha/error_with_filtered_backtrace.rb +13 -0
- data/lib/mocha/exception_raiser.rb +4 -6
- data/lib/mocha/expectation.rb +62 -67
- data/lib/mocha/expectation_error.rb +1 -1
- data/lib/mocha/expectation_error_factory.rb +0 -1
- data/lib/mocha/expectation_list.rb +7 -11
- data/lib/mocha/hooks.rb +1 -3
- data/lib/mocha/in_state_ordering_constraint.rb +0 -4
- data/lib/mocha/inspect.rb +28 -38
- data/lib/mocha/instance_method.rb +15 -8
- data/lib/mocha/integration.rb +2 -5
- data/lib/mocha/integration/mini_test.rb +7 -0
- data/lib/mocha/integration/mini_test/adapter.rb +2 -4
- data/lib/mocha/integration/mini_test/exception_translation.rb +1 -1
- data/lib/mocha/integration/mini_test/nothing.rb +4 -4
- data/lib/mocha/integration/mini_test/version_13.rb +4 -1
- data/lib/mocha/integration/mini_test/version_140.rb +4 -1
- data/lib/mocha/integration/mini_test/version_141.rb +4 -1
- data/lib/mocha/integration/mini_test/version_142_to_172.rb +4 -1
- data/lib/mocha/integration/mini_test/version_200.rb +4 -1
- data/lib/mocha/integration/mini_test/version_201_to_222.rb +4 -1
- data/lib/mocha/integration/mini_test/version_2110_to_2111.rb +4 -1
- data/lib/mocha/integration/mini_test/version_2112_to_320.rb +4 -1
- data/lib/mocha/integration/mini_test/version_230_to_2101.rb +4 -1
- data/lib/mocha/integration/monkey_patcher.rb +8 -2
- data/lib/mocha/integration/test_unit.rb +7 -0
- data/lib/mocha/integration/test_unit/adapter.rb +5 -6
- data/lib/mocha/integration/test_unit/gem_version_200.rb +5 -2
- data/lib/mocha/integration/test_unit/gem_version_201_to_202.rb +5 -2
- data/lib/mocha/integration/test_unit/gem_version_203_to_220.rb +5 -2
- data/lib/mocha/integration/test_unit/gem_version_230_to_250.rb +5 -2
- data/lib/mocha/integration/test_unit/nothing.rb +4 -4
- data/lib/mocha/integration/test_unit/ruby_version_185_and_below.rb +4 -1
- data/lib/mocha/integration/test_unit/ruby_version_186_and_above.rb +4 -1
- data/lib/mocha/invocation.rb +61 -0
- data/lib/mocha/is_a.rb +0 -2
- data/lib/mocha/logger.rb +0 -4
- data/lib/mocha/macos_version.rb +5 -0
- data/lib/mocha/method_matcher.rb +1 -5
- data/lib/mocha/minitest.rb +8 -0
- data/lib/mocha/mock.rb +70 -44
- data/lib/mocha/mockery.rb +78 -91
- data/lib/mocha/multiple_yields.rb +0 -5
- data/lib/mocha/names.rb +2 -12
- data/lib/mocha/no_yields.rb +1 -7
- data/lib/mocha/not_initialized_error.rb +7 -0
- data/lib/mocha/object_methods.rb +27 -33
- data/lib/mocha/parameter_matchers.rb +2 -4
- data/lib/mocha/parameter_matchers/all_of.rb +2 -8
- data/lib/mocha/parameter_matchers/any_of.rb +2 -8
- data/lib/mocha/parameter_matchers/any_parameters.rb +3 -9
- data/lib/mocha/parameter_matchers/anything.rb +2 -8
- data/lib/mocha/parameter_matchers/base.rb +6 -12
- data/lib/mocha/parameter_matchers/equals.rb +1 -7
- data/lib/mocha/parameter_matchers/{query_string.rb → equivalent_uri.rb} +15 -15
- data/lib/mocha/parameter_matchers/has_entries.rb +2 -6
- data/lib/mocha/parameter_matchers/has_entry.rb +8 -11
- data/lib/mocha/parameter_matchers/has_key.rb +2 -6
- data/lib/mocha/parameter_matchers/has_value.rb +2 -6
- data/lib/mocha/parameter_matchers/includes.rb +50 -8
- data/lib/mocha/parameter_matchers/instance_methods.rb +18 -0
- data/lib/mocha/parameter_matchers/instance_of.rb +0 -6
- data/lib/mocha/parameter_matchers/is_a.rb +2 -6
- data/lib/mocha/parameter_matchers/kind_of.rb +2 -6
- data/lib/mocha/parameter_matchers/not.rb +2 -6
- data/lib/mocha/parameter_matchers/optionally.rb +4 -10
- data/lib/mocha/parameter_matchers/regexp_matches.rb +0 -6
- data/lib/mocha/parameter_matchers/responds_with.rb +3 -8
- data/lib/mocha/parameter_matchers/yaml_equivalent.rb +2 -6
- data/lib/mocha/parameters_matcher.rb +6 -9
- data/lib/mocha/pretty_parameters.rb +0 -4
- data/lib/mocha/raised_exception.rb +11 -0
- data/lib/mocha/receivers.rb +10 -14
- data/lib/mocha/return_values.rb +4 -8
- data/lib/mocha/ruby_version.rb +4 -0
- data/lib/mocha/sequence.rb +4 -9
- data/lib/mocha/setup.rb +5 -0
- data/lib/mocha/single_return_value.rb +2 -5
- data/lib/mocha/single_yield.rb +0 -5
- data/lib/mocha/singleton_class.rb +9 -0
- data/lib/mocha/state_machine.rb +6 -10
- data/lib/mocha/stubbed_method.rb +127 -0
- data/lib/mocha/stubbing_error.rb +2 -13
- data/lib/mocha/test_unit.rb +7 -2
- data/lib/mocha/thrower.rb +4 -6
- data/lib/mocha/thrown_object.rb +12 -0
- data/lib/mocha/version.rb +1 -1
- data/lib/mocha/yield_parameters.rb +3 -7
- data/mocha.gemspec +35 -39
- data/test/acceptance/acceptance_test_helper.rb +6 -6
- data/test/acceptance/bug_18914_test.rb +7 -13
- data/test/acceptance/bug_21465_test.rb +0 -3
- data/test/acceptance/bug_21563_test.rb +0 -3
- data/test/acceptance/display_matching_invocations_alongside_expectations_test.rb +69 -0
- data/test/acceptance/exception_rescue_test.rb +7 -9
- data/test/acceptance/expectations_on_multiple_methods_test.rb +2 -2
- data/test/acceptance/expected_invocation_count_test.rb +27 -30
- data/test/acceptance/failure_messages_test.rb +3 -6
- data/test/acceptance/issue_272_test.rb +50 -0
- data/test/acceptance/issue_65_test.rb +15 -14
- data/test/acceptance/issue_70_test.rb +0 -2
- data/test/acceptance/mocha_example_test.rb +5 -7
- data/test/acceptance/mocha_test_result_test.rb +7 -8
- data/test/acceptance/mock_test.rb +48 -9
- data/test/acceptance/mocked_methods_dispatch_test.rb +0 -3
- data/test/acceptance/multiple_expectations_failure_message_test.rb +16 -18
- data/test/acceptance/optional_parameters_test.rb +0 -3
- data/test/acceptance/parameter_matcher_test.rb +6 -44
- data/test/acceptance/partial_mocks_test.rb +4 -7
- data/test/acceptance/prepend_test.rb +86 -0
- data/test/acceptance/prevent_use_of_mocha_outside_test_test.rb +76 -0
- data/test/acceptance/raise_exception_test.rb +2 -5
- data/test/acceptance/return_value_test.rb +0 -3
- data/test/acceptance/sequence_test.rb +9 -12
- data/test/acceptance/states_test.rb +6 -5
- data/test/acceptance/stub_any_instance_method_defined_on_superclass_test.rb +33 -3
- data/test/acceptance/stub_any_instance_method_test.rb +119 -21
- data/test/acceptance/stub_class_method_defined_on_active_record_association_proxy_test.rb +8 -9
- data/test/acceptance/stub_class_method_defined_on_class_test.rb +5 -5
- data/test/acceptance/stub_class_method_defined_on_module_test.rb +0 -2
- data/test/acceptance/stub_class_method_defined_on_superclass_test.rb +34 -2
- data/test/acceptance/stub_everything_test.rb +1 -4
- data/test/acceptance/stub_instance_method_defined_on_active_record_association_proxy_test.rb +6 -8
- data/test/acceptance/stub_instance_method_defined_on_class_and_aliased_test.rb +0 -2
- data/test/acceptance/stub_instance_method_defined_on_class_test.rb +3 -5
- data/test/acceptance/stub_instance_method_defined_on_kernel_module_test.rb +63 -2
- data/test/acceptance/stub_instance_method_defined_on_module_test.rb +3 -2
- data/test/acceptance/stub_instance_method_defined_on_object_class_test.rb +2 -2
- data/test/acceptance/stub_instance_method_defined_on_singleton_class_test.rb +0 -3
- data/test/acceptance/stub_instance_method_defined_on_superclass_test.rb +0 -2
- data/test/acceptance/stub_method_defined_on_module_and_aliased_test.rb +38 -0
- data/test/acceptance/stub_module_method_test.rb +58 -21
- data/test/acceptance/stub_test.rb +1 -4
- data/test/acceptance/stubba_example_test.rb +6 -15
- data/test/acceptance/stubba_test_result_test.rb +11 -6
- data/test/acceptance/stubbing_error_backtrace_test.rb +6 -7
- data/test/acceptance/stubbing_frozen_object_test.rb +2 -2
- data/test/acceptance/stubbing_method_accepting_block_parameter_test.rb +12 -8
- data/test/acceptance/stubbing_method_unnecessarily_test.rb +5 -7
- data/test/acceptance/stubbing_nil_test.rb +36 -35
- data/test/acceptance/stubbing_non_existent_any_instance_method_test.rb +23 -12
- data/test/acceptance/stubbing_non_existent_class_method_test.rb +14 -14
- data/test/acceptance/stubbing_non_existent_instance_method_test.rb +12 -14
- data/test/acceptance/stubbing_non_public_any_instance_method_test.rb +8 -10
- data/test/acceptance/stubbing_non_public_class_method_test.rb +12 -12
- data/test/acceptance/stubbing_non_public_instance_method_test.rb +10 -12
- data/test/acceptance/stubbing_on_non_mock_object_test.rb +17 -11
- data/test/acceptance/stubbing_same_class_method_on_parent_and_child_classes_test.rb +3 -5
- data/test/acceptance/throw_test.rb +0 -3
- data/test/acceptance/unexpected_invocation_test.rb +2 -4
- data/test/acceptance/unstubbing_test.rb +41 -15
- data/test/assertions.rb +6 -4
- data/test/deprecation_disabler.rb +1 -1
- data/test/execution_point.rb +7 -7
- data/test/integration/mini_test_test.rb +2 -2
- data/test/integration/shared_tests.rb +27 -23
- data/test/integration/test_unit_test.rb +2 -2
- data/test/method_definer.rb +11 -19
- data/test/mini_test_result.rb +17 -11
- data/test/minitest_result.rb +2 -3
- data/test/simple_counter.rb +0 -2
- data/test/test_helper.rb +13 -5
- data/test/test_runner.rb +5 -5
- data/test/test_unit_result.rb +4 -2
- data/test/unit/any_instance_method_test.rb +74 -31
- data/test/unit/array_inspect_test.rb +2 -4
- data/test/unit/backtrace_filter_test.rb +3 -5
- data/test/unit/cardinality_test.rb +41 -25
- data/test/unit/central_test.rb +26 -28
- data/test/unit/change_state_side_effect_test.rb +0 -4
- data/test/unit/class_methods_test.rb +35 -6
- data/test/unit/configuration_test.rb +13 -14
- data/test/unit/date_time_inspect_test.rb +1 -3
- data/test/unit/exception_raiser_test.rb +10 -7
- data/test/unit/expectation_list_test.rb +13 -13
- data/test/unit/expectation_test.rb +111 -131
- data/test/unit/hash_inspect_test.rb +3 -5
- data/test/unit/hooks_test.rb +14 -8
- data/test/unit/in_state_ordering_constraint_test.rb +0 -4
- data/test/unit/instance_method_test.rb +282 -0
- data/test/unit/method_matcher_test.rb +1 -3
- data/test/unit/mock_test.rb +56 -25
- data/test/unit/mockery_test.rb +49 -29
- data/test/unit/module_methods_test.rb +2 -5
- data/test/unit/multiple_yields_test.rb +0 -2
- data/test/unit/no_yields_test.rb +0 -2
- data/test/unit/object_inspect_test.rb +27 -5
- data/test/unit/object_methods_test.rb +25 -8
- data/test/unit/parameter_matchers/all_of_test.rb +0 -2
- data/test/unit/parameter_matchers/any_of_test.rb +0 -2
- data/test/unit/parameter_matchers/anything_test.rb +2 -4
- data/test/unit/parameter_matchers/equals_test.rb +1 -3
- data/test/unit/parameter_matchers/equivalent_uri_test.rb +41 -0
- data/test/unit/parameter_matchers/has_entries_test.rb +3 -3
- data/test/unit/parameter_matchers/has_entry_test.rb +16 -17
- data/test/unit/parameter_matchers/has_key_test.rb +1 -2
- data/test/unit/parameter_matchers/has_value_test.rb +2 -4
- data/test/unit/parameter_matchers/includes_test.rb +50 -3
- data/test/unit/parameter_matchers/instance_of_test.rb +1 -3
- data/test/unit/parameter_matchers/is_a_test.rb +1 -3
- data/test/unit/parameter_matchers/kind_of_test.rb +1 -3
- data/test/unit/parameter_matchers/not_test.rb +0 -2
- data/test/unit/parameter_matchers/regexp_matches_test.rb +1 -2
- data/test/unit/parameter_matchers/responds_with_test.rb +10 -4
- data/test/unit/parameter_matchers/stub_matcher.rb +0 -4
- data/test/unit/parameter_matchers/yaml_equivalent_test.rb +1 -3
- data/test/unit/parameters_matcher_test.rb +2 -4
- data/test/unit/receivers_test.rb +35 -5
- data/test/unit/return_values_test.rb +28 -25
- data/test/unit/sequence_test.rb +1 -5
- data/test/unit/single_return_value_test.rb +6 -3
- data/test/unit/single_yield_test.rb +0 -2
- data/test/unit/state_machine_test.rb +1 -3
- data/test/unit/string_inspect_test.rb +3 -5
- data/test/unit/thrower_test.rb +7 -4
- data/test/unit/yield_parameters_test.rb +0 -2
- data/yard-templates/default/layout/html/google_analytics.erb +6 -9
- data/yard-templates/default/layout/html/setup.rb +2 -3
- metadata +99 -42
- data/lib/mocha/class_method.rb +0 -106
- data/lib/mocha/mini_test.rb +0 -3
- data/lib/mocha/module_method.rb +0 -16
- data/lib/mocha/module_methods.rb +0 -14
- data/lib/mocha/parameter_matchers/object.rb +0 -17
- data/lib/mocha/standalone.rb +0 -4
- data/lib/mocha/unexpected_invocation.rb +0 -26
- data/lib/mocha_standalone.rb +0 -4
- data/test/acceptance/mock_with_initializer_block_test.rb +0 -51
- data/test/unit/class_method_test.rb +0 -223
data/lib/mocha/class_method.rb
DELETED
@@ -1,106 +0,0 @@
|
|
1
|
-
require 'metaclass'
|
2
|
-
|
3
|
-
module Mocha
|
4
|
-
|
5
|
-
class ClassMethod
|
6
|
-
|
7
|
-
attr_reader :stubbee, :method
|
8
|
-
|
9
|
-
def initialize(stubbee, method)
|
10
|
-
@stubbee = stubbee
|
11
|
-
@original_method, @original_visibility = nil, nil
|
12
|
-
@method = RUBY_VERSION < '1.9' ? method.to_s : method.to_sym
|
13
|
-
end
|
14
|
-
|
15
|
-
def stub
|
16
|
-
hide_original_method
|
17
|
-
define_new_method
|
18
|
-
end
|
19
|
-
|
20
|
-
def unstub
|
21
|
-
remove_new_method
|
22
|
-
restore_original_method
|
23
|
-
mock.unstub(method.to_sym)
|
24
|
-
unless mock.any_expectations?
|
25
|
-
reset_mocha
|
26
|
-
end
|
27
|
-
end
|
28
|
-
|
29
|
-
def mock
|
30
|
-
stubbee.mocha
|
31
|
-
end
|
32
|
-
|
33
|
-
def reset_mocha
|
34
|
-
stubbee.reset_mocha
|
35
|
-
end
|
36
|
-
|
37
|
-
def hide_original_method
|
38
|
-
if method_exists?(method)
|
39
|
-
begin
|
40
|
-
@original_method = stubbee._method(method)
|
41
|
-
@original_visibility = :public
|
42
|
-
if stubbee.__metaclass__.protected_instance_methods.include?(method)
|
43
|
-
@original_visibility = :protected
|
44
|
-
elsif stubbee.__metaclass__.private_instance_methods.include?(method)
|
45
|
-
@original_visibility = :private
|
46
|
-
end
|
47
|
-
if @original_method && @original_method.owner == stubbee.__metaclass__
|
48
|
-
stubbee.__metaclass__.send(:remove_method, method)
|
49
|
-
end
|
50
|
-
rescue NameError
|
51
|
-
# deal with nasties like ActiveRecord::Associations::AssociationProxy
|
52
|
-
end
|
53
|
-
end
|
54
|
-
end
|
55
|
-
|
56
|
-
def define_new_method
|
57
|
-
stubbee.__metaclass__.class_eval(<<-CODE, __FILE__, __LINE__ + 1)
|
58
|
-
def #{method}(*args, &block)
|
59
|
-
mocha.method_missing(:#{method}, *args, &block)
|
60
|
-
end
|
61
|
-
CODE
|
62
|
-
if @original_visibility
|
63
|
-
Module.instance_method(@original_visibility).bind(stubbee.__metaclass__).call(method)
|
64
|
-
end
|
65
|
-
end
|
66
|
-
|
67
|
-
def remove_new_method
|
68
|
-
stubbee.__metaclass__.send(:remove_method, method)
|
69
|
-
end
|
70
|
-
|
71
|
-
def restore_original_method
|
72
|
-
if @original_method && @original_method.owner == stubbee.__metaclass__
|
73
|
-
if RUBY_VERSION < '1.9'
|
74
|
-
original_method = @original_method
|
75
|
-
stubbee.__metaclass__.send(:define_method, method) do |*args, &block|
|
76
|
-
original_method.call(*args, &block)
|
77
|
-
end
|
78
|
-
else
|
79
|
-
stubbee.__metaclass__.send(:define_method, method, @original_method)
|
80
|
-
end
|
81
|
-
end
|
82
|
-
if @original_visibility
|
83
|
-
Module.instance_method(@original_visibility).bind(stubbee.__metaclass__).call(method)
|
84
|
-
end
|
85
|
-
end
|
86
|
-
|
87
|
-
def matches?(other)
|
88
|
-
return false unless (other.class == self.class)
|
89
|
-
(stubbee.object_id == other.stubbee.object_id) and (method == other.method)
|
90
|
-
end
|
91
|
-
|
92
|
-
alias_method :==, :eql?
|
93
|
-
|
94
|
-
def to_s
|
95
|
-
"#{stubbee}.#{method}"
|
96
|
-
end
|
97
|
-
|
98
|
-
def method_exists?(method)
|
99
|
-
symbol = method.to_sym
|
100
|
-
__metaclass__ = stubbee.__metaclass__
|
101
|
-
__metaclass__.public_method_defined?(symbol) || __metaclass__.protected_method_defined?(symbol) || __metaclass__.private_method_defined?(symbol)
|
102
|
-
end
|
103
|
-
|
104
|
-
end
|
105
|
-
|
106
|
-
end
|
data/lib/mocha/mini_test.rb
DELETED
data/lib/mocha/module_method.rb
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
require 'mocha/class_method'
|
2
|
-
|
3
|
-
module Mocha
|
4
|
-
|
5
|
-
class ModuleMethod < ClassMethod
|
6
|
-
|
7
|
-
def method_exists?(method)
|
8
|
-
return true if stubbee.public_methods(false).include?(method)
|
9
|
-
return true if stubbee.protected_methods(false).include?(method)
|
10
|
-
return true if stubbee.private_methods(false).include?(method)
|
11
|
-
return false
|
12
|
-
end
|
13
|
-
|
14
|
-
end
|
15
|
-
|
16
|
-
end
|
data/lib/mocha/module_methods.rb
DELETED
@@ -1,17 +0,0 @@
|
|
1
|
-
require 'mocha/parameter_matchers/equals'
|
2
|
-
|
3
|
-
module Mocha
|
4
|
-
|
5
|
-
module ObjectMethods
|
6
|
-
# @private
|
7
|
-
def to_matcher
|
8
|
-
Mocha::ParameterMatchers::Equals.new(self)
|
9
|
-
end
|
10
|
-
end
|
11
|
-
|
12
|
-
end
|
13
|
-
|
14
|
-
# @private
|
15
|
-
class Object
|
16
|
-
include Mocha::ObjectMethods
|
17
|
-
end
|
data/lib/mocha/standalone.rb
DELETED
@@ -1,26 +0,0 @@
|
|
1
|
-
module Mocha
|
2
|
-
|
3
|
-
# Exception raised when an unexpected method is invoked
|
4
|
-
class UnexpectedInvocation
|
5
|
-
|
6
|
-
# @private
|
7
|
-
def initialize(mock, symbol, *arguments)
|
8
|
-
@mock, @symbol, @arguments = mock, symbol, arguments
|
9
|
-
end
|
10
|
-
|
11
|
-
# @private
|
12
|
-
def full_description
|
13
|
-
method_matcher = MethodMatcher.new(@symbol)
|
14
|
-
parameters_matcher = ParametersMatcher.new(@arguments)
|
15
|
-
method_signature = "#{@mock.mocha_inspect}.#{method_matcher.mocha_inspect}#{parameters_matcher.mocha_inspect}"
|
16
|
-
"unexpected invocation: #{method_signature}\n"
|
17
|
-
end
|
18
|
-
|
19
|
-
# @private
|
20
|
-
def short_description
|
21
|
-
"unexpected invocation: #{@symbol}(#{@arguments.join(', ')})"
|
22
|
-
end
|
23
|
-
|
24
|
-
end
|
25
|
-
|
26
|
-
end
|
data/lib/mocha_standalone.rb
DELETED
@@ -1,51 +0,0 @@
|
|
1
|
-
require File.expand_path('../acceptance_test_helper', __FILE__)
|
2
|
-
require 'mocha/setup'
|
3
|
-
|
4
|
-
class MockWithInitializerBlockTest < Mocha::TestCase
|
5
|
-
|
6
|
-
include AcceptanceTest
|
7
|
-
|
8
|
-
def setup
|
9
|
-
setup_acceptance_test
|
10
|
-
end
|
11
|
-
|
12
|
-
def teardown
|
13
|
-
teardown_acceptance_test
|
14
|
-
end
|
15
|
-
|
16
|
-
def test_should_expect_two_method_invocations_and_receive_both_of_them
|
17
|
-
test_result = run_as_test do
|
18
|
-
mock = mock() do
|
19
|
-
expects(:method_1)
|
20
|
-
expects(:method_2)
|
21
|
-
end
|
22
|
-
mock.method_1
|
23
|
-
mock.method_2
|
24
|
-
end
|
25
|
-
assert_passed(test_result)
|
26
|
-
end
|
27
|
-
|
28
|
-
def test_should_expect_two_method_invocations_but_receive_only_one_of_them
|
29
|
-
test_result = run_as_test do
|
30
|
-
mock = mock() do
|
31
|
-
expects(:method_1)
|
32
|
-
expects(:method_2)
|
33
|
-
end
|
34
|
-
mock.method_1
|
35
|
-
end
|
36
|
-
assert_failed(test_result)
|
37
|
-
end
|
38
|
-
|
39
|
-
def test_should_stub_methods
|
40
|
-
test_result = run_as_test do
|
41
|
-
mock = mock() do
|
42
|
-
stubs(:method_1).returns(1)
|
43
|
-
stubs(:method_2).returns(2)
|
44
|
-
end
|
45
|
-
assert_equal 1, mock.method_1
|
46
|
-
assert_equal 2, mock.method_2
|
47
|
-
end
|
48
|
-
assert_passed(test_result)
|
49
|
-
end
|
50
|
-
|
51
|
-
end
|
@@ -1,223 +0,0 @@
|
|
1
|
-
require File.expand_path('../../test_helper', __FILE__)
|
2
|
-
require 'method_definer'
|
3
|
-
require 'mocha/mock'
|
4
|
-
|
5
|
-
require 'mocha/class_method'
|
6
|
-
|
7
|
-
class ClassMethodTest < Mocha::TestCase
|
8
|
-
|
9
|
-
include Mocha
|
10
|
-
|
11
|
-
def test_should_hide_original_method
|
12
|
-
klass = Class.new { def self.method_x; end }
|
13
|
-
method = ClassMethod.new(klass, :method_x)
|
14
|
-
|
15
|
-
method.hide_original_method
|
16
|
-
|
17
|
-
assert_equal false, klass.respond_to?(:method_x)
|
18
|
-
end
|
19
|
-
|
20
|
-
def test_should_not_raise_error_hiding_method_that_isnt_defined
|
21
|
-
klass = Class.new
|
22
|
-
method = ClassMethod.new(klass, :method_x)
|
23
|
-
|
24
|
-
assert_nothing_raised { method.hide_original_method }
|
25
|
-
end
|
26
|
-
|
27
|
-
def test_should_not_raise_error_hiding_method_in_class_that_implements_method_called_method
|
28
|
-
klass = Class.new { def self.method; end }
|
29
|
-
method = ClassMethod.new(klass, :method)
|
30
|
-
|
31
|
-
assert_nothing_raised { method.hide_original_method }
|
32
|
-
end
|
33
|
-
|
34
|
-
def test_should_define_a_new_method_which_should_call_mocha_method_missing
|
35
|
-
klass = Class.new { def self.method_x; end }
|
36
|
-
mocha = build_mock
|
37
|
-
klass.define_instance_method(:mocha) { mocha }
|
38
|
-
mocha.expects(:method_x).with(:param1, :param2).returns(:result)
|
39
|
-
method = ClassMethod.new(klass, :method_x)
|
40
|
-
|
41
|
-
method.hide_original_method
|
42
|
-
method.define_new_method
|
43
|
-
result = klass.method_x(:param1, :param2)
|
44
|
-
|
45
|
-
assert_equal :result, result
|
46
|
-
assert mocha.__verified__?
|
47
|
-
end
|
48
|
-
|
49
|
-
def test_should_remove_new_method
|
50
|
-
klass = Class.new { def self.method_x; end }
|
51
|
-
method = ClassMethod.new(klass, :method_x)
|
52
|
-
|
53
|
-
method.remove_new_method
|
54
|
-
|
55
|
-
assert_equal false, klass.respond_to?(:method_x)
|
56
|
-
end
|
57
|
-
|
58
|
-
def test_should_restore_original_method
|
59
|
-
klass = Class.new { def self.method_x; :original_result; end }
|
60
|
-
method = ClassMethod.new(klass, :method_x)
|
61
|
-
|
62
|
-
method.hide_original_method
|
63
|
-
method.define_new_method
|
64
|
-
method.remove_new_method
|
65
|
-
method.restore_original_method
|
66
|
-
|
67
|
-
assert klass.respond_to?(:method_x)
|
68
|
-
assert_equal :original_result, klass.method_x
|
69
|
-
end
|
70
|
-
|
71
|
-
def test_should_restore_original_method_accepting_a_block_parameter
|
72
|
-
klass = Class.new { def self.method_x(&block); block.call if block_given? ; end }
|
73
|
-
method = ClassMethod.new(klass, :method_x)
|
74
|
-
|
75
|
-
method.hide_original_method
|
76
|
-
method.define_new_method
|
77
|
-
method.remove_new_method
|
78
|
-
method.restore_original_method
|
79
|
-
|
80
|
-
block_called = false
|
81
|
-
klass.method_x { block_called = true }
|
82
|
-
assert block_called
|
83
|
-
end
|
84
|
-
|
85
|
-
def test_should_not_restore_original_method_if_none_was_defined_in_first_place
|
86
|
-
klass = Class.new { def self.method_x; :new_result; end }
|
87
|
-
method = ClassMethod.new(klass, :method_x)
|
88
|
-
|
89
|
-
method.restore_original_method
|
90
|
-
|
91
|
-
assert_equal :new_result, klass.method_x
|
92
|
-
end
|
93
|
-
|
94
|
-
def test_should_call_hide_original_method
|
95
|
-
klass = Class.new { def self.method_x; end }
|
96
|
-
method = ClassMethod.new(klass, :method_x)
|
97
|
-
method.hide_original_method
|
98
|
-
method.define_instance_accessor(:hide_called)
|
99
|
-
method.replace_instance_method(:hide_original_method) { self.hide_called = true }
|
100
|
-
|
101
|
-
method.stub
|
102
|
-
|
103
|
-
assert method.hide_called
|
104
|
-
end
|
105
|
-
|
106
|
-
def test_should_call_define_new_method
|
107
|
-
klass = Class.new { def self.method_x; end }
|
108
|
-
method = ClassMethod.new(klass, :method_x)
|
109
|
-
method.define_instance_accessor(:define_called)
|
110
|
-
method.replace_instance_method(:define_new_method) { self.define_called = true }
|
111
|
-
|
112
|
-
method.stub
|
113
|
-
|
114
|
-
assert method.define_called
|
115
|
-
end
|
116
|
-
|
117
|
-
def test_should_call_remove_new_method
|
118
|
-
klass = Class.new { def self.method_x; end }
|
119
|
-
method = ClassMethod.new(klass, :method_x)
|
120
|
-
mocha = build_mock
|
121
|
-
klass.define_instance_method(:mocha) { mocha }
|
122
|
-
method.define_instance_accessor(:remove_called)
|
123
|
-
method.replace_instance_method(:remove_new_method) { self.remove_called = true }
|
124
|
-
|
125
|
-
method.unstub
|
126
|
-
|
127
|
-
assert method.remove_called
|
128
|
-
end
|
129
|
-
|
130
|
-
def test_should_call_restore_original_method
|
131
|
-
klass = Class.new { def self.method_x; end }
|
132
|
-
mocha = build_mock
|
133
|
-
klass.define_instance_method(:mocha) { mocha }
|
134
|
-
method = ClassMethod.new(klass, :method_x)
|
135
|
-
method.define_instance_accessor(:restore_called)
|
136
|
-
method.replace_instance_method(:restore_original_method) { self.restore_called = true }
|
137
|
-
|
138
|
-
method.unstub
|
139
|
-
|
140
|
-
assert method.restore_called
|
141
|
-
end
|
142
|
-
|
143
|
-
def test_should_call_mocha_unstub
|
144
|
-
klass = Class.new { def self.method_x; end }
|
145
|
-
method = ClassMethod.new(klass, :method_x)
|
146
|
-
method.replace_instance_method(:restore_original_method) { }
|
147
|
-
mocha = Class.new { class << self; attr_accessor :unstub_method; end; def self.unstub(method); self.unstub_method = method; end; }
|
148
|
-
mocha.define_instance_method(:any_expectations?) { true }
|
149
|
-
method.replace_instance_method(:mock) { mocha }
|
150
|
-
|
151
|
-
method.unstub
|
152
|
-
assert_equal mocha.unstub_method, :method_x
|
153
|
-
end
|
154
|
-
|
155
|
-
def test_should_call_stubbee_reset_mocha_if_no_expectations_remaining
|
156
|
-
klass = Class.new { def self.method_x; end }
|
157
|
-
method = ClassMethod.new(klass, :method_x)
|
158
|
-
method.replace_instance_method(:remove_new_method) { }
|
159
|
-
method.replace_instance_method(:restore_original_method) { }
|
160
|
-
mocha = Class.new
|
161
|
-
mocha.define_instance_method(:unstub) { |method_name| }
|
162
|
-
mocha.define_instance_method(:any_expectations?) { false }
|
163
|
-
method.replace_instance_method(:mock) { mocha }
|
164
|
-
stubbee = Class.new { attr_accessor :reset_mocha_called; def reset_mocha; self.reset_mocha_called = true; end; }.new
|
165
|
-
method.replace_instance_method(:stubbee) { stubbee }
|
166
|
-
|
167
|
-
method.unstub
|
168
|
-
|
169
|
-
assert stubbee.reset_mocha_called
|
170
|
-
end
|
171
|
-
|
172
|
-
def test_should_return_mock_for_stubbee
|
173
|
-
mocha = Object.new
|
174
|
-
stubbee = Object.new
|
175
|
-
stubbee.define_instance_accessor(:mocha) { mocha }
|
176
|
-
stubbee.mocha = nil
|
177
|
-
method = ClassMethod.new(stubbee, :method_name)
|
178
|
-
assert_equal stubbee.mocha, method.mock
|
179
|
-
end
|
180
|
-
|
181
|
-
def test_should_not_match_if_other_object_has_a_different_class
|
182
|
-
class_method = ClassMethod.new(Object.new, :method)
|
183
|
-
other_object = Object.new
|
184
|
-
assert !class_method.matches?(other_object)
|
185
|
-
end
|
186
|
-
|
187
|
-
def test_should_not_match_if_other_class_method_has_different_stubbee
|
188
|
-
stubbee_1 = Object.new
|
189
|
-
stubbee_2 = Object.new
|
190
|
-
class_method_1 = ClassMethod.new(stubbee_1, :method)
|
191
|
-
class_method_2 = ClassMethod.new(stubbee_2, :method)
|
192
|
-
assert !class_method_1.matches?(class_method_2)
|
193
|
-
end
|
194
|
-
|
195
|
-
def test_should_not_match_if_other_class_method_has_different_method
|
196
|
-
stubbee = Object.new
|
197
|
-
class_method_1 = ClassMethod.new(stubbee, :method_1)
|
198
|
-
class_method_2 = ClassMethod.new(stubbee, :method_2)
|
199
|
-
assert !class_method_1.matches?(class_method_2)
|
200
|
-
end
|
201
|
-
|
202
|
-
def test_should_match_if_other_class_method_has_same_stubbee_and_same_method_so_no_attempt_is_made_to_stub_a_method_twice
|
203
|
-
stubbee = Object.new
|
204
|
-
class_method_1 = ClassMethod.new(stubbee, :method)
|
205
|
-
class_method_2 = ClassMethod.new(stubbee, :method)
|
206
|
-
assert class_method_1.matches?(class_method_2)
|
207
|
-
end
|
208
|
-
|
209
|
-
def test_should_match_if_other_class_method_has_same_stubbee_and_same_method_but_stubbee_equal_method_lies_like_active_record_association_proxy
|
210
|
-
stubbee = Class.new do
|
211
|
-
def equal?(other); false; end
|
212
|
-
end.new
|
213
|
-
class_method_1 = ClassMethod.new(stubbee, :method)
|
214
|
-
class_method_2 = ClassMethod.new(stubbee, :method)
|
215
|
-
assert class_method_1.matches?(class_method_2)
|
216
|
-
end
|
217
|
-
|
218
|
-
private
|
219
|
-
|
220
|
-
def build_mock
|
221
|
-
Mock.new(nil)
|
222
|
-
end
|
223
|
-
end
|