mocha 1.9.0 → 1.11.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (215) hide show
  1. checksums.yaml +4 -4
  2. data/.github/FUNDING.yml +1 -0
  3. data/.rubocop.yml +3 -0
  4. data/.rubocop_todo.yml +7 -30
  5. data/.yardopts +1 -0
  6. data/README.md +30 -11
  7. data/RELEASE.md +93 -0
  8. data/Rakefile +10 -7
  9. data/docs/CNAME +1 -0
  10. data/docs/Mocha.html +132 -5
  11. data/docs/Mocha/API.html +437 -206
  12. data/docs/Mocha/ClassMethods.html +13 -16
  13. data/docs/Mocha/Configuration.html +1126 -227
  14. data/docs/Mocha/Expectation.html +420 -267
  15. data/docs/Mocha/ExpectationError.html +5 -10
  16. data/docs/Mocha/ExpectationErrorFactory.html +9 -18
  17. data/docs/Mocha/Hooks.html +12 -27
  18. data/docs/Mocha/Integration.html +3 -3
  19. data/docs/Mocha/Integration/MiniTest.html +3 -3
  20. data/docs/Mocha/Integration/MiniTest/Adapter.html +5 -6
  21. data/docs/Mocha/Integration/TestUnit.html +3 -3
  22. data/docs/Mocha/Integration/TestUnit/Adapter.html +5 -6
  23. data/docs/Mocha/Mock.html +202 -162
  24. data/docs/Mocha/ObjectMethods.html +121 -68
  25. data/docs/Mocha/ParameterMatchers.html +21 -109
  26. data/docs/Mocha/ParameterMatchers/AllOf.html +4 -5
  27. data/docs/Mocha/ParameterMatchers/AnyOf.html +4 -5
  28. data/docs/Mocha/ParameterMatchers/AnyParameters.html +3 -3
  29. data/docs/Mocha/ParameterMatchers/Anything.html +3 -3
  30. data/docs/Mocha/ParameterMatchers/Base.html +8 -15
  31. data/docs/Mocha/ParameterMatchers/Equals.html +4 -5
  32. data/docs/Mocha/ParameterMatchers/EquivalentUri.html +3 -3
  33. data/docs/Mocha/ParameterMatchers/HasEntries.html +4 -5
  34. data/docs/Mocha/ParameterMatchers/HasEntry.html +4 -5
  35. data/docs/Mocha/ParameterMatchers/HasKey.html +4 -5
  36. data/docs/Mocha/ParameterMatchers/HasValue.html +4 -5
  37. data/docs/Mocha/ParameterMatchers/Includes.html +4 -5
  38. data/docs/Mocha/ParameterMatchers/InstanceOf.html +4 -5
  39. data/docs/Mocha/ParameterMatchers/IsA.html +3 -3
  40. data/docs/Mocha/ParameterMatchers/KindOf.html +4 -5
  41. data/docs/Mocha/ParameterMatchers/Not.html +4 -5
  42. data/docs/Mocha/ParameterMatchers/Optionally.html +3 -3
  43. data/docs/Mocha/ParameterMatchers/RegexpMatches.html +4 -5
  44. data/docs/Mocha/ParameterMatchers/RespondsWith.html +4 -5
  45. data/docs/Mocha/ParameterMatchers/YamlEquivalent.html +4 -5
  46. data/docs/Mocha/Sequence.html +3 -3
  47. data/docs/Mocha/StateMachine.html +13 -25
  48. data/docs/Mocha/StateMachine/State.html +4 -5
  49. data/docs/Mocha/StateMachine/StatePredicate.html +4 -5
  50. data/docs/Mocha/StubbingError.html +3 -3
  51. data/docs/_index.html +4 -22
  52. data/docs/class_list.html +1 -1
  53. data/docs/file.COPYING.html +3 -3
  54. data/docs/file.MIT-LICENSE.html +3 -3
  55. data/docs/file.README.html +36 -14
  56. data/docs/file.RELEASE.html +126 -3
  57. data/docs/frames.html +1 -1
  58. data/docs/index.html +36 -14
  59. data/docs/method_list.html +117 -37
  60. data/docs/top-level-namespace.html +3 -3
  61. data/gemfiles/Gemfile.minitest.5.11.3 +7 -0
  62. data/init.rb +1 -3
  63. data/lib/mocha.rb +8 -0
  64. data/lib/mocha/any_instance_method.rb +9 -25
  65. data/lib/mocha/api.rb +120 -56
  66. data/lib/mocha/block_matcher.rb +31 -0
  67. data/lib/mocha/cardinality.rb +26 -11
  68. data/lib/mocha/class_methods.rb +17 -15
  69. data/lib/mocha/configuration.rb +351 -67
  70. data/lib/mocha/deprecation.rb +2 -1
  71. data/lib/mocha/detection/test_unit.rb +1 -3
  72. data/lib/mocha/exception_raiser.rb +2 -1
  73. data/lib/mocha/expectation.rb +102 -63
  74. data/lib/mocha/expectation_error.rb +1 -3
  75. data/lib/mocha/expectation_list.rb +6 -6
  76. data/lib/mocha/inspect.rb +28 -26
  77. data/lib/mocha/instance_method.rb +19 -2
  78. data/lib/mocha/integration.rb +1 -3
  79. data/lib/mocha/integration/mini_test.rb +7 -0
  80. data/lib/mocha/integration/test_unit.rb +7 -0
  81. data/lib/mocha/invocation.rb +77 -0
  82. data/lib/mocha/macos_version.rb +5 -0
  83. data/lib/mocha/minitest.rb +6 -1
  84. data/lib/mocha/mock.rb +46 -31
  85. data/lib/mocha/mockery.rb +25 -61
  86. data/lib/mocha/names.rb +1 -1
  87. data/lib/mocha/object_methods.rb +13 -19
  88. data/lib/mocha/parameter_matchers.rb +1 -1
  89. data/lib/mocha/parameter_matchers/all_of.rb +1 -1
  90. data/lib/mocha/parameter_matchers/any_of.rb +1 -1
  91. data/lib/mocha/parameter_matchers/equivalent_uri.rb +0 -9
  92. data/lib/mocha/parameter_matchers/includes.rb +2 -0
  93. data/lib/mocha/parameter_matchers/instance_methods.rb +18 -0
  94. data/lib/mocha/raised_exception.rb +11 -0
  95. data/lib/mocha/return_values.rb +3 -3
  96. data/lib/mocha/setup.rb +5 -0
  97. data/lib/mocha/single_return_value.rb +2 -1
  98. data/lib/mocha/singleton_class.rb +9 -0
  99. data/lib/mocha/{class_method.rb → stubbed_method.rb} +23 -43
  100. data/lib/mocha/test_unit.rb +6 -1
  101. data/lib/mocha/thrower.rb +2 -1
  102. data/lib/mocha/thrown_object.rb +12 -0
  103. data/lib/mocha/version.rb +1 -1
  104. data/lib/mocha/yield_parameters.rb +5 -11
  105. data/mocha.gemspec +1 -3
  106. data/test/acceptance/acceptance_test_helper.rb +7 -0
  107. data/test/acceptance/bug_18914_test.rb +0 -1
  108. data/test/acceptance/bug_21465_test.rb +0 -1
  109. data/test/acceptance/bug_21563_test.rb +0 -1
  110. data/test/acceptance/display_matching_invocations_alongside_expectations_test.rb +69 -0
  111. data/test/acceptance/exception_rescue_test.rb +1 -2
  112. data/test/acceptance/expectations_on_multiple_methods_test.rb +0 -1
  113. data/test/acceptance/expected_invocation_count_test.rb +2 -3
  114. data/test/acceptance/failure_messages_test.rb +16 -1
  115. data/test/acceptance/issue_272_test.rb +1 -2
  116. data/test/acceptance/issue_65_test.rb +0 -1
  117. data/test/acceptance/issue_70_test.rb +0 -1
  118. data/test/acceptance/mocha_example_test.rb +0 -1
  119. data/test/acceptance/mocha_test_result_test.rb +0 -1
  120. data/test/acceptance/mock_built_with_first_argument_type_being_string_test.rb +98 -0
  121. data/test/acceptance/mock_test.rb +63 -6
  122. data/test/acceptance/mocked_methods_dispatch_test.rb +0 -1
  123. data/test/acceptance/multiple_expectations_failure_message_test.rb +0 -1
  124. data/test/acceptance/multiple_yielding_test.rb +59 -0
  125. data/test/acceptance/optional_parameters_test.rb +0 -1
  126. data/test/acceptance/parameter_matcher_test.rb +0 -1
  127. data/test/acceptance/partial_mocks_test.rb +0 -1
  128. data/test/acceptance/prepend_test.rb +0 -1
  129. data/test/acceptance/prevent_use_of_mocha_outside_test_test.rb +0 -1
  130. data/test/acceptance/raise_exception_test.rb +0 -1
  131. data/test/acceptance/return_value_test.rb +0 -1
  132. data/test/acceptance/sequence_test.rb +0 -1
  133. data/test/acceptance/states_test.rb +0 -1
  134. data/test/acceptance/stub_any_instance_method_defined_on_superclass_test.rb +1 -2
  135. data/test/acceptance/stub_any_instance_method_test.rb +20 -1
  136. data/test/acceptance/stub_class_method_defined_on_active_record_association_proxy_test.rb +0 -1
  137. data/test/acceptance/stub_class_method_defined_on_class_test.rb +0 -1
  138. data/test/acceptance/stub_class_method_defined_on_module_test.rb +0 -1
  139. data/test/acceptance/stub_class_method_defined_on_superclass_test.rb +1 -2
  140. data/test/acceptance/stub_everything_test.rb +0 -1
  141. data/test/acceptance/stub_instance_method_defined_on_active_record_association_proxy_test.rb +0 -1
  142. data/test/acceptance/stub_instance_method_defined_on_class_and_aliased_test.rb +0 -1
  143. data/test/acceptance/stub_instance_method_defined_on_class_test.rb +0 -1
  144. data/test/acceptance/stub_instance_method_defined_on_kernel_module_test.rb +0 -1
  145. data/test/acceptance/stub_instance_method_defined_on_module_test.rb +0 -1
  146. data/test/acceptance/stub_instance_method_defined_on_object_class_test.rb +0 -1
  147. data/test/acceptance/stub_instance_method_defined_on_singleton_class_test.rb +0 -1
  148. data/test/acceptance/stub_instance_method_defined_on_superclass_test.rb +0 -1
  149. data/test/acceptance/stub_method_defined_on_module_and_aliased_test.rb +0 -1
  150. data/test/acceptance/stub_module_method_test.rb +0 -1
  151. data/test/acceptance/stub_test.rb +0 -1
  152. data/test/acceptance/stubba_example_test.rb +0 -1
  153. data/test/acceptance/stubba_test_result_test.rb +0 -1
  154. data/test/acceptance/stubbing_error_backtrace_test.rb +4 -5
  155. data/test/acceptance/stubbing_frozen_object_test.rb +0 -1
  156. data/test/acceptance/stubbing_method_accepting_block_parameter_test.rb +0 -1
  157. data/test/acceptance/stubbing_method_unnecessarily_test.rb +5 -5
  158. data/test/acceptance/stubbing_nil_test.rb +5 -5
  159. data/test/acceptance/stubbing_non_existent_any_instance_method_test.rb +27 -11
  160. data/test/acceptance/stubbing_non_existent_class_method_test.rb +11 -11
  161. data/test/acceptance/stubbing_non_existent_instance_method_test.rb +11 -11
  162. data/test/acceptance/stubbing_non_public_any_instance_method_test.rb +8 -8
  163. data/test/acceptance/stubbing_non_public_class_method_test.rb +9 -9
  164. data/test/acceptance/stubbing_non_public_instance_method_test.rb +9 -9
  165. data/test/acceptance/stubbing_on_non_mock_object_test.rb +5 -5
  166. data/test/acceptance/stubbing_same_class_method_on_parent_and_child_classes_test.rb +0 -1
  167. data/test/acceptance/throw_test.rb +0 -1
  168. data/test/acceptance/unexpected_invocation_test.rb +0 -1
  169. data/test/acceptance/unstubbing_test.rb +0 -1
  170. data/test/acceptance/yielding_test.rb +80 -0
  171. data/test/integration/shared_tests.rb +5 -3
  172. data/test/method_definer.rb +11 -17
  173. data/test/test_runner.rb +2 -0
  174. data/test/unit/any_instance_method_test.rb +41 -40
  175. data/test/unit/cardinality_test.rb +41 -23
  176. data/test/unit/central_test.rb +0 -1
  177. data/test/unit/class_methods_test.rb +1 -1
  178. data/test/unit/configuration_test.rb +12 -12
  179. data/test/unit/exception_raiser_test.rb +10 -5
  180. data/test/unit/expectation_list_test.rb +13 -11
  181. data/test/unit/expectation_test.rb +115 -103
  182. data/test/unit/instance_method_test.rb +282 -0
  183. data/test/unit/mock_test.rb +28 -19
  184. data/test/unit/mockery_test.rb +8 -11
  185. data/test/unit/module_methods_test.rb +2 -3
  186. data/test/unit/object_inspect_test.rb +6 -4
  187. data/test/unit/object_methods_test.rb +3 -2
  188. data/test/unit/parameter_matchers/equivalent_uri_test.rb +0 -9
  189. data/test/unit/parameter_matchers/has_entries_test.rb +1 -1
  190. data/test/unit/parameter_matchers/has_entry_test.rb +1 -1
  191. data/test/unit/parameter_matchers/has_key_test.rb +1 -1
  192. data/test/unit/parameter_matchers/has_value_test.rb +1 -1
  193. data/test/unit/parameter_matchers/includes_test.rb +1 -1
  194. data/test/unit/parameter_matchers/responds_with_test.rb +1 -1
  195. data/test/unit/return_values_test.rb +25 -20
  196. data/test/unit/single_return_value_test.rb +6 -1
  197. data/test/unit/thrower_test.rb +7 -2
  198. data/test/unit/yield_parameters_test.rb +35 -53
  199. metadata +19 -34
  200. data/docs/Mocha/UnexpectedInvocation.html +0 -140
  201. data/lib/mocha/mini_test.rb +0 -5
  202. data/lib/mocha/module_method.rb +0 -6
  203. data/lib/mocha/module_methods.rb +0 -10
  204. data/lib/mocha/multiple_yields.rb +0 -15
  205. data/lib/mocha/no_yields.rb +0 -5
  206. data/lib/mocha/parameter_matchers/object.rb +0 -15
  207. data/lib/mocha/single_yield.rb +0 -13
  208. data/lib/mocha/standalone.rb +0 -4
  209. data/lib/mocha/unexpected_invocation.rb +0 -24
  210. data/lib/mocha_standalone.rb +0 -4
  211. data/test/acceptance/mock_with_initializer_block_test.rb +0 -56
  212. data/test/unit/class_method_test.rb +0 -276
  213. data/test/unit/multiple_yields_test.rb +0 -16
  214. data/test/unit/no_yields_test.rb +0 -16
  215. data/test/unit/single_yield_test.rb +0 -16
@@ -1,117 +1,379 @@
1
1
  module Mocha
2
- # This class allows you to determine what should happen under certain circumstances. In each scenario, Mocha can be configured to {.allow do nothing}, {.warn_when display a warning message}, or {.prevent raise an exception}. The relevant scenario is identified using one of the following symbols:
2
+ # Allows setting of configuration options. See {Configuration} for the available options.
3
3
  #
4
- # * +:stubbing_method_unnecessarily+ This is useful for identifying unused stubs. Unused stubs are often accidentally introduced when code is {http://martinfowler.com/bliki/DefinitionOfRefactoring.html refactored}. Allowed by default.
5
- # * +:stubbing_non_existent_method+ - 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. Allowed by default.
6
- # * +:stubbing_non_public_method+ - 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. Allowed by default.
7
- # * +:stubbing_method_on_non_mock_object+ - 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. Allowed by default.
8
- # * +:stubbing_method_on_nil+ - This is usually done accidentally, but there might be rare cases where it is intended. Prevented by default.
4
+ # Typically the configuration is set globally in a +test_helper.rb+ or +spec_helper.rb+ file.
9
5
  #
10
- # @example Preventing unnecessary stubbing of a method
11
- # Mocha::Configuration.prevent(:stubbing_method_unnecessarily)
6
+ # @see Configuration
12
7
  #
13
- # example = mock('example')
14
- # example.stubs(:unused_stub)
15
- # # => Mocha::StubbingError: stubbing method unnecessarily:
16
- # # => #<Mock:example>.unused_stub(any_parameters)
8
+ # @yieldparam configuration [Configuration] the configuration for modification
17
9
  #
18
- # @example Preventing stubbing of a method on a non-mock object
19
- # Mocha::Configuration.prevent(:stubbing_method_on_non_mock_object)
20
- #
21
- # class Example
22
- # def example_method; end
23
- # end
24
- #
25
- # example = Example.new
26
- # example.stubs(:example_method)
27
- # # => Mocha::StubbingError: stubbing method on non-mock object:
28
- # # => #<Example:0x593620>.example_method
29
- #
30
- # @example Preventing stubbing of a non-existent method
31
- #
32
- # Mocha::Configuration.prevent(:stubbing_non_existent_method)
33
- #
34
- # class Example
35
- # end
36
- #
37
- # example = Example.new
38
- # example.stubs(:method_that_doesnt_exist)
39
- # # => Mocha::StubbingError: stubbing non-existent method:
40
- # # => #<Example:0x593760>.method_that_doesnt_exist
41
- #
42
- # @example Preventing stubbing of a non-public method
43
- # Mocha::Configuration.prevent(:stubbing_non_public_method)
44
- #
45
- # class Example
46
- # def internal_method; end
47
- # private :internal_method
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
48
15
  # end
49
16
  #
50
- # example = Example.new
51
- # example.stubs(:internal_method)
52
- # # => Mocha::StubbingError: stubbing non-public method:
53
- # # => #<Example:0x593530>.internal_method
54
- #
55
- # Typically the configuration would be set globally in a +test_helper.rb+ or +spec_helper.rb+ file. However, it can also be temporarily overridden locally using the block syntax of the relevant method. In the latter case, the original configuration settings are restored when the block is exited.
17
+ def self.configure
18
+ yield configuration
19
+ end
20
+
21
+ # @private
22
+ def self.configuration
23
+ Configuration.configuration
24
+ end
25
+
26
+ # This class provides a number of ways to configure the library.
56
27
  #
57
- # @example Temporarily allowing stubbing of a non-existent method
58
- # Mocha::Configuration.prevent(:stubbing_non_public_method)
28
+ # Typically the configuration is set globally in a +test_helper.rb+ or +spec_helper.rb+ file.
59
29
  #
60
- # class Example
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
61
35
  # end
62
36
  #
63
- # Mocha::Configuration.allow(:stubbing_non_existent_method) do
64
- # example = Example.new
65
- # example.stubs(:method_that_doesnt_exist)
66
- # # => no exception raised
67
- # end
68
37
  class Configuration
38
+ # @private
69
39
  DEFAULTS = {
70
40
  :stubbing_method_unnecessarily => :allow,
71
41
  :stubbing_method_on_non_mock_object => :allow,
72
42
  :stubbing_non_existent_method => :allow,
73
43
  :stubbing_non_public_method => :allow,
74
- :stubbing_method_on_nil => :prevent
44
+ :stubbing_method_on_nil => :prevent,
45
+ :display_matching_invocations_on_failure => false,
46
+ :reinstate_undocumented_behaviour_from_v1_9 => true
75
47
  }.freeze
76
48
 
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
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; enabled by default.
262
+ #
263
+ # @example Reinstate undocumented behaviour for {API#mock}
264
+ # Mocha.configure do |c|
265
+ # c.reinstate_undocumented_behaviour_from_v1_9 = true
266
+ # end
267
+ #
268
+ # foo = mock(:bar)
269
+ # foo.inspect # => #<Mock>
270
+ #
271
+ # not all expectations were satisfied
272
+ # unsatisfied expectations:
273
+ # - expected exactly once, invoked never: #<Mock>.foo
274
+ #
275
+ # @example Reinstate undocumented behaviour for {API#stub}
276
+ # Mocha.configure do |c|
277
+ # c.reinstate_undocumented_behaviour_from_v1_9 = true
278
+ # end
279
+ #
280
+ # foo = stub(:bar)
281
+ # foo.inspect # => #<Mock>
282
+ # foo.bar # => nil
283
+ #
284
+ # @example Reinstate undocumented behaviour for {Expectation#yields}
285
+ # foo = mock('foo')
286
+ # foo.stubs(:my_method).yields(1, 2)
287
+ # foo.my_method # => raises LocalJumpError when no block is supplied
288
+ #
289
+ # Mocha.configure do |c|
290
+ # c.reinstate_undocumented_behaviour_from_v1_9 = true
291
+ # end
292
+ #
293
+ # foo = mock('foo')
294
+ # foo.stubs(:my_method).yields(1, 2)
295
+ # foo.my_method # => does *not* raise LocalJumpError when no block is supplied
296
+ #
297
+ def reinstate_undocumented_behaviour_from_v1_9=(value)
298
+ @options[:reinstate_undocumented_behaviour_from_v1_9] = value
299
+ end
300
+
301
+ # @private
302
+ def reinstate_undocumented_behaviour_from_v1_9?
303
+ @options[:reinstate_undocumented_behaviour_from_v1_9]
304
+ end
305
+
77
306
  class << self
78
307
  # Allow the specified +action+.
79
308
  #
80
309
  # @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+.
81
310
  # @yield optional block during which the configuration change will be changed before being returned to its original value at the end of the block.
311
+ # @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+:
312
+ # * {#stubbing_method_unnecessarily=}
313
+ # * {#stubbing_method_on_non_mock_object=}
314
+ # * {#stubbing_non_existent_method=}
315
+ # * {#stubbing_non_public_method=}
316
+ # * {#stubbing_method_on_nil=}
82
317
  def allow(action, &block)
318
+ if block_given?
319
+ Deprecation.warning("Use Mocha::Configuration.override(#{action}: :allow) with the same block")
320
+ else
321
+ Deprecation.warning("Use Mocha.configure { |c| c.#{action} = :allow }")
322
+ end
83
323
  change_config action, :allow, &block
84
324
  end
85
325
 
86
326
  # @private
87
327
  def allow?(action)
88
- configuration[action] == :allow
328
+ configuration.allow?(action)
89
329
  end
90
330
 
91
331
  # Warn if the specified +action+ is attempted.
92
332
  #
93
333
  # @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+.
94
334
  # @yield optional block during which the configuration change will be changed before being returned to its original value at the end of the block.
335
+ # @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+:
336
+ # * {#stubbing_method_unnecessarily=}
337
+ # * {#stubbing_method_on_non_mock_object=}
338
+ # * {#stubbing_non_existent_method=}
339
+ # * {#stubbing_non_public_method=}
340
+ # * {#stubbing_method_on_nil=}
95
341
  def warn_when(action, &block)
342
+ if block_given?
343
+ Deprecation.warning("Use Mocha::Configuration.override(#{action}: :warn) with the same block")
344
+ else
345
+ Deprecation.warning("Use Mocha.configure { |c| c.#{action} = :warn }")
346
+ end
96
347
  change_config action, :warn, &block
97
348
  end
98
349
 
99
350
  # @private
100
351
  def warn_when?(action)
101
- configuration[action] == :warn
352
+ configuration.warn_when?(action)
102
353
  end
103
354
 
104
- # Raise a {StubbingError} if if the specified +action+ is attempted.
355
+ # Raise a {StubbingError} if the specified +action+ is attempted.
105
356
  #
106
357
  # @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+.
107
358
  # @yield optional block during which the configuration change will be changed before being returned to its original value at the end of the block.
359
+ # @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+:
360
+ # * {#stubbing_method_unnecessarily=}
361
+ # * {#stubbing_method_on_non_mock_object=}
362
+ # * {#stubbing_non_existent_method=}
363
+ # * {#stubbing_non_public_method=}
364
+ # * {#stubbing_method_on_nil=}
108
365
  def prevent(action, &block)
366
+ if block_given?
367
+ Deprecation.warning("Use Mocha::Configuration.override(#{action}: :prevent) with the same block")
368
+ else
369
+ Deprecation.warning("Use Mocha.configure { |c| c.#{action} = :prevent }")
370
+ end
109
371
  change_config action, :prevent, &block
110
372
  end
111
373
 
112
374
  # @private
113
375
  def prevent?(action)
114
- configuration[action] == :prevent
376
+ configuration.prevent?(action)
115
377
  end
116
378
 
117
379
  # @private
@@ -119,29 +381,51 @@ module Mocha
119
381
  @configuration = nil
120
382
  end
121
383
 
122
- private
384
+ # Temporarily modify {Configuration} options.
385
+ #
386
+ # The supplied +temporary_options+ will override the current configuration for the duration of the supplied block.
387
+ # The configuration will be returned to its original state when the block returns.
388
+ #
389
+ # @param [Hash] temporary_options the configuration options to apply for the duration of the block.
390
+ # @yield block during which the configuration change will be in force.
391
+ #
392
+ # @example Temporarily allow stubbing of +nil+
393
+ # Mocha::Configuration.override(stubbing_method_on_nil: :allow) do
394
+ # nil.stubs(:foo)
395
+ # end
396
+ def override(temporary_options)
397
+ original_configuration = configuration
398
+ @configuration = configuration.merge(new(temporary_options))
399
+ yield
400
+ ensure
401
+ @configuration = original_configuration
402
+ end
123
403
 
124
404
  # @private
125
405
  def configuration
126
- @configuration ||= DEFAULTS.dup
406
+ @configuration ||= new
127
407
  end
128
408
 
409
+ private
410
+
129
411
  # @private
130
412
  def change_config(action, new_value, &block)
131
413
  if block_given?
132
414
  temporarily_change_config action, new_value, &block
133
415
  else
134
- configuration[action] = new_value
416
+ configuration.send("#{action}=".to_sym, new_value)
135
417
  end
136
418
  end
137
419
 
138
420
  # @private
139
421
  def temporarily_change_config(action, new_value)
140
- original_value = configuration[action]
141
- configuration[action] = new_value
422
+ original_configuration = configuration
423
+ new_configuration = configuration.dup
424
+ new_configuration.send("#{action}=".to_sym, new_value)
425
+ @configuration = new_configuration
142
426
  yield
143
427
  ensure
144
- configuration[action] = original_value
428
+ @configuration = original_configuration
145
429
  end
146
430
  end
147
431
  end