mocha 1.2.1 → 1.16.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (265) hide show
  1. checksums.yaml +5 -5
  2. data/.github/FUNDING.yml +1 -0
  3. data/.rubocop.yml +61 -0
  4. data/.rubocop_todo.yml +27 -0
  5. data/.yardopts +1 -0
  6. data/CONTRIBUTING.md +4 -9
  7. data/Gemfile +29 -0
  8. data/README.md +104 -106
  9. data/RELEASE.md +277 -1
  10. data/Rakefile +46 -44
  11. data/gemfiles/Gemfile.minitest.latest +1 -0
  12. data/gemfiles/Gemfile.test-unit.latest +2 -5
  13. data/init.rb +1 -3
  14. data/lib/mocha/any_instance_method.rb +9 -62
  15. data/lib/mocha/api.rb +144 -68
  16. data/lib/mocha/argument_iterator.rb +4 -8
  17. data/lib/mocha/backtrace_filter.rb +1 -5
  18. data/lib/mocha/block_matcher.rb +31 -0
  19. data/lib/mocha/cardinality.rb +60 -49
  20. data/lib/mocha/central.rb +21 -12
  21. data/lib/mocha/change_state_side_effect.rb +0 -4
  22. data/lib/mocha/class_methods.rb +19 -21
  23. data/lib/mocha/configuration.rb +372 -18
  24. data/lib/mocha/debug.rb +3 -2
  25. data/lib/mocha/deprecation.rb +8 -11
  26. data/lib/mocha/detection/mini_test.rb +0 -2
  27. data/lib/mocha/detection/test_unit.rb +3 -5
  28. data/lib/mocha/error_with_filtered_backtrace.rb +13 -0
  29. data/lib/mocha/exception_raiser.rb +4 -6
  30. data/lib/mocha/expectation.rb +125 -89
  31. data/lib/mocha/expectation_error.rb +1 -1
  32. data/lib/mocha/expectation_error_factory.rb +0 -1
  33. data/lib/mocha/expectation_list.rb +7 -11
  34. data/lib/mocha/hooks.rb +1 -3
  35. data/lib/mocha/in_state_ordering_constraint.rb +0 -4
  36. data/lib/mocha/inspect.rb +30 -38
  37. data/lib/mocha/instance_method.rb +11 -8
  38. data/lib/mocha/integration/mini_test/adapter.rb +2 -4
  39. data/lib/mocha/integration/mini_test/exception_translation.rb +1 -1
  40. data/lib/mocha/integration/mini_test/nothing.rb +4 -4
  41. data/lib/mocha/integration/mini_test/version_13.rb +4 -1
  42. data/lib/mocha/integration/mini_test/version_140.rb +4 -1
  43. data/lib/mocha/integration/mini_test/version_141.rb +4 -1
  44. data/lib/mocha/integration/mini_test/version_142_to_172.rb +4 -1
  45. data/lib/mocha/integration/mini_test/version_200.rb +4 -1
  46. data/lib/mocha/integration/mini_test/version_201_to_222.rb +4 -1
  47. data/lib/mocha/integration/mini_test/version_2110_to_2111.rb +4 -1
  48. data/lib/mocha/integration/mini_test/version_2112_to_320.rb +4 -1
  49. data/lib/mocha/integration/mini_test/version_230_to_2101.rb +4 -1
  50. data/lib/mocha/integration/mini_test.rb +7 -0
  51. data/lib/mocha/integration/monkey_patcher.rb +5 -7
  52. data/lib/mocha/integration/test_unit/adapter.rb +5 -6
  53. data/lib/mocha/integration/test_unit/gem_version_200.rb +5 -2
  54. data/lib/mocha/integration/test_unit/gem_version_201_to_202.rb +5 -2
  55. data/lib/mocha/integration/test_unit/gem_version_203_to_220.rb +5 -2
  56. data/lib/mocha/integration/test_unit/gem_version_230_to_250.rb +5 -2
  57. data/lib/mocha/integration/test_unit/nothing.rb +4 -4
  58. data/lib/mocha/integration/test_unit/ruby_version_186_and_above.rb +4 -1
  59. data/lib/mocha/integration/test_unit.rb +7 -2
  60. data/lib/mocha/integration.rb +2 -5
  61. data/lib/mocha/invocation.rb +86 -0
  62. data/lib/mocha/is_a.rb +0 -2
  63. data/lib/mocha/logger.rb +0 -4
  64. data/lib/mocha/macos_version.rb +5 -0
  65. data/lib/mocha/method_matcher.rb +1 -5
  66. data/lib/mocha/minitest.rb +9 -0
  67. data/lib/mocha/mock.rb +102 -58
  68. data/lib/mocha/mockery.rb +70 -99
  69. data/lib/mocha/names.rb +2 -12
  70. data/lib/mocha/not_initialized_error.rb +7 -0
  71. data/lib/mocha/object_methods.rb +25 -31
  72. data/lib/mocha/parameter_matchers/all_of.rb +2 -8
  73. data/lib/mocha/parameter_matchers/any_of.rb +2 -8
  74. data/lib/mocha/parameter_matchers/any_parameters.rb +3 -9
  75. data/lib/mocha/parameter_matchers/anything.rb +2 -8
  76. data/lib/mocha/parameter_matchers/base.rb +6 -12
  77. data/lib/mocha/parameter_matchers/equals.rb +0 -6
  78. data/lib/mocha/parameter_matchers/{query_string.rb → equivalent_uri.rb} +15 -15
  79. data/lib/mocha/parameter_matchers/has_entries.rb +2 -7
  80. data/lib/mocha/parameter_matchers/has_entry.rb +26 -21
  81. data/lib/mocha/parameter_matchers/has_key.rb +2 -7
  82. data/lib/mocha/parameter_matchers/has_keys.rb +53 -0
  83. data/lib/mocha/parameter_matchers/has_value.rb +2 -7
  84. data/lib/mocha/parameter_matchers/includes.rb +6 -7
  85. data/lib/mocha/parameter_matchers/instance_methods.rb +18 -0
  86. data/lib/mocha/parameter_matchers/instance_of.rb +0 -6
  87. data/lib/mocha/parameter_matchers/is_a.rb +2 -7
  88. data/lib/mocha/parameter_matchers/kind_of.rb +2 -6
  89. data/lib/mocha/parameter_matchers/not.rb +2 -7
  90. data/lib/mocha/parameter_matchers/optionally.rb +4 -10
  91. data/lib/mocha/parameter_matchers/regexp_matches.rb +0 -6
  92. data/lib/mocha/parameter_matchers/responds_with.rb +3 -8
  93. data/lib/mocha/parameter_matchers/yaml_equivalent.rb +2 -6
  94. data/lib/mocha/parameter_matchers.rb +3 -4
  95. data/lib/mocha/parameters_matcher.rb +6 -9
  96. data/lib/mocha/raised_exception.rb +11 -0
  97. data/lib/mocha/receivers.rb +10 -14
  98. data/lib/mocha/return_values.rb +4 -8
  99. data/lib/mocha/ruby_version.rb +8 -1
  100. data/lib/mocha/sequence.rb +4 -9
  101. data/lib/mocha/setup.rb +5 -0
  102. data/lib/mocha/single_return_value.rb +2 -5
  103. data/lib/mocha/state_machine.rb +33 -46
  104. data/lib/mocha/stubbed_method.rb +124 -0
  105. data/lib/mocha/stubbing_error.rb +2 -13
  106. data/lib/mocha/test_unit.rb +8 -2
  107. data/lib/mocha/thrower.rb +4 -6
  108. data/lib/mocha/thrown_object.rb +12 -0
  109. data/lib/mocha/version.rb +1 -1
  110. data/lib/mocha/yield_parameters.rb +7 -17
  111. data/mocha.gemspec +14 -65
  112. data/yard-templates/default/layout/html/google_analytics.erb +6 -9
  113. data/yard-templates/default/layout/html/setup.rb +2 -3
  114. metadata +25 -247
  115. data/bin/build-matrix +0 -70
  116. data/gemfiles/Gemfile.minitest.1.3.0 +0 -7
  117. data/gemfiles/Gemfile.minitest.1.4.0 +0 -7
  118. data/gemfiles/Gemfile.minitest.1.4.1 +0 -7
  119. data/gemfiles/Gemfile.minitest.1.4.2 +0 -7
  120. data/gemfiles/Gemfile.minitest.2.0.0 +0 -7
  121. data/gemfiles/Gemfile.minitest.2.0.1 +0 -7
  122. data/gemfiles/Gemfile.minitest.2.11.0 +0 -7
  123. data/gemfiles/Gemfile.minitest.2.11.2 +0 -7
  124. data/gemfiles/Gemfile.minitest.2.3.0 +0 -7
  125. data/gemfiles/Gemfile.test-unit.2.0.0 +0 -7
  126. data/gemfiles/Gemfile.test-unit.2.0.1 +0 -7
  127. data/gemfiles/Gemfile.test-unit.2.0.3 +0 -7
  128. data/lib/mocha/class_method.rb +0 -119
  129. data/lib/mocha/integration/test_unit/ruby_version_185_and_below.rb +0 -58
  130. data/lib/mocha/mini_test.rb +0 -3
  131. data/lib/mocha/module_method.rb +0 -16
  132. data/lib/mocha/module_methods.rb +0 -14
  133. data/lib/mocha/multiple_yields.rb +0 -20
  134. data/lib/mocha/no_yields.rb +0 -11
  135. data/lib/mocha/parameter_matchers/object.rb +0 -17
  136. data/lib/mocha/pretty_parameters.rb +0 -28
  137. data/lib/mocha/single_yield.rb +0 -18
  138. data/lib/mocha/standalone.rb +0 -4
  139. data/lib/mocha/unexpected_invocation.rb +0 -26
  140. data/lib/mocha_standalone.rb +0 -4
  141. data/test/acceptance/acceptance_test_helper.rb +0 -41
  142. data/test/acceptance/bug_18914_test.rb +0 -43
  143. data/test/acceptance/bug_21465_test.rb +0 -34
  144. data/test/acceptance/bug_21563_test.rb +0 -25
  145. data/test/acceptance/exception_rescue_test.rb +0 -55
  146. data/test/acceptance/expectations_on_multiple_methods_test.rb +0 -55
  147. data/test/acceptance/expected_invocation_count_test.rb +0 -232
  148. data/test/acceptance/failure_messages_test.rb +0 -64
  149. data/test/acceptance/issue_272_test.rb +0 -52
  150. data/test/acceptance/issue_65_test.rb +0 -63
  151. data/test/acceptance/issue_70_test.rb +0 -55
  152. data/test/acceptance/mocha_example_test.rb +0 -98
  153. data/test/acceptance/mocha_test_result_test.rb +0 -84
  154. data/test/acceptance/mock_test.rb +0 -100
  155. data/test/acceptance/mock_with_initializer_block_test.rb +0 -51
  156. data/test/acceptance/mocked_methods_dispatch_test.rb +0 -78
  157. data/test/acceptance/multiple_expectations_failure_message_test.rb +0 -68
  158. data/test/acceptance/optional_parameters_test.rb +0 -70
  159. data/test/acceptance/parameter_matcher_test.rb +0 -337
  160. data/test/acceptance/partial_mocks_test.rb +0 -47
  161. data/test/acceptance/prepend_test.rb +0 -89
  162. data/test/acceptance/raise_exception_test.rb +0 -39
  163. data/test/acceptance/return_value_test.rb +0 -52
  164. data/test/acceptance/sequence_test.rb +0 -192
  165. data/test/acceptance/states_test.rb +0 -70
  166. data/test/acceptance/stub_any_instance_method_defined_on_superclass_test.rb +0 -34
  167. data/test/acceptance/stub_any_instance_method_test.rb +0 -280
  168. data/test/acceptance/stub_class_method_defined_on_active_record_association_proxy_test.rb +0 -106
  169. data/test/acceptance/stub_class_method_defined_on_class_test.rb +0 -78
  170. data/test/acceptance/stub_class_method_defined_on_module_test.rb +0 -75
  171. data/test/acceptance/stub_class_method_defined_on_superclass_test.rb +0 -112
  172. data/test/acceptance/stub_everything_test.rb +0 -56
  173. data/test/acceptance/stub_instance_method_defined_on_active_record_association_proxy_test.rb +0 -93
  174. data/test/acceptance/stub_instance_method_defined_on_class_and_aliased_test.rb +0 -69
  175. data/test/acceptance/stub_instance_method_defined_on_class_test.rb +0 -69
  176. data/test/acceptance/stub_instance_method_defined_on_kernel_module_test.rb +0 -75
  177. data/test/acceptance/stub_instance_method_defined_on_module_test.rb +0 -78
  178. data/test/acceptance/stub_instance_method_defined_on_object_class_test.rb +0 -75
  179. data/test/acceptance/stub_instance_method_defined_on_singleton_class_test.rb +0 -70
  180. data/test/acceptance/stub_instance_method_defined_on_superclass_test.rb +0 -72
  181. data/test/acceptance/stub_method_defined_on_module_and_aliased_test.rb +0 -39
  182. data/test/acceptance/stub_module_method_test.rb +0 -163
  183. data/test/acceptance/stub_test.rb +0 -52
  184. data/test/acceptance/stubba_example_test.rb +0 -102
  185. data/test/acceptance/stubba_test_result_test.rb +0 -66
  186. data/test/acceptance/stubbing_error_backtrace_test.rb +0 -64
  187. data/test/acceptance/stubbing_frozen_object_test.rb +0 -88
  188. data/test/acceptance/stubbing_method_accepting_block_parameter_test.rb +0 -48
  189. data/test/acceptance/stubbing_method_unnecessarily_test.rb +0 -65
  190. data/test/acceptance/stubbing_nil_test.rb +0 -61
  191. data/test/acceptance/stubbing_non_existent_any_instance_method_test.rb +0 -143
  192. data/test/acceptance/stubbing_non_existent_class_method_test.rb +0 -157
  193. data/test/acceptance/stubbing_non_existent_instance_method_test.rb +0 -147
  194. data/test/acceptance/stubbing_non_public_any_instance_method_test.rb +0 -130
  195. data/test/acceptance/stubbing_non_public_class_method_test.rb +0 -163
  196. data/test/acceptance/stubbing_non_public_instance_method_test.rb +0 -143
  197. data/test/acceptance/stubbing_on_non_mock_object_test.rb +0 -64
  198. data/test/acceptance/stubbing_same_class_method_on_parent_and_child_classes_test.rb +0 -35
  199. data/test/acceptance/throw_test.rb +0 -45
  200. data/test/acceptance/unexpected_invocation_test.rb +0 -25
  201. data/test/acceptance/unstubbing_test.rb +0 -168
  202. data/test/assertions.rb +0 -8
  203. data/test/deprecation_disabler.rb +0 -15
  204. data/test/execution_point.rb +0 -36
  205. data/test/integration/mini_test_test.rb +0 -8
  206. data/test/integration/shared_tests.rb +0 -174
  207. data/test/integration/test_unit_test.rb +0 -8
  208. data/test/method_definer.rb +0 -24
  209. data/test/mini_test_result.rb +0 -90
  210. data/test/minitest_result.rb +0 -49
  211. data/test/simple_counter.rb +0 -13
  212. data/test/test_helper.rb +0 -50
  213. data/test/test_runner.rb +0 -58
  214. data/test/test_unit_result.rb +0 -20
  215. data/test/unit/any_instance_method_test.rb +0 -134
  216. data/test/unit/array_inspect_test.rb +0 -16
  217. data/test/unit/backtrace_filter_test.rb +0 -19
  218. data/test/unit/cardinality_test.rb +0 -56
  219. data/test/unit/central_test.rb +0 -100
  220. data/test/unit/change_state_side_effect_test.rb +0 -41
  221. data/test/unit/class_method_test.rb +0 -225
  222. data/test/unit/class_methods_test.rb +0 -40
  223. data/test/unit/configuration_test.rb +0 -38
  224. data/test/unit/date_time_inspect_test.rb +0 -21
  225. data/test/unit/exception_raiser_test.rb +0 -42
  226. data/test/unit/expectation_list_test.rb +0 -82
  227. data/test/unit/expectation_test.rb +0 -497
  228. data/test/unit/hash_inspect_test.rb +0 -16
  229. data/test/unit/hooks_test.rb +0 -29
  230. data/test/unit/in_state_ordering_constraint_test.rb +0 -43
  231. data/test/unit/method_matcher_test.rb +0 -28
  232. data/test/unit/mock_test.rb +0 -342
  233. data/test/unit/mockery_test.rb +0 -151
  234. data/test/unit/module_methods_test.rb +0 -19
  235. data/test/unit/multiple_yields_test.rb +0 -18
  236. data/test/unit/no_yields_test.rb +0 -18
  237. data/test/unit/object_inspect_test.rb +0 -39
  238. data/test/unit/object_methods_test.rb +0 -46
  239. data/test/unit/parameter_matchers/all_of_test.rb +0 -26
  240. data/test/unit/parameter_matchers/any_of_test.rb +0 -26
  241. data/test/unit/parameter_matchers/anything_test.rb +0 -21
  242. data/test/unit/parameter_matchers/equals_test.rb +0 -25
  243. data/test/unit/parameter_matchers/has_entries_test.rb +0 -51
  244. data/test/unit/parameter_matchers/has_entry_test.rb +0 -129
  245. data/test/unit/parameter_matchers/has_key_test.rb +0 -55
  246. data/test/unit/parameter_matchers/has_value_test.rb +0 -57
  247. data/test/unit/parameter_matchers/includes_test.rb +0 -102
  248. data/test/unit/parameter_matchers/instance_of_test.rb +0 -25
  249. data/test/unit/parameter_matchers/is_a_test.rb +0 -25
  250. data/test/unit/parameter_matchers/kind_of_test.rb +0 -25
  251. data/test/unit/parameter_matchers/not_test.rb +0 -26
  252. data/test/unit/parameter_matchers/regexp_matches_test.rb +0 -46
  253. data/test/unit/parameter_matchers/responds_with_test.rb +0 -32
  254. data/test/unit/parameter_matchers/stub_matcher.rb +0 -27
  255. data/test/unit/parameter_matchers/yaml_equivalent_test.rb +0 -25
  256. data/test/unit/parameters_matcher_test.rb +0 -121
  257. data/test/unit/receivers_test.rb +0 -66
  258. data/test/unit/return_values_test.rb +0 -63
  259. data/test/unit/sequence_test.rb +0 -104
  260. data/test/unit/single_return_value_test.rb +0 -14
  261. data/test/unit/single_yield_test.rb +0 -18
  262. data/test/unit/state_machine_test.rb +0 -98
  263. data/test/unit/string_inspect_test.rb +0 -11
  264. data/test/unit/thrower_test.rb +0 -20
  265. data/test/unit/yield_parameters_test.rb +0 -93
@@ -1,55 +1,390 @@
1
1
  module Mocha
2
+ # Allows setting of configuration options. See {Configuration} for the available options.
3
+ #
4
+ # Typically the configuration is set globally in a +test_helper.rb+ or +spec_helper.rb+ file.
5
+ #
6
+ # @see Configuration
7
+ #
8
+ # @yieldparam configuration [Configuration] the configuration for modification
9
+ #
10
+ # @example Setting multiple configuration options
11
+ # Mocha.configure do |c|
12
+ # c.stubbing_method_unnecessarily = :prevent
13
+ # c.stubbing_method_on_non_mock_object = :warn
14
+ # c.stubbing_method_on_nil = :allow
15
+ # end
16
+ #
17
+ def self.configure
18
+ yield configuration
19
+ end
2
20
 
3
- # Configuration settings.
4
- class Configuration
21
+ # @private
22
+ def self.configuration
23
+ Configuration.configuration
24
+ end
5
25
 
26
+ # This class provides a number of ways to configure the library.
27
+ #
28
+ # Typically the configuration is set globally in a +test_helper.rb+ or +spec_helper.rb+ file.
29
+ #
30
+ # @example Setting multiple configuration options
31
+ # Mocha.configure do |c|
32
+ # c.stubbing_method_unnecessarily = :prevent
33
+ # c.stubbing_method_on_non_mock_object = :warn
34
+ # c.stubbing_method_on_nil = :allow
35
+ # end
36
+ #
37
+ class Configuration
38
+ # @private
6
39
  DEFAULTS = {
7
40
  :stubbing_method_unnecessarily => :allow,
8
41
  :stubbing_method_on_non_mock_object => :allow,
9
42
  :stubbing_non_existent_method => :allow,
10
43
  :stubbing_non_public_method => :allow,
11
44
  :stubbing_method_on_nil => :prevent,
12
- }
45
+ :display_matching_invocations_on_failure => false,
46
+ :reinstate_undocumented_behaviour_from_v1_9 => false
47
+ }.freeze
13
48
 
14
- class << self
49
+ attr_reader :options
50
+ protected :options
51
+
52
+ # @private
53
+ def initialize(options = {})
54
+ @options = DEFAULTS.merge(options)
55
+ end
56
+
57
+ # @private
58
+ def initialize_copy(other)
59
+ @options = other.options.dup
60
+ end
61
+
62
+ # @private
63
+ def merge(other)
64
+ self.class.new(@options.merge(other.options))
65
+ end
66
+
67
+ # Configure whether stubbing methods unnecessarily is allowed.
68
+ #
69
+ # This is useful for identifying unused stubs. Unused stubs are often accidentally introduced when code is {http://martinfowler.com/bliki/DefinitionOfRefactoring.html refactored}.
70
+ #
71
+ # When +value+ is +:allow+, do nothing. This is the default.
72
+ # When +value+ is +:warn+, display a warning.
73
+ # When +value+ is +:prevent+, raise a {StubbingError}.
74
+ #
75
+ # @param [Symbol] value one of +:allow+, +:warn+, +:prevent+.
76
+ #
77
+ # @example Preventing unnecessary stubbing of a method
78
+ # Mocha.configure do |c|
79
+ # c.stubbing_method_unnecessarily = :prevent
80
+ # end
81
+ #
82
+ # example = mock('example')
83
+ # example.stubs(:unused_stub)
84
+ # # => Mocha::StubbingError: stubbing method unnecessarily:
85
+ # # => #<Mock:example>.unused_stub(any_parameters)
86
+ #
87
+ def stubbing_method_unnecessarily=(value)
88
+ @options[:stubbing_method_unnecessarily] = value
89
+ end
90
+
91
+ # @private
92
+ def stubbing_method_unnecessarily
93
+ @options[:stubbing_method_unnecessarily]
94
+ end
95
+
96
+ # Configure whether stubbing methods on non-mock objects is allowed.
97
+ #
98
+ # If you like the idea of {http://www.jmock.org/oopsla2004.pdf mocking roles not objects} and {http://www.mockobjects.com/2007/04/test-smell-mocking-concrete-classes.html you don't like stubbing concrete classes}, this is the setting for you. However, while this restriction makes a lot of sense in Java with its {http://java.sun.com/docs/books/tutorial/java/concepts/interface.html explicit interfaces}, it may be moot in Ruby where roles are probably best represented as Modules.
99
+ #
100
+ # When +value+ is +:allow+, do nothing. This is the default.
101
+ # When +value+ is +:warn+, display a warning.
102
+ # When +value+ is +:prevent+, raise a {StubbingError}.
103
+ #
104
+ # @param [Symbol] value one of +:allow+, +:warn+, +:prevent+.
105
+ #
106
+ # @example Preventing stubbing of a method on a non-mock object
107
+ # Mocha.configure do |c|
108
+ # c.stubbing_method_on_non_mock_object = :prevent
109
+ # end
110
+ #
111
+ # class Example
112
+ # def example_method; end
113
+ # end
114
+ #
115
+ # example = Example.new
116
+ # example.stubs(:example_method)
117
+ # # => Mocha::StubbingError: stubbing method on non-mock object:
118
+ # # => #<Example:0x593620>.example_method
119
+ #
120
+ def stubbing_method_on_non_mock_object=(value)
121
+ @options[:stubbing_method_on_non_mock_object] = value
122
+ end
123
+
124
+ # @private
125
+ def stubbing_method_on_non_mock_object
126
+ @options[:stubbing_method_on_non_mock_object]
127
+ end
128
+
129
+ # Configure whether stubbing of non-existent methods is allowed.
130
+ #
131
+ # This is useful if you want to ensure that methods you're mocking really exist. A common criticism of unit tests with mock objects is that such a test may (incorrectly) pass when an equivalent non-mocking test would (correctly) fail. While you should always have some integration tests, particularly for critical business functionality, this Mocha configuration setting should catch scenarios when mocked methods and real methods have become misaligned.
132
+ #
133
+ # When +value+ is +:allow+, do nothing. This is the default.
134
+ # When +value+ is +:warn+, display a warning.
135
+ # When +value+ is +:prevent+, raise a {StubbingError}.
136
+ #
137
+ # @param [Symbol] value one of +:allow+, +:warn+, +:prevent+.
138
+ #
139
+ # @example Preventing stubbing of a non-existent method
140
+ #
141
+ # Mocha.configure do |c|
142
+ # c.stubbing_non_existent_method = :prevent
143
+ # end
144
+ #
145
+ # class Example
146
+ # end
147
+ #
148
+ # example = Example.new
149
+ # example.stubs(:method_that_doesnt_exist)
150
+ # # => Mocha::StubbingError: stubbing non-existent method:
151
+ # # => #<Example:0x593760>.method_that_doesnt_exist
152
+ #
153
+ def stubbing_non_existent_method=(value)
154
+ @options[:stubbing_non_existent_method] = value
155
+ end
156
+
157
+ # @private
158
+ def stubbing_non_existent_method
159
+ @options[:stubbing_non_existent_method]
160
+ end
161
+
162
+ # Configure whether stubbing of non-public methods is allowed.
163
+ #
164
+ # Many people think that it's good practice only to mock public methods. This is one way to prevent your tests being too tightly coupled to the internal implementation of a class. Such tests tend to be very brittle and not much use when refactoring.
165
+ #
166
+ # When +value+ is +:allow+, do nothing. This is the default.
167
+ # When +value+ is +:warn+, display a warning.
168
+ # When +value+ is +:prevent+, raise a {StubbingError}.
169
+ #
170
+ # @param [Symbol] value one of +:allow+, +:warn+, +:prevent+.
171
+ #
172
+ # @example Preventing stubbing of a non-public method
173
+ # Mocha.configure do |c|
174
+ # c.stubbing_non_public_method = :prevent
175
+ # end
176
+ #
177
+ # class Example
178
+ # def internal_method; end
179
+ # private :internal_method
180
+ # end
181
+ #
182
+ # example = Example.new
183
+ # example.stubs(:internal_method)
184
+ # # => Mocha::StubbingError: stubbing non-public method:
185
+ # # => #<Example:0x593530>.internal_method
186
+ #
187
+ def stubbing_non_public_method=(value)
188
+ @options[:stubbing_non_public_method] = value
189
+ end
190
+
191
+ # @private
192
+ def stubbing_non_public_method
193
+ @options[:stubbing_non_public_method]
194
+ end
195
+
196
+ # Configure whether stubbing methods on the +nil+ object is allowed.
197
+ #
198
+ # This is usually done accidentally, but there might be rare cases where it is intended.
199
+ #
200
+ # This option only works for Ruby < v2.2.0. In later versions of Ruby +nil+ is frozen and so a {StubbingError} will be raised if you attempt to stub a method on +nil+.
201
+ #
202
+ # When +value+ is +:allow+, do nothing.
203
+ # When +value+ is +:warn+, display a warning.
204
+ # When +value+ is +:prevent+, raise a {StubbingError}. This is the default.
205
+ #
206
+ # @param [Symbol] value one of +:allow+, +:warn+, +:prevent+.
207
+ #
208
+ def stubbing_method_on_nil=(value)
209
+ @options[:stubbing_method_on_nil] = value
210
+ end
211
+
212
+ # @private
213
+ def stubbing_method_on_nil
214
+ @options[:stubbing_method_on_nil]
215
+ end
15
216
 
217
+ # Display matching invocations alongside expectations on Mocha-related test failure.
218
+ #
219
+ # @param [Boolean] value +true+ to enable display of matching invocations; disabled by default.
220
+ #
221
+ # @example Enable display of matching invocations
222
+ # Mocha.configure do |c|
223
+ # c.display_matching_invocations_on_failure = true
224
+ # end
225
+ #
226
+ # foo = mock('foo')
227
+ # foo.expects(:bar)
228
+ # foo.stubs(:baz).returns('baz').raises(RuntimeError).throws(:tag, 'value')
229
+ #
230
+ # foo.baz(1, 2)
231
+ # assert_raises(RuntimeError) { foo.baz(3, 4) }
232
+ # assert_throws(:tag) { foo.baz(5, 6) }
233
+ #
234
+ # not all expectations were satisfied
235
+ # unsatisfied expectations:
236
+ # - expected exactly once, invoked never: #<Mock:foo>.bar
237
+ # satisfied expectations:
238
+ # - allowed any number of times, invoked 3 times: #<Mock:foo>.baz(any_parameters)
239
+ # - #<Mock:foo>.baz(1, 2) # => "baz"
240
+ # - #<Mock:foo>.baz(3, 4) # => raised RuntimeError
241
+ # - #<Mock:foo>.baz(5, 6) # => threw (:tag, "value")
242
+ def display_matching_invocations_on_failure=(value)
243
+ @options[:display_matching_invocations_on_failure] = value
244
+ end
245
+
246
+ # @private
247
+ def display_matching_invocations_on_failure?
248
+ @options[:display_matching_invocations_on_failure]
249
+ end
250
+
251
+ # Reinstate undocumented behaviour from v1.9
252
+ #
253
+ # Previously when {API#mock}, {API#stub}, or {API#stub_everything} were called with the first argument being a symbol, they built an *unnamed* mock object *and* expected or stubbed the method identified by the symbol argument; subsequent arguments were ignored.
254
+ # Now these methods build a *named* mock with the name specified by the symbol argument; *no* methods are expected or stubbed and subsequent arguments *are* taken into account.
255
+ #
256
+ # Previously if {Expectation#yields} or {Expectation#multiple_yields} was called on an expectation, but no block was given when the method was invoked, the instruction to yield was ignored.
257
+ # Now a +LocalJumpError+ is raised.
258
+ #
259
+ # Enabling this configuration option reinstates the previous behaviour, but displays a deprecation warning.
260
+ #
261
+ # @param [Boolean] value +true+ to reinstate undocumented behaviour; disabled by default.
262
+ # @deprecated Fix deprecation warnings caused by reliance on v1.9 behaviour and remove calls to this method.
263
+ #
264
+ # @example Reinstate undocumented behaviour for {API#mock}
265
+ # Mocha.configure do |c|
266
+ # c.reinstate_undocumented_behaviour_from_v1_9 = true
267
+ # end
268
+ #
269
+ # foo = mock(:bar)
270
+ # foo.inspect # => #<Mock>
271
+ #
272
+ # not all expectations were satisfied
273
+ # unsatisfied expectations:
274
+ # - expected exactly once, invoked never: #<Mock>.foo
275
+ #
276
+ # @example Reinstate undocumented behaviour for {API#stub}
277
+ # Mocha.configure do |c|
278
+ # c.reinstate_undocumented_behaviour_from_v1_9 = true
279
+ # end
280
+ #
281
+ # foo = stub(:bar)
282
+ # foo.inspect # => #<Mock>
283
+ # foo.bar # => nil
284
+ #
285
+ # @example Reinstate undocumented behaviour for {Expectation#yields}
286
+ # foo = mock('foo')
287
+ # foo.stubs(:my_method).yields(1, 2)
288
+ # foo.my_method # => raises LocalJumpError when no block is supplied
289
+ #
290
+ # Mocha.configure do |c|
291
+ # c.reinstate_undocumented_behaviour_from_v1_9 = true
292
+ # end
293
+ #
294
+ # foo = mock('foo')
295
+ # foo.stubs(:my_method).yields(1, 2)
296
+ # foo.my_method # => does *not* raise LocalJumpError when no block is supplied
297
+ #
298
+ def reinstate_undocumented_behaviour_from_v1_9=(value)
299
+ if value
300
+ sentence1 = 'Configuration#reinstate_undocumented_behaviour_from_v1_9= will be removed in the future.'
301
+ sentence2 = 'Fix deprecation warnings caused by reliance on v1.9 behaviour.'
302
+ sentence3 = 'See docs for API#mock, API#stub, API#stub_everything, Expectation#yields and Expectation#multiple_yields.'
303
+ Deprecation.warning([sentence1, sentence2, sentence3].join(' '))
304
+ else
305
+ sentence1 = 'Configuration#reinstate_undocumented_behaviour_from_v1_9= is unnecessarily being set to false, because this is now the default value.'
306
+ sentence2 = 'Configuration#reinstate_undocumented_behaviour_from_v1_9= will be removed in the future, so you should avoid calling it.'
307
+ Deprecation.warning([sentence1, sentence2].join(' '))
308
+ end
309
+ @options[:reinstate_undocumented_behaviour_from_v1_9] = value
310
+ end
311
+
312
+ # @private
313
+ def reinstate_undocumented_behaviour_from_v1_9?
314
+ @options[:reinstate_undocumented_behaviour_from_v1_9]
315
+ end
316
+
317
+ class << self
16
318
  # Allow the specified +action+.
17
319
  #
18
320
  # @param [Symbol] action one of +:stubbing_method_unnecessarily+, +:stubbing_method_on_non_mock_object+, +:stubbing_non_existent_method+, +:stubbing_non_public_method+, +:stubbing_method_on_nil+.
19
321
  # @yield optional block during which the configuration change will be changed before being returned to its original value at the end of the block.
322
+ # @deprecated If a block is supplied, call {.override} with a +Hash+ containing an entry with the +action+ as the key and +:allow+ as the value. If no block is supplied, call the appropriate +action+ writer method with +value+ set to +:allow+ via {Mocha.configure}. The writer method will be the one of the following corresponding to the +action+:
323
+ # * {#stubbing_method_unnecessarily=}
324
+ # * {#stubbing_method_on_non_mock_object=}
325
+ # * {#stubbing_non_existent_method=}
326
+ # * {#stubbing_non_public_method=}
327
+ # * {#stubbing_method_on_nil=}
20
328
  def allow(action, &block)
329
+ if block_given?
330
+ Deprecation.warning("Use Mocha::Configuration.override(#{action}: :allow) with the same block")
331
+ else
332
+ Deprecation.warning("Use Mocha.configure { |c| c.#{action} = :allow }")
333
+ end
21
334
  change_config action, :allow, &block
22
335
  end
23
336
 
24
337
  # @private
25
338
  def allow?(action)
26
- configuration[action] == :allow
339
+ configuration.allow?(action)
27
340
  end
28
341
 
29
342
  # Warn if the specified +action+ is attempted.
30
343
  #
31
344
  # @param [Symbol] action one of +:stubbing_method_unnecessarily+, +:stubbing_method_on_non_mock_object+, +:stubbing_non_existent_method+, +:stubbing_non_public_method+, +:stubbing_method_on_nil+.
32
345
  # @yield optional block during which the configuration change will be changed before being returned to its original value at the end of the block.
346
+ # @deprecated If a block is supplied, call {.override} with a +Hash+ containing an entry with the +action+ as the key and +:warn+ as the value. If no block is supplied, call the appropriate +action+ writer method with +value+ set to +:warn+ via {Mocha.configure}. The writer method will be the one of the following corresponding to the +action+:
347
+ # * {#stubbing_method_unnecessarily=}
348
+ # * {#stubbing_method_on_non_mock_object=}
349
+ # * {#stubbing_non_existent_method=}
350
+ # * {#stubbing_non_public_method=}
351
+ # * {#stubbing_method_on_nil=}
33
352
  def warn_when(action, &block)
353
+ if block_given?
354
+ Deprecation.warning("Use Mocha::Configuration.override(#{action}: :warn) with the same block")
355
+ else
356
+ Deprecation.warning("Use Mocha.configure { |c| c.#{action} = :warn }")
357
+ end
34
358
  change_config action, :warn, &block
35
359
  end
36
360
 
37
361
  # @private
38
362
  def warn_when?(action)
39
- configuration[action] == :warn
363
+ configuration.warn_when?(action)
40
364
  end
41
365
 
42
- # Raise a {StubbingError} if if the specified +action+ is attempted.
366
+ # Raise a {StubbingError} if the specified +action+ is attempted.
43
367
  #
44
368
  # @param [Symbol] action one of +:stubbing_method_unnecessarily+, +:stubbing_method_on_non_mock_object+, +:stubbing_non_existent_method+, +:stubbing_non_public_method+, +:stubbing_method_on_nil+.
45
369
  # @yield optional block during which the configuration change will be changed before being returned to its original value at the end of the block.
370
+ # @deprecated If a block is supplied, call {.override} with a +Hash+ containing an entry with the +action+ as the key and +:prevent+ as the value. If no block is supplied, call the appropriate +action+ writer method with +value+ set to +:prevent+ via {Mocha.configure}. The writer method will be the one of the following corresponding to the +action+:
371
+ # * {#stubbing_method_unnecessarily=}
372
+ # * {#stubbing_method_on_non_mock_object=}
373
+ # * {#stubbing_non_existent_method=}
374
+ # * {#stubbing_non_public_method=}
375
+ # * {#stubbing_method_on_nil=}
46
376
  def prevent(action, &block)
377
+ if block_given?
378
+ Deprecation.warning("Use Mocha::Configuration.override(#{action}: :prevent) with the same block")
379
+ else
380
+ Deprecation.warning("Use Mocha.configure { |c| c.#{action} = :prevent }")
381
+ end
47
382
  change_config action, :prevent, &block
48
383
  end
49
384
 
50
385
  # @private
51
386
  def prevent?(action)
52
- configuration[action] == :prevent
387
+ configuration.prevent?(action)
53
388
  end
54
389
 
55
390
  # @private
@@ -57,33 +392,52 @@ module Mocha
57
392
  @configuration = nil
58
393
  end
59
394
 
60
- private
395
+ # Temporarily modify {Configuration} options.
396
+ #
397
+ # The supplied +temporary_options+ will override the current configuration for the duration of the supplied block.
398
+ # The configuration will be returned to its original state when the block returns.
399
+ #
400
+ # @param [Hash] temporary_options the configuration options to apply for the duration of the block.
401
+ # @yield block during which the configuration change will be in force.
402
+ #
403
+ # @example Temporarily allow stubbing of +nil+
404
+ # Mocha::Configuration.override(stubbing_method_on_nil: :allow) do
405
+ # nil.stubs(:foo)
406
+ # end
407
+ def override(temporary_options)
408
+ original_configuration = configuration
409
+ @configuration = configuration.merge(new(temporary_options))
410
+ yield
411
+ ensure
412
+ @configuration = original_configuration
413
+ end
61
414
 
62
415
  # @private
63
416
  def configuration
64
- @configuration ||= DEFAULTS.dup
417
+ @configuration ||= new
65
418
  end
66
419
 
420
+ private
421
+
67
422
  # @private
68
423
  def change_config(action, new_value, &block)
69
424
  if block_given?
70
425
  temporarily_change_config action, new_value, &block
71
426
  else
72
- configuration[action] = new_value
427
+ configuration.send("#{action}=".to_sym, new_value)
73
428
  end
74
429
  end
75
430
 
76
431
  # @private
77
- def temporarily_change_config(action, new_value, &block)
78
- original_value = configuration[action]
79
- configuration[action] = new_value
432
+ def temporarily_change_config(action, new_value)
433
+ original_configuration = configuration
434
+ new_configuration = configuration.dup
435
+ new_configuration.send("#{action}=".to_sym, new_value)
436
+ @configuration = new_configuration
80
437
  yield
81
438
  ensure
82
- configuration[action] = original_value
439
+ @configuration = original_configuration
83
440
  end
84
-
85
441
  end
86
-
87
442
  end
88
-
89
443
  end
data/lib/mocha/debug.rb CHANGED
@@ -1,11 +1,12 @@
1
1
  module Mocha
2
2
  module Debug
3
3
  OPTIONS = (ENV['MOCHA_OPTIONS'] || '').split(',').inject({}) do |hash, key|
4
- hash[key] = true; hash
4
+ hash[key] = true
5
+ hash
5
6
  end.freeze
6
7
 
7
8
  def self.puts(message)
8
- $stderr.puts(message) if OPTIONS['debug']
9
+ warn(message) if OPTIONS['debug']
9
10
  end
10
11
  end
11
12
  end
@@ -1,24 +1,21 @@
1
- require 'mocha/debug'
1
+ require 'mocha/backtrace_filter'
2
2
 
3
3
  module Mocha
4
-
5
4
  class Deprecation
6
-
7
5
  class << self
8
-
9
6
  attr_accessor :mode, :messages
10
7
 
11
- def warning(message)
8
+ def warning(*messages)
9
+ message = messages.join
12
10
  @messages << message
13
- $stderr.puts "\n*** Mocha deprecation warning: #{message}\n\n" unless mode == :disabled
14
- $stderr.puts caller.join("\n ") if mode == :debug
11
+ return if mode == :disabled
12
+ filter = BacktraceFilter.new
13
+ location = filter.filtered(caller)[0]
14
+ warn "Mocha deprecation warning at #{location}: #{message}"
15
15
  end
16
-
17
16
  end
18
17
 
19
- self.mode = Debug::OPTIONS['debug'] ? :debug : :enabled
18
+ self.mode = :enabled
20
19
  self.messages = []
21
-
22
20
  end
23
-
24
21
  end
@@ -6,8 +6,6 @@ module Mocha
6
6
  ::Minitest::Test
7
7
  elsif defined?(::MiniTest::Unit::TestCase)
8
8
  ::MiniTest::Unit::TestCase
9
- else
10
- nil
11
9
  end
12
10
  end
13
11
 
@@ -3,11 +3,9 @@ module Mocha
3
3
  module TestUnit
4
4
  def self.testcase
5
5
  if defined?(::Test::Unit::TestCase) &&
6
- !(defined?(::MiniTest::Unit::TestCase) && (::Test::Unit::TestCase < ::MiniTest::Unit::TestCase)) &&
7
- !(defined?(::MiniTest::Spec) && (::Test::Unit::TestCase < ::MiniTest::Spec))
6
+ !(defined?(::MiniTest::Unit::TestCase) && (::Test::Unit::TestCase < ::MiniTest::Unit::TestCase)) &&
7
+ !(defined?(::MiniTest::Spec) && (::Test::Unit::TestCase < ::MiniTest::Spec))
8
8
  ::Test::Unit::TestCase
9
- else
10
- nil
11
9
  end
12
10
  end
13
11
 
@@ -16,7 +14,7 @@ module Mocha
16
14
  if testcase
17
15
  begin
18
16
  require 'test/unit/version'
19
- rescue LoadError
17
+ rescue LoadError # rubocop:disable Lint/HandleExceptions
20
18
  end
21
19
  if defined?(::Test::Unit::VERSION)
22
20
  version = ::Test::Unit::VERSION
@@ -0,0 +1,13 @@
1
+ require 'mocha/backtrace_filter'
2
+
3
+ module Mocha
4
+ # @private
5
+ class ErrorWithFilteredBacktrace < StandardError
6
+ # @private
7
+ def initialize(message = nil, backtrace = [])
8
+ super(message)
9
+ filter = BacktraceFilter.new
10
+ set_backtrace(filter.filtered(backtrace))
11
+ end
12
+ end
13
+ end
@@ -1,17 +1,15 @@
1
1
  module Mocha
2
-
3
2
  class ExceptionRaiser
4
-
5
3
  def initialize(exception, message)
6
- @exception, @message = exception, message
4
+ @exception = exception
5
+ @message = message
7
6
  end
8
7
 
9
- def evaluate
8
+ def evaluate(invocation)
9
+ invocation.raised(@exception)
10
10
  raise @exception, @exception.to_s if @exception.is_a?(Module) && (@exception < Interrupt)
11
11
  raise @exception, @message if @message
12
12
  raise @exception
13
13
  end
14
-
15
14
  end
16
-
17
15
  end