mocha-macruby 0.9.8.20100129120100
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 +39 -0
- data/RELEASE +294 -0
- data/Rakefile +214 -0
- data/examples/misc.rb +43 -0
- data/examples/mocha.rb +25 -0
- data/examples/stubba.rb +64 -0
- data/lib/mocha.rb +3 -0
- data/lib/mocha/any_instance_method.rb +59 -0
- data/lib/mocha/api.rb +173 -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 +117 -0
- data/lib/mocha/configuration.rb +79 -0
- data/lib/mocha/deprecation.rb +22 -0
- data/lib/mocha/exception_raiser.rb +17 -0
- data/lib/mocha/expectation.rb +476 -0
- data/lib/mocha/expectation_error.rb +15 -0
- data/lib/mocha/expectation_list.rb +50 -0
- data/lib/mocha/in_state_ordering_constraint.rb +19 -0
- data/lib/mocha/inspect.rb +67 -0
- data/lib/mocha/instance_method.rb +16 -0
- data/lib/mocha/integration.rb +38 -0
- data/lib/mocha/integration/mini_test.rb +21 -0
- data/lib/mocha/integration/mini_test/assertion_counter.rb +23 -0
- data/lib/mocha/integration/mini_test/version_131_and_above.rb +50 -0
- data/lib/mocha/integration/test_unit.rb +40 -0
- data/lib/mocha/integration/test_unit/assertion_counter.rb +23 -0
- data/lib/mocha/integration/test_unit/gem_version_200.rb +49 -0
- data/lib/mocha/integration/test_unit/gem_version_201_and_above.rb +49 -0
- data/lib/mocha/integration/test_unit/ruby_version_185_and_below.rb +48 -0
- data/lib/mocha/integration/test_unit/ruby_version_186_and_above.rb +50 -0
- data/lib/mocha/is_a.rb +9 -0
- data/lib/mocha/logger.rb +15 -0
- data/lib/mocha/metaclass.rb +13 -0
- data/lib/mocha/method_matcher.rb +21 -0
- data/lib/mocha/mock.rb +200 -0
- data/lib/mocha/mockery.rb +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.rb +27 -0
- data/lib/mocha/parameter_matchers/all_of.rb +42 -0
- data/lib/mocha/parameter_matchers/any_of.rb +47 -0
- data/lib/mocha/parameter_matchers/any_parameters.rb +40 -0
- data/lib/mocha/parameter_matchers/anything.rb +33 -0
- data/lib/mocha/parameter_matchers/base.rb +15 -0
- data/lib/mocha/parameter_matchers/equals.rb +42 -0
- data/lib/mocha/parameter_matchers/has_entries.rb +45 -0
- data/lib/mocha/parameter_matchers/has_entry.rb +57 -0
- data/lib/mocha/parameter_matchers/has_key.rb +43 -0
- data/lib/mocha/parameter_matchers/has_value.rb +43 -0
- data/lib/mocha/parameter_matchers/includes.rb +41 -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 +44 -0
- data/lib/mocha/parameter_matchers/responds_with.rb +43 -0
- data/lib/mocha/parameter_matchers/yaml_equivalent.rb +43 -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 +1 -0
- data/lib/mocha/state_machine.rb +91 -0
- data/lib/mocha/stubbing_error.rb +16 -0
- data/lib/mocha/unexpected_invocation.rb +18 -0
- data/lib/mocha/yield_parameters.rb +31 -0
- data/lib/mocha_standalone.rb +2 -0
- data/lib/stubba.rb +4 -0
- data/test/acceptance/acceptance_test_helper.rb +38 -0
- data/test/acceptance/api_test.rb +139 -0
- data/test/acceptance/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 +153 -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/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 +25 -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 +295 -0
- data/test/unit/configuration_test.rb +38 -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 +480 -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 +302 -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 +82 -0
- data/test/unit/parameter_matchers/has_key_test.rb +55 -0
- data/test/unit/parameter_matchers/has_value_test.rb +57 -0
- data/test/unit/parameter_matchers/includes_test.rb +44 -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 +46 -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 +240 -0
@@ -0,0 +1,163 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), "acceptance_test_helper")
|
2
|
+
require 'mocha'
|
3
|
+
|
4
|
+
class StubModuleMethodTest < 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_stub_method_within_test
|
17
|
+
mod = Module.new { def self.my_module_method; :original_return_value; end }
|
18
|
+
test_result = run_as_test do
|
19
|
+
mod.stubs(:my_module_method).returns(:new_return_value)
|
20
|
+
assert_equal :new_return_value, mod.my_module_method
|
21
|
+
end
|
22
|
+
assert_passed(test_result)
|
23
|
+
end
|
24
|
+
|
25
|
+
def test_should_leave_stubbed_public_method_unchanged_after_test
|
26
|
+
mod = Module.new { class << self; def my_module_method; :original_return_value; end; public :my_module_method; end }
|
27
|
+
run_as_test do
|
28
|
+
mod.stubs(:my_module_method).returns(:new_return_value)
|
29
|
+
end
|
30
|
+
assert mod.public_methods(false).any? { |m| m.to_s == 'my_module_method' }
|
31
|
+
assert_equal :original_return_value, mod.my_module_method
|
32
|
+
end
|
33
|
+
|
34
|
+
def test_should_leave_stubbed_protected_method_unchanged_after_test
|
35
|
+
mod = Module.new { class << self; def my_module_method; :original_return_value; end; protected :my_module_method; end }
|
36
|
+
run_as_test do
|
37
|
+
mod.stubs(:my_module_method).returns(:new_return_value)
|
38
|
+
end
|
39
|
+
assert mod.protected_methods(false).any? { |m| m.to_s == 'my_module_method' }
|
40
|
+
assert_equal :original_return_value, mod.send(:my_module_method)
|
41
|
+
end
|
42
|
+
|
43
|
+
def test_should_leave_stubbed_private_method_unchanged_after_test
|
44
|
+
mod = Module.new { class << self; def my_module_method; :original_return_value; end; private :my_module_method; end }
|
45
|
+
run_as_test do
|
46
|
+
mod.stubs(:my_module_method).returns(:new_return_value)
|
47
|
+
end
|
48
|
+
assert mod.private_methods(false).any? { |m| m.to_s == 'my_module_method' }
|
49
|
+
assert_equal :original_return_value, mod.send(:my_module_method)
|
50
|
+
end
|
51
|
+
|
52
|
+
def test_should_reset_expectations_after_test
|
53
|
+
mod = Module.new { def self.my_module_method; :original_return_value; end }
|
54
|
+
run_as_test do
|
55
|
+
mod.stubs(:my_module_method)
|
56
|
+
end
|
57
|
+
assert_equal 0, mod.mocha.expectations.length
|
58
|
+
end
|
59
|
+
|
60
|
+
def test_should_be_able_to_stub_a_superclass_method
|
61
|
+
supermod = Module.new { def self.my_superclass_method; :original_return_value; end }
|
62
|
+
mod = Module.new { include supermod }
|
63
|
+
test_result = run_as_test do
|
64
|
+
mod.stubs(:my_superclass_method).returns(:new_return_value)
|
65
|
+
assert_equal :new_return_value, mod.my_superclass_method
|
66
|
+
end
|
67
|
+
assert_passed(test_result)
|
68
|
+
assert supermod.public_methods.any? { |m| m.to_s == 'my_superclass_method' }
|
69
|
+
assert !mod.public_methods(false).any? { |m| m.to_s == 'my_superclass_method' }
|
70
|
+
assert_equal :original_return_value, supermod.my_superclass_method
|
71
|
+
end
|
72
|
+
|
73
|
+
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
|
+
ruby18_mod = Module.new do
|
75
|
+
class << self
|
76
|
+
def public_methods(include_superclass = true)
|
77
|
+
['my_module_method']
|
78
|
+
end
|
79
|
+
end
|
80
|
+
end
|
81
|
+
test_result = run_as_test do
|
82
|
+
ruby18_mod.stubs(:my_module_method).returns(:new_return_value)
|
83
|
+
assert_equal :new_return_value, ruby18_mod.my_module_method
|
84
|
+
end
|
85
|
+
assert_passed(test_result)
|
86
|
+
end
|
87
|
+
|
88
|
+
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
|
+
ruby19_mod = Module.new do
|
90
|
+
class << self
|
91
|
+
def public_methods(include_superclass = true)
|
92
|
+
[:my_module_method]
|
93
|
+
end
|
94
|
+
end
|
95
|
+
end
|
96
|
+
test_result = run_as_test do
|
97
|
+
ruby19_mod.stubs(:my_module_method).returns(:new_return_value)
|
98
|
+
assert_equal :new_return_value, ruby19_mod.my_module_method
|
99
|
+
end
|
100
|
+
assert_passed(test_result)
|
101
|
+
end
|
102
|
+
|
103
|
+
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
|
+
ruby18_mod = Module.new do
|
105
|
+
class << self
|
106
|
+
def protected_methods(include_superclass = true)
|
107
|
+
['my_module_method']
|
108
|
+
end
|
109
|
+
end
|
110
|
+
end
|
111
|
+
test_result = run_as_test do
|
112
|
+
ruby18_mod.stubs(:my_module_method).returns(:new_return_value)
|
113
|
+
assert_equal :new_return_value, ruby18_mod.my_module_method
|
114
|
+
end
|
115
|
+
assert_passed(test_result)
|
116
|
+
end
|
117
|
+
|
118
|
+
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
|
+
ruby19_mod = Module.new do
|
120
|
+
class << self
|
121
|
+
def protected_methods(include_superclass = true)
|
122
|
+
[:my_module_method]
|
123
|
+
end
|
124
|
+
end
|
125
|
+
end
|
126
|
+
test_result = run_as_test do
|
127
|
+
ruby19_mod.stubs(:my_module_method).returns(:new_return_value)
|
128
|
+
assert_equal :new_return_value, ruby19_mod.my_module_method
|
129
|
+
end
|
130
|
+
assert_passed(test_result)
|
131
|
+
end
|
132
|
+
|
133
|
+
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
|
+
ruby18_mod = Module.new do
|
135
|
+
class << self
|
136
|
+
def private_methods(include_superclass = true)
|
137
|
+
['my_module_method']
|
138
|
+
end
|
139
|
+
end
|
140
|
+
end
|
141
|
+
test_result = run_as_test do
|
142
|
+
ruby18_mod.stubs(:my_module_method).returns(:new_return_value)
|
143
|
+
assert_equal :new_return_value, ruby18_mod.my_module_method
|
144
|
+
end
|
145
|
+
assert_passed(test_result)
|
146
|
+
end
|
147
|
+
|
148
|
+
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
|
+
ruby19_mod = Module.new do
|
150
|
+
class << self
|
151
|
+
def private_methods(include_superclass = true)
|
152
|
+
[:my_module_method]
|
153
|
+
end
|
154
|
+
end
|
155
|
+
end
|
156
|
+
test_result = run_as_test do
|
157
|
+
ruby19_mod.stubs(:my_module_method).returns(:new_return_value)
|
158
|
+
assert_equal :new_return_value, ruby19_mod.my_module_method
|
159
|
+
end
|
160
|
+
assert_passed(test_result)
|
161
|
+
end
|
162
|
+
|
163
|
+
end
|
@@ -0,0 +1,52 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), "acceptance_test_helper")
|
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
|
@@ -0,0 +1,102 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), "..", "test_helper")
|
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
|
@@ -0,0 +1,15 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), "..", "test_helper")
|
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
|
@@ -0,0 +1,66 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), "acceptance_test_helper")
|
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
|
@@ -0,0 +1,64 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), "acceptance_test_helper")
|
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
|