mocha 0.10.5 → 1.13.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.github/FUNDING.yml +1 -0
- data/.rubocop.yml +61 -0
- data/.rubocop_todo.yml +27 -0
- data/.yardopts +24 -0
- data/CONTRIBUTING.md +7 -0
- data/COPYING.md +3 -0
- data/Gemfile +2 -2
- data/{MIT-LICENSE.rdoc → MIT-LICENSE.md} +1 -1
- data/README.md +363 -0
- data/{RELEASE.rdoc → RELEASE.md} +436 -35
- data/Rakefile +87 -87
- data/gemfiles/Gemfile.minitest.latest +2 -2
- data/gemfiles/Gemfile.test-unit.latest +6 -2
- data/init.rb +1 -3
- data/lib/mocha/any_instance_method.rb +12 -45
- data/lib/mocha/api.rb +199 -131
- data/lib/mocha/argument_iterator.rb +6 -10
- data/lib/mocha/backtrace_filter.rb +1 -5
- data/lib/mocha/block_matcher.rb +31 -0
- data/lib/mocha/cardinality.rb +77 -66
- data/lib/mocha/central.rb +27 -18
- data/lib/mocha/change_state_side_effect.rb +3 -7
- data/lib/mocha/class_methods.rb +62 -0
- data/lib/mocha/configuration.rb +399 -46
- data/lib/mocha/debug.rb +12 -0
- data/lib/mocha/deprecation.rb +11 -12
- data/lib/mocha/detection/mini_test.rb +23 -0
- data/lib/mocha/detection/test_unit.rb +27 -0
- data/lib/mocha/error_with_filtered_backtrace.rb +13 -0
- data/lib/mocha/exception_raiser.rb +8 -10
- data/lib/mocha/expectation.rb +290 -151
- data/lib/mocha/expectation_error.rb +6 -13
- data/lib/mocha/expectation_error_factory.rb +35 -0
- data/lib/mocha/expectation_list.rb +22 -22
- data/lib/mocha/hooks.rb +42 -0
- data/lib/mocha/in_state_ordering_constraint.rb +3 -7
- data/lib/mocha/inspect.rb +35 -43
- data/lib/mocha/instance_method.rb +12 -21
- data/lib/mocha/integration/assertion_counter.rb +13 -0
- data/lib/mocha/integration/mini_test/adapter.rb +52 -0
- data/lib/mocha/integration/mini_test/exception_translation.rb +1 -7
- data/lib/mocha/integration/mini_test/nothing.rb +19 -0
- data/lib/mocha/integration/mini_test/version_13.rb +35 -25
- data/lib/mocha/integration/mini_test/version_140.rb +35 -26
- data/lib/mocha/integration/mini_test/version_141.rb +43 -34
- data/lib/mocha/integration/mini_test/version_142_to_172.rb +44 -35
- data/lib/mocha/integration/mini_test/version_200.rb +45 -36
- data/lib/mocha/integration/mini_test/version_201_to_222.rb +44 -35
- data/lib/mocha/integration/mini_test/version_2110_to_2111.rb +70 -0
- data/lib/mocha/integration/mini_test/version_2112_to_320.rb +73 -0
- data/lib/mocha/integration/mini_test/version_230_to_2101.rb +68 -0
- data/lib/mocha/integration/mini_test.rb +51 -49
- data/lib/mocha/integration/monkey_patcher.rb +24 -0
- data/lib/mocha/integration/test_unit/adapter.rb +50 -0
- data/lib/mocha/integration/test_unit/gem_version_200.rb +39 -29
- data/lib/mocha/integration/test_unit/gem_version_201_to_202.rb +39 -29
- data/lib/mocha/integration/test_unit/gem_version_203_to_220.rb +39 -29
- data/lib/mocha/integration/test_unit/gem_version_230_to_250.rb +68 -0
- data/lib/mocha/integration/test_unit/nothing.rb +19 -0
- data/lib/mocha/integration/test_unit/ruby_version_185_and_below.rb +39 -29
- data/lib/mocha/integration/test_unit/ruby_version_186_and_above.rb +40 -30
- data/lib/mocha/integration/test_unit.rb +45 -51
- data/lib/mocha/integration.rb +6 -33
- data/lib/mocha/invocation.rb +77 -0
- data/lib/mocha/is_a.rb +0 -2
- data/lib/mocha/logger.rb +2 -6
- data/lib/mocha/macos_version.rb +5 -0
- data/lib/mocha/method_matcher.rb +6 -10
- data/lib/mocha/minitest.rb +8 -0
- data/lib/mocha/mock.rb +266 -79
- data/lib/mocha/mockery.rb +104 -106
- data/lib/mocha/names.rb +10 -20
- data/lib/mocha/not_initialized_error.rb +7 -0
- data/lib/mocha/object_methods.rb +169 -0
- data/lib/mocha/parameter_matchers/all_of.rb +18 -14
- data/lib/mocha/parameter_matchers/any_of.rb +19 -14
- data/lib/mocha/parameter_matchers/any_parameters.rb +14 -13
- data/lib/mocha/parameter_matchers/anything.rb +17 -14
- data/lib/mocha/parameter_matchers/base.rb +33 -31
- data/lib/mocha/parameter_matchers/equals.rb +18 -13
- data/lib/mocha/parameter_matchers/equivalent_uri.rb +58 -0
- data/lib/mocha/parameter_matchers/has_entries.rb +19 -14
- data/lib/mocha/parameter_matchers/has_entry.rb +58 -26
- data/lib/mocha/parameter_matchers/has_key.rb +18 -13
- data/lib/mocha/parameter_matchers/has_keys.rb +53 -0
- data/lib/mocha/parameter_matchers/has_value.rb +18 -13
- data/lib/mocha/parameter_matchers/includes.rb +80 -19
- data/lib/mocha/parameter_matchers/instance_methods.rb +18 -0
- data/lib/mocha/parameter_matchers/instance_of.rb +18 -13
- data/lib/mocha/parameter_matchers/is_a.rb +20 -14
- data/lib/mocha/parameter_matchers/kind_of.rb +20 -13
- data/lib/mocha/parameter_matchers/not.rb +19 -14
- data/lib/mocha/parameter_matchers/optionally.rb +23 -17
- data/lib/mocha/parameter_matchers/regexp_matches.rb +16 -12
- data/lib/mocha/parameter_matchers/responds_with.rb +17 -11
- data/lib/mocha/parameter_matchers/yaml_equivalent.rb +15 -9
- data/lib/mocha/parameter_matchers.rb +4 -5
- data/lib/mocha/parameters_matcher.rb +11 -14
- data/lib/mocha/raised_exception.rb +11 -0
- data/lib/mocha/receivers.rb +45 -0
- data/lib/mocha/return_values.rb +11 -15
- data/lib/mocha/ruby_version.rb +4 -0
- data/lib/mocha/sequence.rb +21 -17
- data/lib/mocha/setup.rb +14 -0
- data/lib/mocha/single_return_value.rb +5 -8
- data/lib/mocha/singleton_class.rb +9 -0
- data/lib/mocha/state_machine.rb +69 -67
- data/lib/mocha/stubbed_method.rb +125 -0
- data/lib/mocha/stubbing_error.rb +6 -14
- data/lib/mocha/test_unit.rb +8 -0
- data/lib/mocha/thrower.rb +6 -8
- data/lib/mocha/thrown_object.rb +12 -0
- data/lib/mocha/version.rb +1 -1
- data/lib/mocha/yield_parameters.rb +12 -22
- data/lib/mocha.rb +8 -3
- data/mocha.gemspec +43 -34
- data/yard-templates/default/layout/html/google_analytics.erb +8 -0
- data/yard-templates/default/layout/html/setup.rb +5 -0
- metadata +123 -268
- data/COPYING.rdoc +0 -3
- data/README.rdoc +0 -54
- data/examples/misc.rb +0 -43
- data/examples/mocha.rb +0 -25
- data/examples/stubba.rb +0 -64
- data/gemfiles/Gemfile.minitest.1.3.0 +0 -7
- data/gemfiles/Gemfile.minitest.1.4.0 +0 -7
- data/gemfiles/Gemfile.minitest.1.4.1 +0 -7
- data/gemfiles/Gemfile.minitest.1.4.2 +0 -7
- data/gemfiles/Gemfile.minitest.2.0.0 +0 -7
- data/gemfiles/Gemfile.minitest.2.0.1 +0 -7
- data/gemfiles/Gemfile.minitest.2.3.0 +0 -7
- data/gemfiles/Gemfile.test-unit.2.0.0 +0 -8
- data/gemfiles/Gemfile.test-unit.2.0.1 +0 -7
- data/gemfiles/Gemfile.test-unit.2.0.3 +0 -7
- data/lib/mocha/class_method.rb +0 -98
- data/lib/mocha/integration/mini_test/assertion_counter.rb +0 -23
- data/lib/mocha/integration/mini_test/version_230_to_262.rb +0 -59
- data/lib/mocha/integration/test_unit/assertion_counter.rb +0 -23
- data/lib/mocha/integration/test_unit/gem_version_230_to_240.rb +0 -58
- data/lib/mocha/module_method.rb +0 -16
- data/lib/mocha/multiple_yields.rb +0 -20
- data/lib/mocha/no_yields.rb +0 -11
- data/lib/mocha/object.rb +0 -223
- data/lib/mocha/options.rb +0 -1
- data/lib/mocha/parameter_matchers/object.rb +0 -15
- data/lib/mocha/parameter_matchers/query_string.rb +0 -47
- data/lib/mocha/pretty_parameters.rb +0 -28
- data/lib/mocha/single_yield.rb +0 -18
- data/lib/mocha/standalone.rb +0 -1
- data/lib/mocha/unexpected_invocation.rb +0 -18
- data/lib/mocha_standalone.rb +0 -2
- data/lib/stubba.rb +0 -4
- data/test/acceptance/acceptance_test_helper.rb +0 -41
- data/test/acceptance/api_test.rb +0 -139
- data/test/acceptance/bug_18914_test.rb +0 -43
- data/test/acceptance/bug_21465_test.rb +0 -34
- data/test/acceptance/bug_21563_test.rb +0 -25
- data/test/acceptance/exception_rescue_test.rb +0 -55
- data/test/acceptance/expectations_on_multiple_methods_test.rb +0 -55
- data/test/acceptance/expected_invocation_count_test.rb +0 -232
- data/test/acceptance/failure_messages_test.rb +0 -64
- data/test/acceptance/issue_65_test.rb +0 -63
- data/test/acceptance/issue_70_test.rb +0 -55
- data/test/acceptance/minitest_test.rb +0 -162
- data/test/acceptance/mocha_example_test.rb +0 -98
- data/test/acceptance/mocha_test_result_test.rb +0 -84
- data/test/acceptance/mock_test.rb +0 -100
- data/test/acceptance/mock_with_initializer_block_test.rb +0 -51
- data/test/acceptance/mocked_methods_dispatch_test.rb +0 -78
- data/test/acceptance/multiple_expectations_failure_message_test.rb +0 -68
- data/test/acceptance/optional_parameters_test.rb +0 -70
- data/test/acceptance/parameter_matcher_test.rb +0 -300
- data/test/acceptance/partial_mocks_test.rb +0 -47
- data/test/acceptance/raise_exception_test.rb +0 -39
- data/test/acceptance/return_value_test.rb +0 -52
- data/test/acceptance/sequence_test.rb +0 -192
- data/test/acceptance/states_test.rb +0 -70
- data/test/acceptance/stub_any_instance_method_test.rb +0 -198
- data/test/acceptance/stub_class_method_defined_on_active_record_association_proxy_test.rb +0 -106
- data/test/acceptance/stub_class_method_defined_on_class_test.rb +0 -72
- data/test/acceptance/stub_class_method_defined_on_module_test.rb +0 -75
- data/test/acceptance/stub_class_method_defined_on_superclass_test.rb +0 -75
- data/test/acceptance/stub_everything_test.rb +0 -56
- data/test/acceptance/stub_instance_method_defined_on_active_record_association_proxy_test.rb +0 -93
- data/test/acceptance/stub_instance_method_defined_on_class_and_aliased_test.rb +0 -69
- data/test/acceptance/stub_instance_method_defined_on_class_test.rb +0 -66
- data/test/acceptance/stub_instance_method_defined_on_kernel_module_test.rb +0 -75
- data/test/acceptance/stub_instance_method_defined_on_module_test.rb +0 -75
- data/test/acceptance/stub_instance_method_defined_on_object_class_test.rb +0 -75
- data/test/acceptance/stub_instance_method_defined_on_singleton_class_test.rb +0 -70
- data/test/acceptance/stub_instance_method_defined_on_superclass_test.rb +0 -72
- data/test/acceptance/stub_module_method_test.rb +0 -163
- data/test/acceptance/stub_test.rb +0 -52
- data/test/acceptance/stubba_example_test.rb +0 -102
- data/test/acceptance/stubba_test.rb +0 -15
- data/test/acceptance/stubba_test_result_test.rb +0 -66
- data/test/acceptance/stubbing_error_backtrace_test.rb +0 -64
- data/test/acceptance/stubbing_method_unnecessarily_test.rb +0 -65
- data/test/acceptance/stubbing_non_existent_any_instance_method_test.rb +0 -130
- data/test/acceptance/stubbing_non_existent_class_method_test.rb +0 -157
- data/test/acceptance/stubbing_non_existent_instance_method_test.rb +0 -147
- data/test/acceptance/stubbing_non_public_any_instance_method_test.rb +0 -130
- data/test/acceptance/stubbing_non_public_class_method_test.rb +0 -163
- data/test/acceptance/stubbing_non_public_instance_method_test.rb +0 -143
- data/test/acceptance/stubbing_on_non_mock_object_test.rb +0 -64
- data/test/acceptance/throw_test.rb +0 -45
- data/test/acceptance/unstubbing_test.rb +0 -151
- data/test/deprecation_disabler.rb +0 -15
- data/test/execution_point.rb +0 -36
- data/test/method_definer.rb +0 -24
- data/test/mini_test_result.rb +0 -83
- data/test/simple_counter.rb +0 -13
- data/test/test_helper.rb +0 -11
- data/test/test_runner.rb +0 -50
- data/test/unit/any_instance_method_test.rb +0 -136
- data/test/unit/array_inspect_test.rb +0 -16
- data/test/unit/backtrace_filter_test.rb +0 -19
- data/test/unit/cardinality_test.rb +0 -56
- data/test/unit/central_test.rb +0 -100
- data/test/unit/change_state_side_effect_test.rb +0 -41
- data/test/unit/class_method_test.rb +0 -260
- data/test/unit/configuration_test.rb +0 -38
- data/test/unit/date_time_inspect_test.rb +0 -21
- data/test/unit/exception_raiser_test.rb +0 -42
- data/test/unit/expectation_list_test.rb +0 -71
- data/test/unit/expectation_test.rb +0 -480
- data/test/unit/hash_inspect_test.rb +0 -16
- data/test/unit/in_state_ordering_constraint_test.rb +0 -43
- data/test/unit/method_matcher_test.rb +0 -23
- data/test/unit/mock_test.rb +0 -312
- data/test/unit/mockery_test.rb +0 -150
- data/test/unit/multiple_yields_test.rb +0 -18
- data/test/unit/no_yields_test.rb +0 -18
- data/test/unit/object_inspect_test.rb +0 -38
- data/test/unit/object_test.rb +0 -87
- data/test/unit/parameter_matchers/all_of_test.rb +0 -26
- data/test/unit/parameter_matchers/any_of_test.rb +0 -26
- data/test/unit/parameter_matchers/anything_test.rb +0 -21
- data/test/unit/parameter_matchers/equals_test.rb +0 -25
- data/test/unit/parameter_matchers/has_entries_test.rb +0 -51
- data/test/unit/parameter_matchers/has_entry_test.rb +0 -96
- data/test/unit/parameter_matchers/has_key_test.rb +0 -55
- data/test/unit/parameter_matchers/has_value_test.rb +0 -57
- data/test/unit/parameter_matchers/includes_test.rb +0 -44
- data/test/unit/parameter_matchers/instance_of_test.rb +0 -25
- data/test/unit/parameter_matchers/is_a_test.rb +0 -25
- data/test/unit/parameter_matchers/kind_of_test.rb +0 -25
- data/test/unit/parameter_matchers/not_test.rb +0 -26
- data/test/unit/parameter_matchers/regexp_matches_test.rb +0 -46
- data/test/unit/parameter_matchers/responds_with_test.rb +0 -25
- data/test/unit/parameter_matchers/stub_matcher.rb +0 -27
- data/test/unit/parameter_matchers/yaml_equivalent_test.rb +0 -25
- data/test/unit/parameters_matcher_test.rb +0 -121
- data/test/unit/return_values_test.rb +0 -63
- data/test/unit/sequence_test.rb +0 -104
- data/test/unit/single_return_value_test.rb +0 -14
- data/test/unit/single_yield_test.rb +0 -18
- data/test/unit/state_machine_test.rb +0 -98
- data/test/unit/string_inspect_test.rb +0 -11
- data/test/unit/thrower_test.rb +0 -20
- data/test/unit/yield_parameters_test.rb +0 -93
@@ -1,52 +0,0 @@
|
|
1
|
-
require File.expand_path('../acceptance_test_helper', __FILE__)
|
2
|
-
require 'mocha'
|
3
|
-
|
4
|
-
class StubTest < Test::Unit::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_build_stub_and_explicitly_add_an_expectation
|
17
|
-
test_result = run_as_test do
|
18
|
-
foo = stub()
|
19
|
-
foo.stubs(:bar)
|
20
|
-
foo.bar
|
21
|
-
end
|
22
|
-
assert_passed(test_result)
|
23
|
-
end
|
24
|
-
|
25
|
-
def test_should_build_named_stub_and_explicitly_add_an_expectation
|
26
|
-
test_result = run_as_test do
|
27
|
-
foo = stub('foo')
|
28
|
-
foo.stubs(:bar)
|
29
|
-
foo.bar
|
30
|
-
end
|
31
|
-
assert_passed(test_result)
|
32
|
-
end
|
33
|
-
|
34
|
-
def test_should_build_stub_incorporating_two_expectations
|
35
|
-
test_result = run_as_test do
|
36
|
-
foo = stub(:bar => 'bar', :baz => 'baz')
|
37
|
-
foo.bar
|
38
|
-
foo.baz
|
39
|
-
end
|
40
|
-
assert_passed(test_result)
|
41
|
-
end
|
42
|
-
|
43
|
-
def test_should_build_named_stub_incorporating_two_expectations
|
44
|
-
test_result = run_as_test do
|
45
|
-
foo = stub('foo', :bar => 'bar', :baz => 'baz')
|
46
|
-
foo.bar
|
47
|
-
foo.baz
|
48
|
-
end
|
49
|
-
assert_passed(test_result)
|
50
|
-
end
|
51
|
-
|
52
|
-
end
|
@@ -1,102 +0,0 @@
|
|
1
|
-
require File.expand_path('../../test_helper', __FILE__)
|
2
|
-
require 'mocha'
|
3
|
-
|
4
|
-
class Widget
|
5
|
-
|
6
|
-
def model
|
7
|
-
'original_model'
|
8
|
-
end
|
9
|
-
|
10
|
-
class << self
|
11
|
-
|
12
|
-
def find(options)
|
13
|
-
[]
|
14
|
-
end
|
15
|
-
|
16
|
-
def create(attributes)
|
17
|
-
Widget.new
|
18
|
-
end
|
19
|
-
|
20
|
-
end
|
21
|
-
|
22
|
-
end
|
23
|
-
|
24
|
-
module Thingy
|
25
|
-
|
26
|
-
def self.wotsit
|
27
|
-
:hoojamaflip
|
28
|
-
end
|
29
|
-
|
30
|
-
end
|
31
|
-
|
32
|
-
class StubbaExampleTest < Test::Unit::TestCase
|
33
|
-
|
34
|
-
def test_should_stub_instance_method
|
35
|
-
widget = Widget.new
|
36
|
-
widget.expects(:model).returns('different_model')
|
37
|
-
assert_equal 'different_model', widget.model
|
38
|
-
end
|
39
|
-
|
40
|
-
def test_should_stub_module_method
|
41
|
-
should_stub_module_method
|
42
|
-
end
|
43
|
-
|
44
|
-
def test_should_stub_module_method_again
|
45
|
-
should_stub_module_method
|
46
|
-
end
|
47
|
-
|
48
|
-
def test_should_stub_class_method
|
49
|
-
should_stub_class_method
|
50
|
-
end
|
51
|
-
|
52
|
-
def test_should_stub_class_method_again
|
53
|
-
should_stub_class_method
|
54
|
-
end
|
55
|
-
|
56
|
-
def test_should_stub_instance_method_on_any_instance_of_a_class
|
57
|
-
should_stub_instance_method_on_any_instance_of_a_class
|
58
|
-
end
|
59
|
-
|
60
|
-
def test_should_stub_instance_method_on_any_instance_of_a_class_again
|
61
|
-
should_stub_instance_method_on_any_instance_of_a_class
|
62
|
-
end
|
63
|
-
|
64
|
-
def test_should_stub_two_different_class_methods
|
65
|
-
should_stub_two_different_class_methods
|
66
|
-
end
|
67
|
-
|
68
|
-
def test_should_stub_two_different_class_methods_again
|
69
|
-
should_stub_two_different_class_methods
|
70
|
-
end
|
71
|
-
|
72
|
-
private
|
73
|
-
|
74
|
-
def should_stub_module_method
|
75
|
-
Thingy.expects(:wotsit).returns(:dooda)
|
76
|
-
assert_equal :dooda, Thingy.wotsit
|
77
|
-
end
|
78
|
-
|
79
|
-
def should_stub_class_method
|
80
|
-
widgets = [Widget.new]
|
81
|
-
Widget.expects(:find).with(:all).returns(widgets)
|
82
|
-
assert_equal widgets, Widget.find(:all)
|
83
|
-
end
|
84
|
-
|
85
|
-
def should_stub_two_different_class_methods
|
86
|
-
found_widgets = [Widget.new]
|
87
|
-
created_widget = Widget.new
|
88
|
-
Widget.expects(:find).with(:all).returns(found_widgets)
|
89
|
-
Widget.expects(:create).with(:model => 'wombat').returns(created_widget)
|
90
|
-
assert_equal found_widgets, Widget.find(:all)
|
91
|
-
assert_equal created_widget, Widget.create(:model => 'wombat')
|
92
|
-
end
|
93
|
-
|
94
|
-
def should_stub_instance_method_on_any_instance_of_a_class
|
95
|
-
Widget.any_instance.expects(:model).at_least_once.returns('another_model')
|
96
|
-
widget_1 = Widget.new
|
97
|
-
widget_2 = Widget.new
|
98
|
-
assert_equal 'another_model', widget_1.model
|
99
|
-
assert_equal 'another_model', widget_2.model
|
100
|
-
end
|
101
|
-
|
102
|
-
end
|
@@ -1,15 +0,0 @@
|
|
1
|
-
require File.expand_path('../../test_helper', __FILE__)
|
2
|
-
require 'deprecation_disabler'
|
3
|
-
|
4
|
-
class StubbaTest < Test::Unit::TestCase
|
5
|
-
|
6
|
-
include DeprecationDisabler
|
7
|
-
|
8
|
-
def test_should_report_deprecation_of_stubba_which_will_be_removed_in_a_future_release
|
9
|
-
disable_deprecations do
|
10
|
-
load 'stubba.rb'
|
11
|
-
end
|
12
|
-
assert Mocha::Deprecation.messages.include?("require 'stubba' is no longer needed and stubba.rb will soon be removed")
|
13
|
-
end
|
14
|
-
|
15
|
-
end
|
@@ -1,66 +0,0 @@
|
|
1
|
-
require File.expand_path('../acceptance_test_helper', __FILE__)
|
2
|
-
require 'mocha'
|
3
|
-
require 'execution_point'
|
4
|
-
|
5
|
-
class StubbaTestResultTest < Test::Unit::TestCase
|
6
|
-
|
7
|
-
include AcceptanceTest
|
8
|
-
|
9
|
-
def setup
|
10
|
-
setup_acceptance_test
|
11
|
-
end
|
12
|
-
|
13
|
-
def teardown
|
14
|
-
teardown_acceptance_test
|
15
|
-
end
|
16
|
-
|
17
|
-
def test_should_include_expectation_verification_in_assertion_count
|
18
|
-
test_result = run_as_test do
|
19
|
-
object = Class.new { def message; end }.new
|
20
|
-
object.expects(:message)
|
21
|
-
object.message
|
22
|
-
end
|
23
|
-
assert_equal 1, test_result.assertion_count
|
24
|
-
end
|
25
|
-
|
26
|
-
def test_should_include_assertions_in_assertion_count
|
27
|
-
test_result = run_as_test do
|
28
|
-
assert true
|
29
|
-
end
|
30
|
-
assert_equal 1, test_result.assertion_count
|
31
|
-
end
|
32
|
-
|
33
|
-
def test_should_not_include_stubbing_expectation_verification_in_assertion_count
|
34
|
-
test_result = run_as_test do
|
35
|
-
object = Class.new { def message; end }.new
|
36
|
-
object.stubs(:message)
|
37
|
-
object.message
|
38
|
-
end
|
39
|
-
assert_equal 0, test_result.assertion_count
|
40
|
-
end
|
41
|
-
|
42
|
-
def test_should_include_expectation_verification_failure_in_failure_count
|
43
|
-
test_result = run_as_test do
|
44
|
-
object = Class.new { def message; end }.new
|
45
|
-
object.expects(:message)
|
46
|
-
end
|
47
|
-
assert_equal 1, test_result.failure_count
|
48
|
-
end
|
49
|
-
|
50
|
-
def test_should_include_assertion_failure_in_failure_count
|
51
|
-
test_result = run_as_test do
|
52
|
-
flunk
|
53
|
-
end
|
54
|
-
assert_equal 1, test_result.failure_count
|
55
|
-
end
|
56
|
-
|
57
|
-
def test_should_display_backtrace_indicating_line_number_where_failing_assertion_was_called
|
58
|
-
execution_point = nil
|
59
|
-
test_result = run_as_test do
|
60
|
-
execution_point = ExecutionPoint.current; flunk
|
61
|
-
end
|
62
|
-
assert_equal 1, test_result.failure_count
|
63
|
-
assert_equal execution_point, ExecutionPoint.new(test_result.failures[0].location)
|
64
|
-
end
|
65
|
-
|
66
|
-
end
|
@@ -1,64 +0,0 @@
|
|
1
|
-
require File.expand_path('../acceptance_test_helper', __FILE__)
|
2
|
-
require 'mocha'
|
3
|
-
require 'execution_point'
|
4
|
-
|
5
|
-
class StubbingErrorBacktraceTest < Test::Unit::TestCase
|
6
|
-
|
7
|
-
include AcceptanceTest
|
8
|
-
|
9
|
-
def setup
|
10
|
-
setup_acceptance_test
|
11
|
-
end
|
12
|
-
|
13
|
-
def teardown
|
14
|
-
teardown_acceptance_test
|
15
|
-
end
|
16
|
-
|
17
|
-
def test_should_display_backtrace_indicating_line_number_where_attempt_to_stub_non_existent_method_was_made
|
18
|
-
execution_point = nil
|
19
|
-
object = Object.new
|
20
|
-
Mocha::Configuration.prevent(:stubbing_non_existent_method)
|
21
|
-
test_result = run_as_test do
|
22
|
-
execution_point = ExecutionPoint.current; object.stubs(:non_existent_method)
|
23
|
-
end
|
24
|
-
assert_equal 1, test_result.error_count
|
25
|
-
assert_equal execution_point, ExecutionPoint.new(test_result.errors[0].exception.backtrace)
|
26
|
-
end
|
27
|
-
|
28
|
-
def test_should_display_backtrace_indicating_line_number_where_attempt_to_stub_non_public_method_was_made
|
29
|
-
execution_point = nil
|
30
|
-
object = Class.new do
|
31
|
-
def non_public_method; end
|
32
|
-
private :non_public_method
|
33
|
-
end.new
|
34
|
-
Mocha::Configuration.prevent(:stubbing_non_public_method)
|
35
|
-
test_result = run_as_test do
|
36
|
-
execution_point = ExecutionPoint.current; object.stubs(:non_public_method)
|
37
|
-
end
|
38
|
-
assert_equal 1, test_result.error_count
|
39
|
-
assert_equal execution_point, ExecutionPoint.new(test_result.errors[0].exception.backtrace)
|
40
|
-
end
|
41
|
-
|
42
|
-
def test_should_display_backtrace_indicating_line_number_where_attempt_to_stub_method_on_non_mock_object_was_made
|
43
|
-
execution_point = nil
|
44
|
-
object = Object.new
|
45
|
-
Mocha::Configuration.prevent(:stubbing_method_on_non_mock_object)
|
46
|
-
test_result = run_as_test do
|
47
|
-
execution_point = ExecutionPoint.current; object.stubs(:any_method)
|
48
|
-
end
|
49
|
-
assert_equal 1, test_result.error_count
|
50
|
-
assert_equal execution_point, ExecutionPoint.new(test_result.errors[0].exception.backtrace)
|
51
|
-
end
|
52
|
-
|
53
|
-
def test_should_display_backtrace_indicating_line_number_where_method_was_unnecessarily_stubbed
|
54
|
-
execution_point = nil
|
55
|
-
object = Object.new
|
56
|
-
Mocha::Configuration.prevent(:stubbing_method_unnecessarily)
|
57
|
-
test_result = run_as_test do
|
58
|
-
execution_point = ExecutionPoint.current; object.stubs(:unused_method)
|
59
|
-
end
|
60
|
-
assert_equal 1, test_result.error_count
|
61
|
-
assert_equal execution_point, ExecutionPoint.new(test_result.errors[0].exception.backtrace)
|
62
|
-
end
|
63
|
-
|
64
|
-
end
|
@@ -1,65 +0,0 @@
|
|
1
|
-
require File.expand_path('../acceptance_test_helper', __FILE__)
|
2
|
-
require 'mocha'
|
3
|
-
|
4
|
-
class StubbingMethodUnnecessarilyTest < Test::Unit::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_allow_stubbing_method_unnecessarily
|
17
|
-
Mocha::Configuration.allow(:stubbing_method_unnecessarily)
|
18
|
-
test_result = run_as_test do
|
19
|
-
mock = mock('mock')
|
20
|
-
mock.stubs(:public_method)
|
21
|
-
end
|
22
|
-
assert_passed(test_result)
|
23
|
-
assert !@logger.warnings.include?('stubbing method unnecessarily: #<Mock:mock>.public_method(any_parameters)')
|
24
|
-
end
|
25
|
-
|
26
|
-
def test_should_warn_when_stubbing_method_unnecessarily
|
27
|
-
Mocha::Configuration.warn_when(:stubbing_method_unnecessarily)
|
28
|
-
test_result = run_as_test do
|
29
|
-
mock = mock('mock')
|
30
|
-
mock.stubs(:public_method)
|
31
|
-
end
|
32
|
-
assert_passed(test_result)
|
33
|
-
assert @logger.warnings.include?('stubbing method unnecessarily: #<Mock:mock>.public_method(any_parameters)')
|
34
|
-
end
|
35
|
-
|
36
|
-
def test_should_prevent_stubbing_method_unnecessarily
|
37
|
-
Mocha::Configuration.prevent(:stubbing_method_unnecessarily)
|
38
|
-
test_result = run_as_test do
|
39
|
-
mock = mock('mock')
|
40
|
-
mock.stubs(:public_method)
|
41
|
-
end
|
42
|
-
assert_failed(test_result)
|
43
|
-
assert test_result.error_messages.include?('Mocha::StubbingError: stubbing method unnecessarily: #<Mock:mock>.public_method(any_parameters)')
|
44
|
-
end
|
45
|
-
|
46
|
-
def test_should_default_to_allow_stubbing_method_unnecessarily
|
47
|
-
test_result = run_as_test do
|
48
|
-
mock = mock('mock')
|
49
|
-
mock.stubs(:public_method)
|
50
|
-
end
|
51
|
-
assert_passed(test_result)
|
52
|
-
assert !@logger.warnings.include?('stubbing method unnecessarily: #<Mock:mock>.public_method(any_parameters)')
|
53
|
-
end
|
54
|
-
|
55
|
-
def test_should_allow_stubbing_method_when_stubbed_method_is_invoked
|
56
|
-
Mocha::Configuration.prevent(:stubbing_method_unnecessarily)
|
57
|
-
test_result = run_as_test do
|
58
|
-
mock = mock('mock')
|
59
|
-
mock.stubs(:public_method)
|
60
|
-
mock.public_method
|
61
|
-
end
|
62
|
-
assert_passed(test_result)
|
63
|
-
end
|
64
|
-
|
65
|
-
end
|
@@ -1,130 +0,0 @@
|
|
1
|
-
require File.expand_path('../acceptance_test_helper', __FILE__)
|
2
|
-
require 'mocha'
|
3
|
-
|
4
|
-
class StubbingNonExistentAnyInstanceMethodTest < Test::Unit::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_allow_stubbing_non_existent_any_instance_method
|
17
|
-
Mocha::Configuration.allow(:stubbing_non_existent_method)
|
18
|
-
klass = Class.new
|
19
|
-
test_result = run_as_test do
|
20
|
-
klass.any_instance.stubs(:non_existent_method)
|
21
|
-
end
|
22
|
-
assert !@logger.warnings.include?("stubbing non-existent method: #{klass.any_instance.mocha_inspect}.non_existent_method")
|
23
|
-
assert_passed(test_result)
|
24
|
-
end
|
25
|
-
|
26
|
-
def test_should_warn_when_stubbing_non_existent_any_instance_method
|
27
|
-
Mocha::Configuration.warn_when(:stubbing_non_existent_method)
|
28
|
-
klass = Class.new
|
29
|
-
test_result = run_as_test do
|
30
|
-
klass.any_instance.stubs(:non_existent_method)
|
31
|
-
end
|
32
|
-
assert_passed(test_result)
|
33
|
-
assert @logger.warnings.include?("stubbing non-existent method: #{klass.any_instance.mocha_inspect}.non_existent_method")
|
34
|
-
end
|
35
|
-
|
36
|
-
def test_should_prevent_stubbing_non_existent_any_instance_method
|
37
|
-
Mocha::Configuration.prevent(:stubbing_non_existent_method)
|
38
|
-
klass = Class.new
|
39
|
-
test_result = run_as_test do
|
40
|
-
klass.any_instance.stubs(:non_existent_method)
|
41
|
-
end
|
42
|
-
assert_failed(test_result)
|
43
|
-
assert test_result.error_messages.include?("Mocha::StubbingError: stubbing non-existent method: #{klass.any_instance.mocha_inspect}.non_existent_method")
|
44
|
-
end
|
45
|
-
|
46
|
-
def test_should_default_to_allow_stubbing_non_existent_any_instance_method
|
47
|
-
klass = Class.new
|
48
|
-
test_result = run_as_test do
|
49
|
-
klass.any_instance.stubs(:non_existent_method)
|
50
|
-
end
|
51
|
-
assert !@logger.warnings.include?("stubbing non-existent method: #{klass.any_instance.mocha_inspect}.non_existent_method")
|
52
|
-
assert_passed(test_result)
|
53
|
-
end
|
54
|
-
|
55
|
-
def test_should_allow_stubbing_existing_public_any_instance_method
|
56
|
-
Mocha::Configuration.prevent(:stubbing_non_existent_method)
|
57
|
-
klass = Class.new do
|
58
|
-
def existing_public_method; end
|
59
|
-
public :existing_public_method
|
60
|
-
end
|
61
|
-
test_result = run_as_test do
|
62
|
-
klass.any_instance.stubs(:existing_public_method)
|
63
|
-
end
|
64
|
-
assert_passed(test_result)
|
65
|
-
end
|
66
|
-
|
67
|
-
def test_should_allow_stubbing_existing_protected_any_instance_method
|
68
|
-
Mocha::Configuration.prevent(:stubbing_non_existent_method)
|
69
|
-
klass = Class.new do
|
70
|
-
def existing_protected_method; end
|
71
|
-
protected :existing_protected_method
|
72
|
-
end
|
73
|
-
test_result = run_as_test do
|
74
|
-
klass.any_instance.stubs(:existing_protected_method)
|
75
|
-
end
|
76
|
-
assert_passed(test_result)
|
77
|
-
end
|
78
|
-
|
79
|
-
def test_should_allow_stubbing_existing_private_any_instance_method
|
80
|
-
Mocha::Configuration.prevent(:stubbing_non_existent_method)
|
81
|
-
klass = Class.new do
|
82
|
-
def existing_private_method; end
|
83
|
-
private :existing_private_method
|
84
|
-
end
|
85
|
-
test_result = run_as_test do
|
86
|
-
klass.any_instance.stubs(:existing_private_method)
|
87
|
-
end
|
88
|
-
assert_passed(test_result)
|
89
|
-
end
|
90
|
-
|
91
|
-
def test_should_allow_stubbing_existing_public_any_instance_superclass_method
|
92
|
-
Mocha::Configuration.prevent(:stubbing_non_existent_method)
|
93
|
-
superklass = Class.new do
|
94
|
-
def existing_public_method; end
|
95
|
-
public :existing_public_method
|
96
|
-
end
|
97
|
-
klass = Class.new(superklass)
|
98
|
-
test_result = run_as_test do
|
99
|
-
klass.any_instance.stubs(:existing_public_method)
|
100
|
-
end
|
101
|
-
assert_passed(test_result)
|
102
|
-
end
|
103
|
-
|
104
|
-
def test_should_allow_stubbing_existing_protected_any_instance_superclass_method
|
105
|
-
Mocha::Configuration.prevent(:stubbing_non_existent_method)
|
106
|
-
superklass = Class.new do
|
107
|
-
def existing_protected_method; end
|
108
|
-
protected :existing_protected_method
|
109
|
-
end
|
110
|
-
klass = Class.new(superklass)
|
111
|
-
test_result = run_as_test do
|
112
|
-
klass.any_instance.stubs(:existing_protected_method)
|
113
|
-
end
|
114
|
-
assert_passed(test_result)
|
115
|
-
end
|
116
|
-
|
117
|
-
def test_should_allow_stubbing_existing_private_any_instance_superclass_method
|
118
|
-
Mocha::Configuration.prevent(:stubbing_non_existent_method)
|
119
|
-
superklass = Class.new do
|
120
|
-
def existing_private_method; end
|
121
|
-
private :existing_private_method
|
122
|
-
end
|
123
|
-
klass = Class.new(superklass)
|
124
|
-
test_result = run_as_test do
|
125
|
-
klass.any_instance.stubs(:existing_private_method)
|
126
|
-
end
|
127
|
-
assert_passed(test_result)
|
128
|
-
end
|
129
|
-
|
130
|
-
end
|
@@ -1,157 +0,0 @@
|
|
1
|
-
require File.expand_path('../acceptance_test_helper', __FILE__)
|
2
|
-
require 'mocha'
|
3
|
-
|
4
|
-
class StubbingNonExistentClassMethodTest < Test::Unit::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_allow_stubbing_non_existent_class_method
|
17
|
-
Mocha::Configuration.allow(:stubbing_non_existent_method)
|
18
|
-
klass = Class.new
|
19
|
-
test_result = run_as_test do
|
20
|
-
klass.stubs(:non_existent_method)
|
21
|
-
end
|
22
|
-
assert !@logger.warnings.include?("stubbing non-existent method: #{klass.mocha_inspect}.non_existent_method")
|
23
|
-
assert_passed(test_result)
|
24
|
-
end
|
25
|
-
|
26
|
-
def test_should_warn_when_stubbing_non_existent_class_method
|
27
|
-
Mocha::Configuration.warn_when(:stubbing_non_existent_method)
|
28
|
-
klass = Class.new
|
29
|
-
test_result = run_as_test do
|
30
|
-
klass.stubs(:non_existent_method)
|
31
|
-
end
|
32
|
-
assert_passed(test_result)
|
33
|
-
assert @logger.warnings.include?("stubbing non-existent method: #{klass.mocha_inspect}.non_existent_method")
|
34
|
-
end
|
35
|
-
|
36
|
-
def test_should_prevent_stubbing_non_existent_class_method
|
37
|
-
Mocha::Configuration.prevent(:stubbing_non_existent_method)
|
38
|
-
klass = Class.new
|
39
|
-
test_result = run_as_test do
|
40
|
-
klass.stubs(:non_existent_method)
|
41
|
-
end
|
42
|
-
assert_failed(test_result)
|
43
|
-
assert test_result.error_messages.include?("Mocha::StubbingError: stubbing non-existent method: #{klass.mocha_inspect}.non_existent_method")
|
44
|
-
end
|
45
|
-
|
46
|
-
def test_should_default_to_allow_stubbing_non_existent_class_method
|
47
|
-
klass = Class.new
|
48
|
-
test_result = run_as_test do
|
49
|
-
klass.stubs(:non_existent_method)
|
50
|
-
end
|
51
|
-
assert !@logger.warnings.include?("stubbing non-existent method: #{klass.mocha_inspect}.non_existent_method")
|
52
|
-
assert_passed(test_result)
|
53
|
-
end
|
54
|
-
|
55
|
-
def test_should_allow_stubbing_existing_public_class_method
|
56
|
-
Mocha::Configuration.prevent(:stubbing_non_existent_method)
|
57
|
-
klass = Class.new do
|
58
|
-
class << self
|
59
|
-
def existing_public_method; end
|
60
|
-
public :existing_public_method
|
61
|
-
end
|
62
|
-
end
|
63
|
-
test_result = run_as_test do
|
64
|
-
klass.stubs(:existing_public_method)
|
65
|
-
end
|
66
|
-
assert_passed(test_result)
|
67
|
-
end
|
68
|
-
|
69
|
-
def test_should_allow_stubbing_method_to_which_class_responds
|
70
|
-
Mocha::Configuration.prevent(:stubbing_non_existent_method)
|
71
|
-
klass = Class.new do
|
72
|
-
class << self
|
73
|
-
def respond_to?(method, include_private = false)
|
74
|
-
(method == :method_to_which_class_responds)
|
75
|
-
end
|
76
|
-
end
|
77
|
-
end
|
78
|
-
test_result = run_as_test do
|
79
|
-
klass.stubs(:method_to_which_class_responds)
|
80
|
-
end
|
81
|
-
assert_passed(test_result)
|
82
|
-
end
|
83
|
-
|
84
|
-
def test_should_allow_stubbing_existing_protected_class_method
|
85
|
-
Mocha::Configuration.prevent(:stubbing_non_existent_method)
|
86
|
-
klass = Class.new do
|
87
|
-
class << self
|
88
|
-
def existing_protected_method; end
|
89
|
-
protected :existing_protected_method
|
90
|
-
end
|
91
|
-
end
|
92
|
-
test_result = run_as_test do
|
93
|
-
klass.stubs(:existing_protected_method)
|
94
|
-
end
|
95
|
-
assert_passed(test_result)
|
96
|
-
end
|
97
|
-
|
98
|
-
def test_should_allow_stubbing_existing_private_class_method
|
99
|
-
Mocha::Configuration.prevent(:stubbing_non_existent_method)
|
100
|
-
klass = Class.new do
|
101
|
-
class << self
|
102
|
-
def existing_private_method; end
|
103
|
-
private :existing_private_method
|
104
|
-
end
|
105
|
-
end
|
106
|
-
test_result = run_as_test do
|
107
|
-
klass.stubs(:existing_private_method)
|
108
|
-
end
|
109
|
-
assert_passed(test_result)
|
110
|
-
end
|
111
|
-
|
112
|
-
def test_should_allow_stubbing_existing_public_superclass_method
|
113
|
-
Mocha::Configuration.prevent(:stubbing_non_existent_method)
|
114
|
-
superklass = Class.new do
|
115
|
-
class << self
|
116
|
-
def existing_public_method; end
|
117
|
-
public :existing_public_method
|
118
|
-
end
|
119
|
-
end
|
120
|
-
klass = Class.new(superklass)
|
121
|
-
test_result = run_as_test do
|
122
|
-
klass.stubs(:existing_public_method)
|
123
|
-
end
|
124
|
-
assert_passed(test_result)
|
125
|
-
end
|
126
|
-
|
127
|
-
def test_should_allow_stubbing_existing_protected_superclass_method
|
128
|
-
Mocha::Configuration.prevent(:stubbing_non_existent_method)
|
129
|
-
superklass = Class.new do
|
130
|
-
class << self
|
131
|
-
def existing_protected_method; end
|
132
|
-
protected :existing_protected_method
|
133
|
-
end
|
134
|
-
end
|
135
|
-
klass = Class.new(superklass)
|
136
|
-
test_result = run_as_test do
|
137
|
-
klass.stubs(:existing_protected_method)
|
138
|
-
end
|
139
|
-
assert_passed(test_result)
|
140
|
-
end
|
141
|
-
|
142
|
-
def test_should_allow_stubbing_existing_private_superclass_method
|
143
|
-
Mocha::Configuration.prevent(:stubbing_non_existent_method)
|
144
|
-
superklass = Class.new do
|
145
|
-
class << self
|
146
|
-
def existing_private_method; end
|
147
|
-
protected :existing_private_method
|
148
|
-
end
|
149
|
-
end
|
150
|
-
klass = Class.new(superklass)
|
151
|
-
test_result = run_as_test do
|
152
|
-
klass.stubs(:existing_private_method)
|
153
|
-
end
|
154
|
-
assert_passed(test_result)
|
155
|
-
end
|
156
|
-
|
157
|
-
end
|