floehopper-mocha 0.9.3.20081220175348
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/COPYING +3 -0
- data/MIT-LICENSE +7 -0
- data/README +35 -0
- data/RELEASE +257 -0
- data/Rakefile +199 -0
- data/examples/misc.rb +44 -0
- data/examples/mocha.rb +26 -0
- data/examples/stubba.rb +65 -0
- data/lib/mocha/any_instance_method.rb +54 -0
- data/lib/mocha/argument_iterator.rb +21 -0
- data/lib/mocha/backtrace_filter.rb +17 -0
- data/lib/mocha/cardinality.rb +95 -0
- data/lib/mocha/central.rb +27 -0
- data/lib/mocha/change_state_side_effect.rb +19 -0
- data/lib/mocha/class_method.rb +86 -0
- data/lib/mocha/configuration.rb +60 -0
- data/lib/mocha/deprecation.rb +22 -0
- data/lib/mocha/exception_raiser.rb +17 -0
- data/lib/mocha/expectation.rb +451 -0
- data/lib/mocha/expectation_error.rb +15 -0
- data/lib/mocha/expectation_list.rb +50 -0
- data/lib/mocha/in_state_ordering_constraint.rb +19 -0
- data/lib/mocha/inspect.rb +67 -0
- data/lib/mocha/instance_method.rb +16 -0
- data/lib/mocha/is_a.rb +9 -0
- data/lib/mocha/logger.rb +15 -0
- data/lib/mocha/metaclass.rb +13 -0
- data/lib/mocha/method_matcher.rb +21 -0
- data/lib/mocha/mini_test_adapter.rb +50 -0
- data/lib/mocha/mock.rb +200 -0
- data/lib/mocha/mockery.rb +181 -0
- data/lib/mocha/module_method.rb +16 -0
- data/lib/mocha/multiple_yields.rb +20 -0
- data/lib/mocha/names.rb +53 -0
- data/lib/mocha/no_yields.rb +11 -0
- data/lib/mocha/object.rb +187 -0
- data/lib/mocha/parameter_matchers/all_of.rb +42 -0
- data/lib/mocha/parameter_matchers/any_of.rb +47 -0
- data/lib/mocha/parameter_matchers/any_parameters.rb +40 -0
- data/lib/mocha/parameter_matchers/anything.rb +33 -0
- data/lib/mocha/parameter_matchers/base.rb +15 -0
- data/lib/mocha/parameter_matchers/equals.rb +42 -0
- data/lib/mocha/parameter_matchers/has_entries.rb +45 -0
- data/lib/mocha/parameter_matchers/has_entry.rb +56 -0
- data/lib/mocha/parameter_matchers/has_key.rb +42 -0
- data/lib/mocha/parameter_matchers/has_value.rb +42 -0
- data/lib/mocha/parameter_matchers/includes.rb +40 -0
- data/lib/mocha/parameter_matchers/instance_of.rb +42 -0
- data/lib/mocha/parameter_matchers/is_a.rb +42 -0
- data/lib/mocha/parameter_matchers/kind_of.rb +42 -0
- data/lib/mocha/parameter_matchers/not.rb +42 -0
- data/lib/mocha/parameter_matchers/object.rb +15 -0
- data/lib/mocha/parameter_matchers/optionally.rb +55 -0
- data/lib/mocha/parameter_matchers/regexp_matches.rb +43 -0
- data/lib/mocha/parameter_matchers/responds_with.rb +43 -0
- data/lib/mocha/parameter_matchers/yaml_equivalent.rb +43 -0
- data/lib/mocha/parameter_matchers.rb +27 -0
- data/lib/mocha/parameters_matcher.rb +37 -0
- data/lib/mocha/pretty_parameters.rb +28 -0
- data/lib/mocha/return_values.rb +31 -0
- data/lib/mocha/sequence.rb +42 -0
- data/lib/mocha/single_return_value.rb +17 -0
- data/lib/mocha/single_yield.rb +18 -0
- data/lib/mocha/standalone.rb +166 -0
- data/lib/mocha/state_machine.rb +91 -0
- data/lib/mocha/stubbing_error.rb +16 -0
- data/lib/mocha/test_case_adapter.rb +103 -0
- data/lib/mocha/unexpected_invocation.rb +18 -0
- data/lib/mocha/yield_parameters.rb +31 -0
- data/lib/mocha.rb +47 -0
- data/lib/mocha_standalone.rb +2 -0
- data/lib/stubba.rb +4 -0
- data/test/acceptance/acceptance_test_helper.rb +38 -0
- data/test/acceptance/bug_18914_test.rb +43 -0
- data/test/acceptance/bug_21465_test.rb +34 -0
- data/test/acceptance/bug_21563_test.rb +25 -0
- data/test/acceptance/expected_invocation_count_test.rb +196 -0
- data/test/acceptance/failure_messages_test.rb +64 -0
- data/test/acceptance/minitest_test.rb +130 -0
- data/test/acceptance/mocha_example_test.rb +98 -0
- data/test/acceptance/mocha_test_result_test.rb +84 -0
- data/test/acceptance/mock_test.rb +100 -0
- data/test/acceptance/mock_with_initializer_block_test.rb +51 -0
- data/test/acceptance/mocked_methods_dispatch_test.rb +78 -0
- data/test/acceptance/optional_parameters_test.rb +70 -0
- data/test/acceptance/parameter_matcher_test.rb +209 -0
- data/test/acceptance/partial_mocks_test.rb +47 -0
- data/test/acceptance/return_value_test.rb +52 -0
- data/test/acceptance/sequence_test.rb +186 -0
- data/test/acceptance/standalone_test.rb +139 -0
- data/test/acceptance/states_test.rb +70 -0
- data/test/acceptance/stub_any_instance_method_test.rb +195 -0
- data/test/acceptance/stub_class_method_test.rb +203 -0
- data/test/acceptance/stub_everything_test.rb +56 -0
- data/test/acceptance/stub_instance_method_test.rb +203 -0
- data/test/acceptance/stub_module_method_test.rb +163 -0
- data/test/acceptance/stub_test.rb +52 -0
- data/test/acceptance/stubba_example_test.rb +102 -0
- data/test/acceptance/stubba_test.rb +15 -0
- data/test/acceptance/stubba_test_result_test.rb +66 -0
- data/test/acceptance/stubbing_error_backtrace_test.rb +64 -0
- data/test/acceptance/stubbing_method_unnecessarily_test.rb +65 -0
- data/test/acceptance/stubbing_non_existent_any_instance_method_test.rb +130 -0
- data/test/acceptance/stubbing_non_existent_class_method_test.rb +157 -0
- data/test/acceptance/stubbing_non_existent_instance_method_test.rb +147 -0
- data/test/acceptance/stubbing_non_public_any_instance_method_test.rb +130 -0
- data/test/acceptance/stubbing_non_public_class_method_test.rb +163 -0
- data/test/acceptance/stubbing_non_public_instance_method_test.rb +143 -0
- data/test/acceptance/stubbing_on_non_mock_object_test.rb +64 -0
- data/test/deprecation_disabler.rb +15 -0
- data/test/execution_point.rb +36 -0
- data/test/method_definer.rb +24 -0
- data/test/simple_counter.rb +13 -0
- data/test/test_helper.rb +11 -0
- data/test/test_runner.rb +33 -0
- data/test/unit/any_instance_method_test.rb +126 -0
- data/test/unit/array_inspect_test.rb +16 -0
- data/test/unit/backtrace_filter_test.rb +19 -0
- data/test/unit/cardinality_test.rb +56 -0
- data/test/unit/central_test.rb +65 -0
- data/test/unit/change_state_side_effect_test.rb +41 -0
- data/test/unit/class_method_test.rb +237 -0
- data/test/unit/date_time_inspect_test.rb +21 -0
- data/test/unit/exception_raiser_test.rb +42 -0
- data/test/unit/expectation_list_test.rb +57 -0
- data/test/unit/expectation_test.rb +459 -0
- data/test/unit/hash_inspect_test.rb +16 -0
- data/test/unit/in_state_ordering_constraint_test.rb +43 -0
- data/test/unit/metaclass_test.rb +22 -0
- data/test/unit/method_matcher_test.rb +23 -0
- data/test/unit/mock_test.rb +295 -0
- data/test/unit/mockery_test.rb +149 -0
- data/test/unit/multiple_yields_test.rb +18 -0
- data/test/unit/no_yields_test.rb +18 -0
- data/test/unit/object_inspect_test.rb +37 -0
- data/test/unit/object_test.rb +82 -0
- data/test/unit/parameter_matchers/all_of_test.rb +26 -0
- data/test/unit/parameter_matchers/any_of_test.rb +26 -0
- data/test/unit/parameter_matchers/anything_test.rb +21 -0
- data/test/unit/parameter_matchers/equals_test.rb +25 -0
- data/test/unit/parameter_matchers/has_entries_test.rb +51 -0
- data/test/unit/parameter_matchers/has_entry_test.rb +62 -0
- data/test/unit/parameter_matchers/has_key_test.rb +36 -0
- data/test/unit/parameter_matchers/has_value_test.rb +37 -0
- data/test/unit/parameter_matchers/includes_test.rb +25 -0
- data/test/unit/parameter_matchers/instance_of_test.rb +25 -0
- data/test/unit/parameter_matchers/is_a_test.rb +25 -0
- data/test/unit/parameter_matchers/kind_of_test.rb +25 -0
- data/test/unit/parameter_matchers/not_test.rb +26 -0
- data/test/unit/parameter_matchers/regexp_matches_test.rb +25 -0
- data/test/unit/parameter_matchers/responds_with_test.rb +25 -0
- data/test/unit/parameter_matchers/stub_matcher.rb +27 -0
- data/test/unit/parameter_matchers/yaml_equivalent_test.rb +25 -0
- data/test/unit/parameters_matcher_test.rb +121 -0
- data/test/unit/return_values_test.rb +63 -0
- data/test/unit/sequence_test.rb +104 -0
- data/test/unit/single_return_value_test.rb +14 -0
- data/test/unit/single_yield_test.rb +18 -0
- data/test/unit/state_machine_test.rb +98 -0
- data/test/unit/string_inspect_test.rb +11 -0
- data/test/unit/yield_parameters_test.rb +93 -0
- metadata +226 -0
@@ -0,0 +1,163 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), "acceptance_test_helper")
|
2
|
+
require 'mocha'
|
3
|
+
|
4
|
+
class StubbingNonPublicClassMethodTest < 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_private_class_method
|
17
|
+
Mocha::Configuration.allow(:stubbing_non_public_method)
|
18
|
+
klass = Class.new do
|
19
|
+
class << self
|
20
|
+
def private_method; end
|
21
|
+
private :private_method
|
22
|
+
end
|
23
|
+
end
|
24
|
+
test_result = run_test do
|
25
|
+
klass.stubs(:private_method)
|
26
|
+
end
|
27
|
+
assert_passed(test_result)
|
28
|
+
assert !@logger.warnings.include?("stubbing non-public method: #{klass}.private_method")
|
29
|
+
end
|
30
|
+
|
31
|
+
def test_should_allow_stubbing_protected_class_method
|
32
|
+
Mocha::Configuration.allow(:stubbing_non_public_method)
|
33
|
+
klass = Class.new do
|
34
|
+
class << self
|
35
|
+
def protected_method; end
|
36
|
+
protected :protected_method
|
37
|
+
end
|
38
|
+
end
|
39
|
+
test_result = run_test do
|
40
|
+
klass.stubs(:protected_method)
|
41
|
+
end
|
42
|
+
assert_passed(test_result)
|
43
|
+
assert !@logger.warnings.include?("stubbing non-public method: #{klass}.protected_method")
|
44
|
+
end
|
45
|
+
|
46
|
+
def test_should_warn_when_stubbing_private_class_method
|
47
|
+
Mocha::Configuration.warn_when(:stubbing_non_public_method)
|
48
|
+
klass = Class.new do
|
49
|
+
class << self
|
50
|
+
def private_method; end
|
51
|
+
private :private_method
|
52
|
+
end
|
53
|
+
end
|
54
|
+
test_result = run_test do
|
55
|
+
klass.stubs(:private_method)
|
56
|
+
end
|
57
|
+
assert_passed(test_result)
|
58
|
+
assert @logger.warnings.include?("stubbing non-public method: #{klass}.private_method")
|
59
|
+
end
|
60
|
+
|
61
|
+
def test_should_warn_when_stubbing_protected_class_method
|
62
|
+
Mocha::Configuration.warn_when(:stubbing_non_public_method)
|
63
|
+
klass = Class.new do
|
64
|
+
class << self
|
65
|
+
def protected_method; end
|
66
|
+
protected :protected_method
|
67
|
+
end
|
68
|
+
end
|
69
|
+
test_result = run_test do
|
70
|
+
klass.stubs(:protected_method)
|
71
|
+
end
|
72
|
+
assert_passed(test_result)
|
73
|
+
assert @logger.warnings.include?("stubbing non-public method: #{klass}.protected_method")
|
74
|
+
end
|
75
|
+
|
76
|
+
def test_should_prevent_stubbing_private_class_method
|
77
|
+
Mocha::Configuration.prevent(:stubbing_non_public_method)
|
78
|
+
klass = Class.new do
|
79
|
+
class << self
|
80
|
+
def private_method; end
|
81
|
+
private :private_method
|
82
|
+
end
|
83
|
+
end
|
84
|
+
test_result = run_test do
|
85
|
+
klass.stubs(:private_method)
|
86
|
+
end
|
87
|
+
assert_failed(test_result)
|
88
|
+
assert test_result.error_messages.include?("Mocha::StubbingError: stubbing non-public method: #{klass}.private_method")
|
89
|
+
end
|
90
|
+
|
91
|
+
def test_should_prevent_stubbing_protected_class_method
|
92
|
+
Mocha::Configuration.prevent(:stubbing_non_public_method)
|
93
|
+
klass = Class.new do
|
94
|
+
class << self
|
95
|
+
def protected_method; end
|
96
|
+
protected :protected_method
|
97
|
+
end
|
98
|
+
end
|
99
|
+
test_result = run_test do
|
100
|
+
klass.stubs(:protected_method)
|
101
|
+
end
|
102
|
+
assert_failed(test_result)
|
103
|
+
assert test_result.error_messages.include?("Mocha::StubbingError: stubbing non-public method: #{klass}.protected_method")
|
104
|
+
end
|
105
|
+
|
106
|
+
def test_should_default_to_allow_stubbing_private_class_method
|
107
|
+
klass = Class.new do
|
108
|
+
class << self
|
109
|
+
def private_method; end
|
110
|
+
private :private_method
|
111
|
+
end
|
112
|
+
end
|
113
|
+
test_result = run_test do
|
114
|
+
klass.stubs(:private_method)
|
115
|
+
end
|
116
|
+
assert_passed(test_result)
|
117
|
+
assert !@logger.warnings.include?("stubbing non-public method: #{klass}.private_method")
|
118
|
+
end
|
119
|
+
|
120
|
+
def test_should_default_to_allow_stubbing_protected_class_method
|
121
|
+
klass = Class.new do
|
122
|
+
class << self
|
123
|
+
def protected_method; end
|
124
|
+
protected :protected_method
|
125
|
+
end
|
126
|
+
end
|
127
|
+
test_result = run_test do
|
128
|
+
klass.stubs(:protected_method)
|
129
|
+
end
|
130
|
+
assert_passed(test_result)
|
131
|
+
assert !@logger.warnings.include?("stubbing non-public method: #{klass}.protected_method")
|
132
|
+
end
|
133
|
+
|
134
|
+
def test_should_allow_stubbing_public_class_method
|
135
|
+
Mocha::Configuration.prevent(:stubbing_non_public_method)
|
136
|
+
klass = Class.new do
|
137
|
+
class << self
|
138
|
+
def public_method; end
|
139
|
+
public :public_method
|
140
|
+
end
|
141
|
+
end
|
142
|
+
test_result = run_test do
|
143
|
+
klass.stubs(:public_method)
|
144
|
+
end
|
145
|
+
assert_passed(test_result)
|
146
|
+
end
|
147
|
+
|
148
|
+
def test_should_allow_stubbing_method_to_which_class_responds
|
149
|
+
Mocha::Configuration.prevent(:stubbing_non_public_method)
|
150
|
+
klass = Class.new do
|
151
|
+
class << self
|
152
|
+
def respond_to?(method, include_private_methods = false)
|
153
|
+
(method == :method_to_which_class_responds)
|
154
|
+
end
|
155
|
+
end
|
156
|
+
end
|
157
|
+
test_result = run_test do
|
158
|
+
klass.stubs(:method_to_which_class_responds)
|
159
|
+
end
|
160
|
+
assert_passed(test_result)
|
161
|
+
end
|
162
|
+
|
163
|
+
end
|
@@ -0,0 +1,143 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), "acceptance_test_helper")
|
2
|
+
require 'mocha'
|
3
|
+
|
4
|
+
class StubbingNonPublicInstanceMethodTest < 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_private_instance_method
|
17
|
+
Mocha::Configuration.allow(:stubbing_non_public_method)
|
18
|
+
instance = Class.new do
|
19
|
+
def private_method; end
|
20
|
+
private :private_method
|
21
|
+
end.new
|
22
|
+
test_result = run_test do
|
23
|
+
instance.stubs(:private_method)
|
24
|
+
end
|
25
|
+
assert_passed(test_result)
|
26
|
+
assert !@logger.warnings.include?("stubbing non-public method: #{instance}.private_method")
|
27
|
+
end
|
28
|
+
|
29
|
+
def test_should_allow_stubbing_protected_instance_method
|
30
|
+
Mocha::Configuration.allow(:stubbing_non_public_method)
|
31
|
+
instance = Class.new do
|
32
|
+
def protected_method; end
|
33
|
+
protected :protected_method
|
34
|
+
end.new
|
35
|
+
test_result = run_test do
|
36
|
+
instance.stubs(:protected_method)
|
37
|
+
end
|
38
|
+
assert_passed(test_result)
|
39
|
+
assert !@logger.warnings.include?("stubbing non-public method: #{instance}.protected_method")
|
40
|
+
end
|
41
|
+
|
42
|
+
def test_should_warn_when_stubbing_private_instance_method
|
43
|
+
Mocha::Configuration.warn_when(:stubbing_non_public_method)
|
44
|
+
instance = Class.new do
|
45
|
+
def private_method; end
|
46
|
+
private :private_method
|
47
|
+
end.new
|
48
|
+
test_result = run_test do
|
49
|
+
instance.stubs(:private_method)
|
50
|
+
end
|
51
|
+
assert_passed(test_result)
|
52
|
+
assert @logger.warnings.include?("stubbing non-public method: #{instance}.private_method")
|
53
|
+
end
|
54
|
+
|
55
|
+
def test_should_warn_when_stubbing_protected_instance_method
|
56
|
+
Mocha::Configuration.warn_when(:stubbing_non_public_method)
|
57
|
+
instance = Class.new do
|
58
|
+
def protected_method; end
|
59
|
+
protected :protected_method
|
60
|
+
end.new
|
61
|
+
test_result = run_test do
|
62
|
+
instance.stubs(:protected_method)
|
63
|
+
end
|
64
|
+
assert_passed(test_result)
|
65
|
+
assert @logger.warnings.include?("stubbing non-public method: #{instance}.protected_method")
|
66
|
+
end
|
67
|
+
|
68
|
+
def test_should_prevent_stubbing_private_instance_method
|
69
|
+
Mocha::Configuration.prevent(:stubbing_non_public_method)
|
70
|
+
instance = Class.new do
|
71
|
+
def private_method; end
|
72
|
+
private :private_method
|
73
|
+
end.new
|
74
|
+
test_result = run_test do
|
75
|
+
instance.stubs(:private_method)
|
76
|
+
end
|
77
|
+
assert_failed(test_result)
|
78
|
+
assert test_result.error_messages.include?("Mocha::StubbingError: stubbing non-public method: #{instance}.private_method")
|
79
|
+
end
|
80
|
+
|
81
|
+
def test_should_prevent_stubbing_protected_instance_method
|
82
|
+
Mocha::Configuration.prevent(:stubbing_non_public_method)
|
83
|
+
instance = Class.new do
|
84
|
+
def protected_method; end
|
85
|
+
protected :protected_method
|
86
|
+
end.new
|
87
|
+
test_result = run_test do
|
88
|
+
instance.stubs(:protected_method)
|
89
|
+
end
|
90
|
+
assert_failed(test_result)
|
91
|
+
assert test_result.error_messages.include?("Mocha::StubbingError: stubbing non-public method: #{instance}.protected_method")
|
92
|
+
end
|
93
|
+
|
94
|
+
def test_should_default_to_allow_stubbing_private_instance_method
|
95
|
+
instance = Class.new do
|
96
|
+
def private_method; end
|
97
|
+
private :private_method
|
98
|
+
end.new
|
99
|
+
test_result = run_test do
|
100
|
+
instance.stubs(:private_method)
|
101
|
+
end
|
102
|
+
assert_passed(test_result)
|
103
|
+
assert !@logger.warnings.include?("stubbing non-public method: #{instance}.private_method")
|
104
|
+
end
|
105
|
+
|
106
|
+
def test_should_default_to_allow_stubbing_protected_instance_method
|
107
|
+
instance = Class.new do
|
108
|
+
def protected_method; end
|
109
|
+
protected :protected_method
|
110
|
+
end.new
|
111
|
+
test_result = run_test do
|
112
|
+
instance.stubs(:protected_method)
|
113
|
+
end
|
114
|
+
assert_passed(test_result)
|
115
|
+
assert !@logger.warnings.include?("stubbing non-public method: #{instance}.protected_method")
|
116
|
+
end
|
117
|
+
|
118
|
+
def test_should_allow_stubbing_public_instance_method
|
119
|
+
Mocha::Configuration.prevent(:stubbing_non_public_method)
|
120
|
+
instance = Class.new do
|
121
|
+
def public_method; end
|
122
|
+
public :public_method
|
123
|
+
end.new
|
124
|
+
test_result = run_test do
|
125
|
+
instance.stubs(:public_method)
|
126
|
+
end
|
127
|
+
assert_passed(test_result)
|
128
|
+
end
|
129
|
+
|
130
|
+
def test_should_allow_stubbing_method_to_which_instance_responds
|
131
|
+
Mocha::Configuration.prevent(:stubbing_non_public_method)
|
132
|
+
instance = Class.new do
|
133
|
+
def respond_to?(method, include_private_methods = false)
|
134
|
+
(method == :method_to_which_instance_responds)
|
135
|
+
end
|
136
|
+
end.new
|
137
|
+
test_result = run_test do
|
138
|
+
instance.stubs(:method_to_which_instance_responds)
|
139
|
+
end
|
140
|
+
assert_passed(test_result)
|
141
|
+
end
|
142
|
+
|
143
|
+
end
|
@@ -0,0 +1,64 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), "acceptance_test_helper")
|
2
|
+
require 'mocha'
|
3
|
+
|
4
|
+
class StubbingOnNonMockObjectTest < 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_on_non_mock_object
|
17
|
+
Mocha::Configuration.allow(:stubbing_method_on_non_mock_object)
|
18
|
+
non_mock_object = Class.new { def existing_method; end }
|
19
|
+
test_result = run_test do
|
20
|
+
non_mock_object.stubs(:existing_method)
|
21
|
+
end
|
22
|
+
assert_passed(test_result)
|
23
|
+
assert !@logger.warnings.include?("stubbing method on non-mock object: #{non_mock_object}.existing_method")
|
24
|
+
end
|
25
|
+
|
26
|
+
def test_should_warn_on_stubbing_method_on_non_mock_object
|
27
|
+
Mocha::Configuration.warn_when(:stubbing_method_on_non_mock_object)
|
28
|
+
non_mock_object = Class.new { def existing_method; end }
|
29
|
+
test_result = run_test do
|
30
|
+
non_mock_object.stubs(:existing_method)
|
31
|
+
end
|
32
|
+
assert_passed(test_result)
|
33
|
+
assert @logger.warnings.include?("stubbing method on non-mock object: #{non_mock_object}.existing_method")
|
34
|
+
end
|
35
|
+
|
36
|
+
def test_should_prevent_stubbing_method_on_non_mock_object
|
37
|
+
Mocha::Configuration.prevent(:stubbing_method_on_non_mock_object)
|
38
|
+
non_mock_object = Class.new { def existing_method; end }
|
39
|
+
test_result = run_test do
|
40
|
+
non_mock_object.stubs(:existing_method)
|
41
|
+
end
|
42
|
+
assert_failed(test_result)
|
43
|
+
assert test_result.error_messages.include?("Mocha::StubbingError: stubbing method on non-mock object: #{non_mock_object}.existing_method")
|
44
|
+
end
|
45
|
+
|
46
|
+
def test_should_default_to_allow_stubbing_method_on_non_mock_object
|
47
|
+
non_mock_object = Class.new { def existing_method; end }
|
48
|
+
test_result = run_test do
|
49
|
+
non_mock_object.stubs(:existing_method)
|
50
|
+
end
|
51
|
+
assert_passed(test_result)
|
52
|
+
assert !@logger.warnings.include?("stubbing method on non-mock object: #{non_mock_object}.existing_method")
|
53
|
+
end
|
54
|
+
|
55
|
+
def test_should_allow_stubbing_method_on_mock_object
|
56
|
+
Mocha::Configuration.prevent(:stubbing_method_on_non_mock_object)
|
57
|
+
test_result = run_test do
|
58
|
+
mock = mock('mock')
|
59
|
+
mock.stubs(:any_method)
|
60
|
+
end
|
61
|
+
assert_passed(test_result)
|
62
|
+
end
|
63
|
+
|
64
|
+
end
|
@@ -0,0 +1,15 @@
|
|
1
|
+
require 'mocha/deprecation'
|
2
|
+
|
3
|
+
module DeprecationDisabler
|
4
|
+
|
5
|
+
def disable_deprecations
|
6
|
+
original_mode = Mocha::Deprecation.mode
|
7
|
+
Mocha::Deprecation.mode = :disabled
|
8
|
+
begin
|
9
|
+
yield
|
10
|
+
ensure
|
11
|
+
Mocha::Deprecation.mode = original_mode
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
end
|
@@ -0,0 +1,36 @@
|
|
1
|
+
class ExecutionPoint
|
2
|
+
|
3
|
+
attr_reader :backtrace
|
4
|
+
|
5
|
+
def self.current
|
6
|
+
new(caller)
|
7
|
+
end
|
8
|
+
|
9
|
+
def initialize(backtrace)
|
10
|
+
@backtrace = backtrace
|
11
|
+
end
|
12
|
+
|
13
|
+
def file_name
|
14
|
+
return "unknown" unless @backtrace && @backtrace.first
|
15
|
+
/\A(.*?):\d+/.match(@backtrace.first)[1]
|
16
|
+
end
|
17
|
+
|
18
|
+
def line_number
|
19
|
+
return "unknown" unless @backtrace && @backtrace.first
|
20
|
+
Integer(/\A.*?:(\d+)/.match(@backtrace.first)[1])
|
21
|
+
end
|
22
|
+
|
23
|
+
def ==(other)
|
24
|
+
return false unless other.is_a?(ExecutionPoint)
|
25
|
+
(file_name == other.file_name) and (line_number == other.line_number)
|
26
|
+
end
|
27
|
+
|
28
|
+
def to_s
|
29
|
+
"file: #{file_name}; line: #{line_number}"
|
30
|
+
end
|
31
|
+
|
32
|
+
def inspect
|
33
|
+
to_s
|
34
|
+
end
|
35
|
+
|
36
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
require 'mocha/metaclass'
|
2
|
+
|
3
|
+
module Mocha
|
4
|
+
|
5
|
+
module ObjectMethods
|
6
|
+
def define_instance_method(method_symbol, &block)
|
7
|
+
__metaclass__.send(:define_method, method_symbol, block)
|
8
|
+
end
|
9
|
+
|
10
|
+
def replace_instance_method(method_symbol, &block)
|
11
|
+
raise "Cannot replace #{method_symbol} as #{self} does not respond to it." unless self.respond_to?(method_symbol)
|
12
|
+
define_instance_method(method_symbol, &block)
|
13
|
+
end
|
14
|
+
|
15
|
+
def define_instance_accessor(*symbols)
|
16
|
+
symbols.each { |symbol| __metaclass__.send(:attr_accessor, symbol) }
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
end
|
21
|
+
|
22
|
+
class Object
|
23
|
+
include Mocha::ObjectMethods
|
24
|
+
end
|
data/test/test_helper.rb
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
unless defined?(STANDARD_OBJECT_PUBLIC_INSTANCE_METHODS)
|
2
|
+
STANDARD_OBJECT_PUBLIC_INSTANCE_METHODS = Object.public_instance_methods
|
3
|
+
end
|
4
|
+
|
5
|
+
$:.unshift File.expand_path(File.join(File.dirname(__FILE__), "..", "lib"))
|
6
|
+
$:.unshift File.expand_path(File.join(File.dirname(__FILE__)))
|
7
|
+
$:.unshift File.expand_path(File.join(File.dirname(__FILE__), 'unit'))
|
8
|
+
$:.unshift File.expand_path(File.join(File.dirname(__FILE__), 'unit', 'parameter_matchers'))
|
9
|
+
$:.unshift File.expand_path(File.join(File.dirname(__FILE__), 'acceptance'))
|
10
|
+
|
11
|
+
require 'test/unit'
|
data/test/test_runner.rb
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
require 'test/unit/testresult'
|
2
|
+
require 'test/unit/testcase'
|
3
|
+
|
4
|
+
module TestRunner
|
5
|
+
|
6
|
+
def run_test(test_result = Test::Unit::TestResult.new, &block)
|
7
|
+
test_class = Class.new(Test::Unit::TestCase) do
|
8
|
+
define_method(:test_me, &block)
|
9
|
+
end
|
10
|
+
test = test_class.new(:test_me)
|
11
|
+
test.run(test_result) {}
|
12
|
+
class << test_result
|
13
|
+
attr_reader :failures, :errors
|
14
|
+
def failure_messages
|
15
|
+
failures.map { |failure| failure.message }
|
16
|
+
end
|
17
|
+
def error_messages
|
18
|
+
errors.map { |error| error.message }
|
19
|
+
end
|
20
|
+
end
|
21
|
+
test_result
|
22
|
+
end
|
23
|
+
|
24
|
+
def assert_passed(test_result)
|
25
|
+
flunk "Test failed unexpectedly with message: #{test_result.failures}" if test_result.failure_count > 0
|
26
|
+
flunk "Test failed unexpectedly with message: #{test_result.errors}" if test_result.error_count > 0
|
27
|
+
end
|
28
|
+
|
29
|
+
def assert_failed(test_result)
|
30
|
+
flunk "Test passed unexpectedly" if test_result.passed?
|
31
|
+
end
|
32
|
+
|
33
|
+
end
|
@@ -0,0 +1,126 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), "..", "test_helper")
|
2
|
+
require 'method_definer'
|
3
|
+
require 'mocha/mock'
|
4
|
+
require 'mocha/any_instance_method'
|
5
|
+
|
6
|
+
class AnyInstanceMethodTest < Test::Unit::TestCase
|
7
|
+
|
8
|
+
include Mocha
|
9
|
+
|
10
|
+
def test_should_hide_original_method
|
11
|
+
klass = Class.new { def method_x; end }
|
12
|
+
method = AnyInstanceMethod.new(klass, :method_x)
|
13
|
+
hidden_method_x = method.hidden_method.to_sym
|
14
|
+
|
15
|
+
method.hide_original_method
|
16
|
+
|
17
|
+
assert klass.method_defined?(hidden_method_x)
|
18
|
+
end
|
19
|
+
|
20
|
+
def test_should_not_hide_original_method_if_it_is_not_defined
|
21
|
+
klass = Class.new
|
22
|
+
method = AnyInstanceMethod.new(klass, :method_x)
|
23
|
+
hidden_method_x = method.hidden_method.to_sym
|
24
|
+
|
25
|
+
method.hide_original_method
|
26
|
+
|
27
|
+
assert_equal false, klass.method_defined?(hidden_method_x)
|
28
|
+
end
|
29
|
+
|
30
|
+
def test_should_define_a_new_method
|
31
|
+
klass = Class.new { def method_x; end }
|
32
|
+
method = AnyInstanceMethod.new(klass, :method_x)
|
33
|
+
mocha = Mock.new
|
34
|
+
mocha.expects(:method_x).with(:param1, :param2).returns(:result)
|
35
|
+
any_instance = Object.new
|
36
|
+
any_instance.define_instance_method(:mocha) { mocha }
|
37
|
+
klass.define_instance_method(:any_instance) { any_instance }
|
38
|
+
|
39
|
+
method.hide_original_method
|
40
|
+
method.define_new_method
|
41
|
+
|
42
|
+
instance = klass.new
|
43
|
+
result = instance.method_x(:param1, :param2)
|
44
|
+
|
45
|
+
assert_equal :result, result
|
46
|
+
assert mocha.__verified__?
|
47
|
+
end
|
48
|
+
|
49
|
+
def test_should_restore_original_method
|
50
|
+
klass = Class.new { def method_x; end }
|
51
|
+
method = AnyInstanceMethod.new(klass, :method_x)
|
52
|
+
hidden_method_x = method.hidden_method.to_sym
|
53
|
+
klass.send(:define_method, hidden_method_x, Proc.new { :original_result })
|
54
|
+
|
55
|
+
method.remove_new_method
|
56
|
+
method.restore_original_method
|
57
|
+
|
58
|
+
instance = klass.new
|
59
|
+
assert_equal :original_result, instance.method_x
|
60
|
+
assert !klass.method_defined?(hidden_method_x)
|
61
|
+
end
|
62
|
+
|
63
|
+
def test_should_not_restore_original_method_if_hidden_method_not_defined
|
64
|
+
klass = Class.new { def method_x; :new_result; end }
|
65
|
+
method = AnyInstanceMethod.new(klass, :method_x)
|
66
|
+
|
67
|
+
method.restore_original_method
|
68
|
+
|
69
|
+
instance = klass.new
|
70
|
+
assert_equal :new_result, instance.method_x
|
71
|
+
end
|
72
|
+
|
73
|
+
def test_should_call_remove_new_method
|
74
|
+
klass = Class.new { def method_x; end }
|
75
|
+
any_instance = Mock.new
|
76
|
+
any_instance.stubs(:reset_mocha)
|
77
|
+
klass.define_instance_method(:any_instance) { any_instance }
|
78
|
+
method = AnyInstanceMethod.new(klass, :method_x)
|
79
|
+
method.replace_instance_method(:restore_original_method) { }
|
80
|
+
method.define_instance_accessor(:remove_called)
|
81
|
+
method.replace_instance_method(:remove_new_method) { self.remove_called = true }
|
82
|
+
|
83
|
+
method.unstub
|
84
|
+
|
85
|
+
assert method.remove_called
|
86
|
+
end
|
87
|
+
|
88
|
+
def test_should_call_restore_original_method
|
89
|
+
klass = Class.new { def method_x; end }
|
90
|
+
any_instance = Mock.new
|
91
|
+
any_instance.stubs(:reset_mocha)
|
92
|
+
klass.define_instance_method(:any_instance) { any_instance }
|
93
|
+
method = AnyInstanceMethod.new(klass, :method_x)
|
94
|
+
method.replace_instance_method(:remove_new_method) { }
|
95
|
+
method.define_instance_accessor(:restore_called)
|
96
|
+
method.replace_instance_method(:restore_original_method) { self.restore_called = true }
|
97
|
+
|
98
|
+
method.unstub
|
99
|
+
|
100
|
+
assert method.restore_called
|
101
|
+
end
|
102
|
+
|
103
|
+
def test_should_call_reset_mocha
|
104
|
+
klass = Class.new { def method_x; end }
|
105
|
+
any_instance = Class.new { attr_accessor :mocha_was_reset; def reset_mocha; self.mocha_was_reset = true; end }.new
|
106
|
+
klass.define_instance_method(:any_instance) { any_instance }
|
107
|
+
method = AnyInstanceMethod.new(klass, :method_x)
|
108
|
+
method.replace_instance_method(:remove_new_method) { }
|
109
|
+
method.replace_instance_method(:restore_original_method) { }
|
110
|
+
|
111
|
+
method.unstub
|
112
|
+
|
113
|
+
assert any_instance.mocha_was_reset
|
114
|
+
end
|
115
|
+
|
116
|
+
def test_should_return_any_instance_mocha_for_stubbee
|
117
|
+
mocha = Object.new
|
118
|
+
any_instance = Object.new
|
119
|
+
any_instance.define_instance_method(:mocha) { mocha }
|
120
|
+
stubbee = Class.new
|
121
|
+
stubbee.define_instance_method(:any_instance) { any_instance }
|
122
|
+
method = AnyInstanceMethod.new(stubbee, :method_name)
|
123
|
+
assert_equal stubbee.any_instance.mocha, method.mock
|
124
|
+
end
|
125
|
+
|
126
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), "..", "test_helper")
|
2
|
+
require 'mocha/inspect'
|
3
|
+
|
4
|
+
class ArrayInspectTest < Test::Unit::TestCase
|
5
|
+
|
6
|
+
def test_should_use_inspect
|
7
|
+
array = [1, 2]
|
8
|
+
assert_equal array.inspect, array.mocha_inspect
|
9
|
+
end
|
10
|
+
|
11
|
+
def test_should_use_mocha_inspect_on_each_item
|
12
|
+
array = [1, 2, "chris"]
|
13
|
+
assert_equal "[1, 2, 'chris']", array.mocha_inspect
|
14
|
+
end
|
15
|
+
|
16
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), "..", "test_helper")
|
2
|
+
require 'mocha/backtrace_filter'
|
3
|
+
|
4
|
+
class BacktraceFilterTest < Test::Unit::TestCase
|
5
|
+
|
6
|
+
include Mocha
|
7
|
+
|
8
|
+
def test_should_exclude_mocha_locations_from_backtrace
|
9
|
+
mocha_lib = "/username/workspace/mocha_wibble/lib/"
|
10
|
+
backtrace = [ mocha_lib + 'exclude/me/1', mocha_lib + 'exclude/me/2', '/keep/me', mocha_lib + 'exclude/me/3']
|
11
|
+
filter = BacktraceFilter.new(mocha_lib)
|
12
|
+
assert_equal ['/keep/me'], filter.filtered(backtrace)
|
13
|
+
end
|
14
|
+
|
15
|
+
def test_should_determine_path_for_mocha_lib_directory
|
16
|
+
assert_match Regexp.new("/lib/$"), BacktraceFilter::LIB_DIRECTORY
|
17
|
+
end
|
18
|
+
|
19
|
+
end
|