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
@@ -0,0 +1,38 @@
|
|
1
|
+
require File.expand_path('../acceptance_test_helper', __FILE__)
|
2
|
+
|
3
|
+
unless Mocha::PRE_RUBY_V19
|
4
|
+
class StubMethodDefinedOnModuleAndAliasedTest < Mocha::TestCase
|
5
|
+
include AcceptanceTest
|
6
|
+
|
7
|
+
def setup
|
8
|
+
setup_acceptance_test
|
9
|
+
end
|
10
|
+
|
11
|
+
def teardown
|
12
|
+
teardown_acceptance_test
|
13
|
+
end
|
14
|
+
|
15
|
+
def test_stubbing_class_method_defined_by_aliasing_module_instance_method
|
16
|
+
mod = Module.new do
|
17
|
+
def module_instance_method
|
18
|
+
'module-instance-method'
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
klass = Class.new do
|
23
|
+
extend mod
|
24
|
+
class << self
|
25
|
+
alias_method :aliased_module_instance_method, :module_instance_method
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
assert_snapshot_unchanged(klass) do
|
30
|
+
test_result = run_as_test do
|
31
|
+
klass.stubs(:aliased_module_instance_method).returns('stubbed-aliased-module-instance-method')
|
32
|
+
assert_equal 'stubbed-aliased-module-instance-method', klass.aliased_module_instance_method
|
33
|
+
end
|
34
|
+
assert_passed(test_result)
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
@@ -1,8 +1,6 @@
|
|
1
1
|
require File.expand_path('../acceptance_test_helper', __FILE__)
|
2
|
-
require 'mocha/setup'
|
3
2
|
|
4
3
|
class StubModuleMethodTest < Mocha::TestCase
|
5
|
-
|
6
4
|
include AcceptanceTest
|
7
5
|
|
8
6
|
def setup
|
@@ -13,8 +11,13 @@ class StubModuleMethodTest < Mocha::TestCase
|
|
13
11
|
teardown_acceptance_test
|
14
12
|
end
|
15
13
|
|
14
|
+
# rubocop:disable Lint/DuplicateMethods
|
16
15
|
def test_should_stub_method_within_test
|
17
|
-
mod = Module.new
|
16
|
+
mod = Module.new do
|
17
|
+
def self.my_module_method
|
18
|
+
:original_return_value
|
19
|
+
end
|
20
|
+
end
|
18
21
|
test_result = run_as_test do
|
19
22
|
mod.stubs(:my_module_method).returns(:new_return_value)
|
20
23
|
assert_equal :new_return_value, mod.my_module_method
|
@@ -23,34 +26,62 @@ class StubModuleMethodTest < Mocha::TestCase
|
|
23
26
|
end
|
24
27
|
|
25
28
|
def test_should_leave_stubbed_public_method_unchanged_after_test
|
26
|
-
mod = Module.new
|
29
|
+
mod = Module.new do
|
30
|
+
class << self
|
31
|
+
def my_module_method
|
32
|
+
:original_return_value
|
33
|
+
end
|
34
|
+
public :my_module_method
|
35
|
+
end
|
36
|
+
end
|
27
37
|
run_as_test do
|
28
38
|
mod.stubs(:my_module_method).returns(:new_return_value)
|
29
39
|
end
|
30
|
-
assert
|
40
|
+
assert(mod.public_methods(false).any? { |m| m.to_s == 'my_module_method' })
|
31
41
|
assert_equal :original_return_value, mod.my_module_method
|
32
42
|
end
|
33
43
|
|
34
44
|
def test_should_leave_stubbed_protected_method_unchanged_after_test
|
35
|
-
mod = Module.new
|
45
|
+
mod = Module.new do
|
46
|
+
class << self
|
47
|
+
def my_module_method
|
48
|
+
:original_return_value
|
49
|
+
end
|
50
|
+
protected :my_module_method
|
51
|
+
def my_unprotected_module_method
|
52
|
+
my_module_method
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
36
56
|
run_as_test do
|
37
57
|
mod.stubs(:my_module_method).returns(:new_return_value)
|
38
58
|
end
|
39
|
-
assert
|
59
|
+
assert(mod.protected_methods(false).any? { |m| m.to_s == 'my_module_method' })
|
40
60
|
assert_equal :original_return_value, mod.my_unprotected_module_method
|
41
61
|
end
|
42
62
|
|
43
63
|
def test_should_leave_stubbed_private_method_unchanged_after_test
|
44
|
-
mod = Module.new
|
64
|
+
mod = Module.new do
|
65
|
+
class << self
|
66
|
+
def my_module_method
|
67
|
+
:original_return_value
|
68
|
+
end
|
69
|
+
private :my_module_method
|
70
|
+
end
|
71
|
+
end
|
45
72
|
run_as_test do
|
46
73
|
mod.stubs(:my_module_method).returns(:new_return_value)
|
47
74
|
end
|
48
|
-
assert
|
75
|
+
assert(mod.private_methods(false).any? { |m| m.to_s == 'my_module_method' })
|
49
76
|
assert_equal :original_return_value, mod.send(:my_module_method)
|
50
77
|
end
|
51
78
|
|
52
79
|
def test_should_reset_expectations_after_test
|
53
|
-
mod = Module.new
|
80
|
+
mod = Module.new do
|
81
|
+
def self.my_module_method
|
82
|
+
:original_return_value
|
83
|
+
end
|
84
|
+
end
|
54
85
|
run_as_test do
|
55
86
|
mod.stubs(:my_module_method)
|
56
87
|
end
|
@@ -58,22 +89,28 @@ class StubModuleMethodTest < Mocha::TestCase
|
|
58
89
|
end
|
59
90
|
|
60
91
|
def test_should_be_able_to_stub_a_superclass_method
|
61
|
-
supermod = Module.new
|
62
|
-
|
92
|
+
supermod = Module.new do
|
93
|
+
def self.my_superclass_method
|
94
|
+
:original_return_value
|
95
|
+
end
|
96
|
+
end
|
97
|
+
mod = Module.new do
|
98
|
+
include supermod
|
99
|
+
end
|
63
100
|
test_result = run_as_test do
|
64
101
|
mod.stubs(:my_superclass_method).returns(:new_return_value)
|
65
102
|
assert_equal :new_return_value, mod.my_superclass_method
|
66
103
|
end
|
67
104
|
assert_passed(test_result)
|
68
|
-
assert
|
69
|
-
assert
|
105
|
+
assert(supermod.public_methods.any? { |m| m.to_s == 'my_superclass_method' })
|
106
|
+
assert(mod.public_methods(false).none? { |m| m.to_s == 'my_superclass_method' })
|
70
107
|
assert_equal :original_return_value, supermod.my_superclass_method
|
71
108
|
end
|
72
109
|
|
73
110
|
def test_should_be_able_to_stub_method_if_ruby18_public_methods_include_method_but_method_does_not_actually_exist_like_active_record_association_proxy
|
74
111
|
ruby18_mod = Module.new do
|
75
112
|
class << self
|
76
|
-
def public_methods(
|
113
|
+
def public_methods(_include_superclass = true)
|
77
114
|
['my_module_method']
|
78
115
|
end
|
79
116
|
end
|
@@ -88,7 +125,7 @@ class StubModuleMethodTest < Mocha::TestCase
|
|
88
125
|
def test_should_be_able_to_stub_method_if_ruby19_public_methods_include_method_but_method_does_not_actually_exist_like_active_record_association_proxy
|
89
126
|
ruby19_mod = Module.new do
|
90
127
|
class << self
|
91
|
-
def public_methods(
|
128
|
+
def public_methods(_include_superclass = true)
|
92
129
|
[:my_module_method]
|
93
130
|
end
|
94
131
|
end
|
@@ -103,7 +140,7 @@ class StubModuleMethodTest < Mocha::TestCase
|
|
103
140
|
def test_should_be_able_to_stub_method_if_ruby_18_protected_methods_include_method_but_method_does_not_actually_exist_like_active_record_association_proxy
|
104
141
|
ruby18_mod = Module.new do
|
105
142
|
class << self
|
106
|
-
def protected_methods(
|
143
|
+
def protected_methods(_include_superclass = true)
|
107
144
|
['my_module_method']
|
108
145
|
end
|
109
146
|
end
|
@@ -118,7 +155,7 @@ class StubModuleMethodTest < Mocha::TestCase
|
|
118
155
|
def test_should_be_able_to_stub_method_if_ruby19_protected_methods_include_method_but_method_does_not_actually_exist_like_active_record_association_proxy
|
119
156
|
ruby19_mod = Module.new do
|
120
157
|
class << self
|
121
|
-
def protected_methods(
|
158
|
+
def protected_methods(_include_superclass = true)
|
122
159
|
[:my_module_method]
|
123
160
|
end
|
124
161
|
end
|
@@ -133,7 +170,7 @@ class StubModuleMethodTest < Mocha::TestCase
|
|
133
170
|
def test_should_be_able_to_stub_method_if_ruby18_private_methods_include_method_but_method_does_not_actually_exist_like_active_record_association_proxy
|
134
171
|
ruby18_mod = Module.new do
|
135
172
|
class << self
|
136
|
-
def private_methods(
|
173
|
+
def private_methods(_include_superclass = true)
|
137
174
|
['my_module_method']
|
138
175
|
end
|
139
176
|
end
|
@@ -148,7 +185,7 @@ class StubModuleMethodTest < Mocha::TestCase
|
|
148
185
|
def test_should_be_able_to_stub_method_if_ruby19_private_methods_include_method_but_method_does_not_actually_exist_like_active_record_association_proxy
|
149
186
|
ruby19_mod = Module.new do
|
150
187
|
class << self
|
151
|
-
def private_methods(
|
188
|
+
def private_methods(_include_superclass = true)
|
152
189
|
[:my_module_method]
|
153
190
|
end
|
154
191
|
end
|
@@ -159,5 +196,5 @@ class StubModuleMethodTest < Mocha::TestCase
|
|
159
196
|
end
|
160
197
|
assert_passed(test_result)
|
161
198
|
end
|
162
|
-
|
199
|
+
# rubocop:enable Lint/DuplicateMethods
|
163
200
|
end
|
@@ -1,8 +1,6 @@
|
|
1
1
|
require File.expand_path('../acceptance_test_helper', __FILE__)
|
2
|
-
require 'mocha/setup'
|
3
2
|
|
4
3
|
class StubTest < Mocha::TestCase
|
5
|
-
|
6
4
|
include AcceptanceTest
|
7
5
|
|
8
6
|
def setup
|
@@ -15,7 +13,7 @@ class StubTest < Mocha::TestCase
|
|
15
13
|
|
16
14
|
def test_should_build_stub_and_explicitly_add_an_expectation
|
17
15
|
test_result = run_as_test do
|
18
|
-
foo = stub
|
16
|
+
foo = stub
|
19
17
|
foo.stubs(:bar)
|
20
18
|
foo.bar
|
21
19
|
end
|
@@ -48,5 +46,4 @@ class StubTest < Mocha::TestCase
|
|
48
46
|
end
|
49
47
|
assert_passed(test_result)
|
50
48
|
end
|
51
|
-
|
52
49
|
end
|
@@ -1,36 +1,28 @@
|
|
1
1
|
require File.expand_path('../../test_helper', __FILE__)
|
2
|
-
require 'mocha/setup'
|
3
2
|
|
4
3
|
class Widget
|
5
|
-
|
6
4
|
def model
|
7
5
|
'original_model'
|
8
6
|
end
|
9
7
|
|
10
8
|
class << self
|
11
|
-
|
12
|
-
def find(options)
|
9
|
+
def find(_options)
|
13
10
|
[]
|
14
11
|
end
|
15
12
|
|
16
|
-
def create(
|
13
|
+
def create(_attributes)
|
17
14
|
Widget.new
|
18
15
|
end
|
19
|
-
|
20
16
|
end
|
21
|
-
|
22
17
|
end
|
23
18
|
|
24
19
|
module Thingy
|
25
|
-
|
26
20
|
def self.wotsit
|
27
21
|
:hoojamaflip
|
28
22
|
end
|
29
|
-
|
30
23
|
end
|
31
24
|
|
32
25
|
class StubbaExampleTest < Mocha::TestCase
|
33
|
-
|
34
26
|
def test_should_stub_instance_method
|
35
27
|
widget = Widget.new
|
36
28
|
widget.expects(:model).returns('different_model')
|
@@ -93,10 +85,9 @@ class StubbaExampleTest < Mocha::TestCase
|
|
93
85
|
|
94
86
|
def should_stub_instance_method_on_any_instance_of_a_class
|
95
87
|
Widget.any_instance.expects(:model).at_least_once.returns('another_model')
|
96
|
-
|
97
|
-
|
98
|
-
assert_equal 'another_model',
|
99
|
-
assert_equal 'another_model',
|
88
|
+
widget1 = Widget.new
|
89
|
+
widget2 = Widget.new
|
90
|
+
assert_equal 'another_model', widget1.model
|
91
|
+
assert_equal 'another_model', widget2.model
|
100
92
|
end
|
101
|
-
|
102
93
|
end
|
@@ -1,9 +1,7 @@
|
|
1
1
|
require File.expand_path('../acceptance_test_helper', __FILE__)
|
2
|
-
require 'mocha/setup'
|
3
2
|
require 'execution_point'
|
4
3
|
|
5
4
|
class StubbaTestResultTest < Mocha::TestCase
|
6
|
-
|
7
5
|
include AcceptanceTest
|
8
6
|
|
9
7
|
def setup
|
@@ -16,7 +14,9 @@ class StubbaTestResultTest < Mocha::TestCase
|
|
16
14
|
|
17
15
|
def test_should_include_expectation_verification_in_assertion_count
|
18
16
|
test_result = run_as_test do
|
19
|
-
object = Class.new
|
17
|
+
object = Class.new do
|
18
|
+
def message; end
|
19
|
+
end.new
|
20
20
|
object.expects(:message)
|
21
21
|
object.message
|
22
22
|
end
|
@@ -32,7 +32,9 @@ class StubbaTestResultTest < Mocha::TestCase
|
|
32
32
|
|
33
33
|
def test_should_not_include_stubbing_expectation_verification_in_assertion_count
|
34
34
|
test_result = run_as_test do
|
35
|
-
object = Class.new
|
35
|
+
object = Class.new do
|
36
|
+
def message; end
|
37
|
+
end.new
|
36
38
|
object.stubs(:message)
|
37
39
|
object.message
|
38
40
|
end
|
@@ -41,7 +43,9 @@ class StubbaTestResultTest < Mocha::TestCase
|
|
41
43
|
|
42
44
|
def test_should_include_expectation_verification_failure_in_failure_count
|
43
45
|
test_result = run_as_test do
|
44
|
-
object = Class.new
|
46
|
+
object = Class.new do
|
47
|
+
def message; end
|
48
|
+
end.new
|
45
49
|
object.expects(:message)
|
46
50
|
end
|
47
51
|
assert_equal 1, test_result.failure_count
|
@@ -54,6 +58,7 @@ class StubbaTestResultTest < Mocha::TestCase
|
|
54
58
|
assert_equal 1, test_result.failure_count
|
55
59
|
end
|
56
60
|
|
61
|
+
# rubocop:disable Style/Semicolon
|
57
62
|
def test_should_display_backtrace_indicating_line_number_where_failing_assertion_was_called
|
58
63
|
execution_point = nil
|
59
64
|
test_result = run_as_test do
|
@@ -62,5 +67,5 @@ class StubbaTestResultTest < Mocha::TestCase
|
|
62
67
|
assert_equal 1, test_result.failure_count
|
63
68
|
assert_equal execution_point, ExecutionPoint.new(test_result.failures[0].location)
|
64
69
|
end
|
65
|
-
|
70
|
+
# rubocop:enable Style/Semicolon
|
66
71
|
end
|
@@ -1,9 +1,7 @@
|
|
1
1
|
require File.expand_path('../acceptance_test_helper', __FILE__)
|
2
|
-
require 'mocha/setup'
|
3
2
|
require 'execution_point'
|
4
3
|
|
5
4
|
class StubbingErrorBacktraceTest < Mocha::TestCase
|
6
|
-
|
7
5
|
include AcceptanceTest
|
8
6
|
|
9
7
|
def setup
|
@@ -14,10 +12,11 @@ class StubbingErrorBacktraceTest < Mocha::TestCase
|
|
14
12
|
teardown_acceptance_test
|
15
13
|
end
|
16
14
|
|
15
|
+
# rubocop:disable Style/Semicolon
|
17
16
|
def test_should_display_backtrace_indicating_line_number_where_attempt_to_stub_non_existent_method_was_made
|
18
17
|
execution_point = nil
|
19
18
|
object = Object.new
|
20
|
-
Mocha
|
19
|
+
Mocha.configure { |c| c.stubbing_non_existent_method = :prevent }
|
21
20
|
test_result = run_as_test do
|
22
21
|
execution_point = ExecutionPoint.current; object.stubs(:non_existent_method)
|
23
22
|
end
|
@@ -31,7 +30,7 @@ class StubbingErrorBacktraceTest < Mocha::TestCase
|
|
31
30
|
def non_public_method; end
|
32
31
|
private :non_public_method
|
33
32
|
end.new
|
34
|
-
Mocha
|
33
|
+
Mocha.configure { |c| c.stubbing_non_public_method = :prevent }
|
35
34
|
test_result = run_as_test do
|
36
35
|
execution_point = ExecutionPoint.current; object.stubs(:non_public_method)
|
37
36
|
end
|
@@ -42,7 +41,7 @@ class StubbingErrorBacktraceTest < Mocha::TestCase
|
|
42
41
|
def test_should_display_backtrace_indicating_line_number_where_attempt_to_stub_method_on_non_mock_object_was_made
|
43
42
|
execution_point = nil
|
44
43
|
object = Object.new
|
45
|
-
Mocha
|
44
|
+
Mocha.configure { |c| c.stubbing_method_on_non_mock_object = :prevent }
|
46
45
|
test_result = run_as_test do
|
47
46
|
execution_point = ExecutionPoint.current; object.stubs(:any_method)
|
48
47
|
end
|
@@ -53,12 +52,12 @@ class StubbingErrorBacktraceTest < Mocha::TestCase
|
|
53
52
|
def test_should_display_backtrace_indicating_line_number_where_method_was_unnecessarily_stubbed
|
54
53
|
execution_point = nil
|
55
54
|
object = Object.new
|
56
|
-
Mocha
|
55
|
+
Mocha.configure { |c| c.stubbing_method_unnecessarily = :prevent }
|
57
56
|
test_result = run_as_test do
|
58
57
|
execution_point = ExecutionPoint.current; object.stubs(:unused_method)
|
59
58
|
end
|
60
59
|
assert_equal 1, test_result.error_count
|
61
60
|
assert_equal execution_point, ExecutionPoint.new(test_result.errors[0].exception.backtrace)
|
62
61
|
end
|
63
|
-
|
62
|
+
# rubocop:enable Style/Semicolon
|
64
63
|
end
|
@@ -1,9 +1,7 @@
|
|
1
1
|
require File.expand_path('../acceptance_test_helper', __FILE__)
|
2
|
-
require 'mocha/setup'
|
3
2
|
require 'execution_point'
|
4
3
|
|
5
4
|
class StubbingFrozenObjectTest < Mocha::TestCase
|
6
|
-
|
7
5
|
include AcceptanceTest
|
8
6
|
|
9
7
|
def setup
|
@@ -14,6 +12,7 @@ class StubbingFrozenObjectTest < Mocha::TestCase
|
|
14
12
|
teardown_acceptance_test
|
15
13
|
end
|
16
14
|
|
15
|
+
# rubocop:disable Style/Semicolon
|
17
16
|
def test_should_fail_fast_if_attempting_to_stub_method_on_frozen_object
|
18
17
|
object = Object.new
|
19
18
|
object.freeze
|
@@ -85,4 +84,5 @@ class StubbingFrozenObjectTest < Mocha::TestCase
|
|
85
84
|
assert_equal 1, test_result.error_count
|
86
85
|
assert_equal execution_point, ExecutionPoint.new(test_result.errors[0].exception.backtrace)
|
87
86
|
end
|
87
|
+
# rubocop:enable Style/Semicolon
|
88
88
|
end
|
@@ -1,8 +1,6 @@
|
|
1
1
|
require File.expand_path('../acceptance_test_helper', __FILE__)
|
2
|
-
require 'mocha/setup'
|
3
2
|
|
4
3
|
class StubbingMethodAcceptingBlockParameterTest < Mocha::TestCase
|
5
|
-
|
6
4
|
include AcceptanceTest
|
7
5
|
|
8
6
|
def setup
|
@@ -15,34 +13,40 @@ class StubbingMethodAcceptingBlockParameterTest < Mocha::TestCase
|
|
15
13
|
|
16
14
|
def test_stubbing_class_method_accepting_block_parameter_should_restore_original_method
|
17
15
|
klass = Class.new do
|
18
|
-
def self.my_class_method(&block)
|
16
|
+
def self.my_class_method(&block)
|
17
|
+
block.call
|
18
|
+
end
|
19
19
|
end
|
20
20
|
test_result = run_as_test do
|
21
21
|
klass.stubs(:my_class_method)
|
22
22
|
end
|
23
23
|
assert_passed(test_result)
|
24
|
-
assert_equal :return_value, klass.my_class_method { :return_value }
|
24
|
+
assert_equal :return_value, (klass.my_class_method { :return_value })
|
25
25
|
end
|
26
26
|
|
27
27
|
def test_stubbing_instance_method_accepting_block_parameter_should_restore_original_method
|
28
28
|
instance = Class.new do
|
29
|
-
def my_instance_method
|
29
|
+
def my_instance_method
|
30
|
+
yield
|
31
|
+
end
|
30
32
|
end.new
|
31
33
|
test_result = run_as_test do
|
32
34
|
instance.stubs(:my_instance_method)
|
33
35
|
end
|
34
36
|
assert_passed(test_result)
|
35
|
-
assert_equal :return_value, instance.my_instance_method { :return_value }
|
37
|
+
assert_equal :return_value, (instance.my_instance_method { :return_value })
|
36
38
|
end
|
37
39
|
|
38
40
|
def test_stubbing_any_instance_method_accepting_block_parameter_should_restore_original_method
|
39
41
|
klass = Class.new do
|
40
|
-
def my_instance_method
|
42
|
+
def my_instance_method
|
43
|
+
yield
|
44
|
+
end
|
41
45
|
end
|
42
46
|
test_result = run_as_test do
|
43
47
|
klass.any_instance.stubs(:my_instance_method)
|
44
48
|
end
|
45
49
|
assert_passed(test_result)
|
46
|
-
assert_equal :return_value, klass.new.my_instance_method { :return_value }
|
50
|
+
assert_equal :return_value, (klass.new.my_instance_method { :return_value })
|
47
51
|
end
|
48
52
|
end
|