mocha 0.10.5 → 1.13.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (262) hide show
  1. checksums.yaml +7 -0
  2. data/.github/FUNDING.yml +1 -0
  3. data/.rubocop.yml +61 -0
  4. data/.rubocop_todo.yml +27 -0
  5. data/.yardopts +24 -0
  6. data/CONTRIBUTING.md +7 -0
  7. data/COPYING.md +3 -0
  8. data/Gemfile +2 -2
  9. data/{MIT-LICENSE.rdoc → MIT-LICENSE.md} +1 -1
  10. data/README.md +363 -0
  11. data/{RELEASE.rdoc → RELEASE.md} +436 -35
  12. data/Rakefile +87 -87
  13. data/gemfiles/Gemfile.minitest.latest +2 -2
  14. data/gemfiles/Gemfile.test-unit.latest +6 -2
  15. data/init.rb +1 -3
  16. data/lib/mocha/any_instance_method.rb +12 -45
  17. data/lib/mocha/api.rb +199 -131
  18. data/lib/mocha/argument_iterator.rb +6 -10
  19. data/lib/mocha/backtrace_filter.rb +1 -5
  20. data/lib/mocha/block_matcher.rb +31 -0
  21. data/lib/mocha/cardinality.rb +77 -66
  22. data/lib/mocha/central.rb +27 -18
  23. data/lib/mocha/change_state_side_effect.rb +3 -7
  24. data/lib/mocha/class_methods.rb +62 -0
  25. data/lib/mocha/configuration.rb +399 -46
  26. data/lib/mocha/debug.rb +12 -0
  27. data/lib/mocha/deprecation.rb +11 -12
  28. data/lib/mocha/detection/mini_test.rb +23 -0
  29. data/lib/mocha/detection/test_unit.rb +27 -0
  30. data/lib/mocha/error_with_filtered_backtrace.rb +13 -0
  31. data/lib/mocha/exception_raiser.rb +8 -10
  32. data/lib/mocha/expectation.rb +290 -151
  33. data/lib/mocha/expectation_error.rb +6 -13
  34. data/lib/mocha/expectation_error_factory.rb +35 -0
  35. data/lib/mocha/expectation_list.rb +22 -22
  36. data/lib/mocha/hooks.rb +42 -0
  37. data/lib/mocha/in_state_ordering_constraint.rb +3 -7
  38. data/lib/mocha/inspect.rb +35 -43
  39. data/lib/mocha/instance_method.rb +12 -21
  40. data/lib/mocha/integration/assertion_counter.rb +13 -0
  41. data/lib/mocha/integration/mini_test/adapter.rb +52 -0
  42. data/lib/mocha/integration/mini_test/exception_translation.rb +1 -7
  43. data/lib/mocha/integration/mini_test/nothing.rb +19 -0
  44. data/lib/mocha/integration/mini_test/version_13.rb +35 -25
  45. data/lib/mocha/integration/mini_test/version_140.rb +35 -26
  46. data/lib/mocha/integration/mini_test/version_141.rb +43 -34
  47. data/lib/mocha/integration/mini_test/version_142_to_172.rb +44 -35
  48. data/lib/mocha/integration/mini_test/version_200.rb +45 -36
  49. data/lib/mocha/integration/mini_test/version_201_to_222.rb +44 -35
  50. data/lib/mocha/integration/mini_test/version_2110_to_2111.rb +70 -0
  51. data/lib/mocha/integration/mini_test/version_2112_to_320.rb +73 -0
  52. data/lib/mocha/integration/mini_test/version_230_to_2101.rb +68 -0
  53. data/lib/mocha/integration/mini_test.rb +51 -49
  54. data/lib/mocha/integration/monkey_patcher.rb +24 -0
  55. data/lib/mocha/integration/test_unit/adapter.rb +50 -0
  56. data/lib/mocha/integration/test_unit/gem_version_200.rb +39 -29
  57. data/lib/mocha/integration/test_unit/gem_version_201_to_202.rb +39 -29
  58. data/lib/mocha/integration/test_unit/gem_version_203_to_220.rb +39 -29
  59. data/lib/mocha/integration/test_unit/gem_version_230_to_250.rb +68 -0
  60. data/lib/mocha/integration/test_unit/nothing.rb +19 -0
  61. data/lib/mocha/integration/test_unit/ruby_version_185_and_below.rb +39 -29
  62. data/lib/mocha/integration/test_unit/ruby_version_186_and_above.rb +40 -30
  63. data/lib/mocha/integration/test_unit.rb +45 -51
  64. data/lib/mocha/integration.rb +6 -33
  65. data/lib/mocha/invocation.rb +77 -0
  66. data/lib/mocha/is_a.rb +0 -2
  67. data/lib/mocha/logger.rb +2 -6
  68. data/lib/mocha/macos_version.rb +5 -0
  69. data/lib/mocha/method_matcher.rb +6 -10
  70. data/lib/mocha/minitest.rb +8 -0
  71. data/lib/mocha/mock.rb +266 -79
  72. data/lib/mocha/mockery.rb +104 -106
  73. data/lib/mocha/names.rb +10 -20
  74. data/lib/mocha/not_initialized_error.rb +7 -0
  75. data/lib/mocha/object_methods.rb +169 -0
  76. data/lib/mocha/parameter_matchers/all_of.rb +18 -14
  77. data/lib/mocha/parameter_matchers/any_of.rb +19 -14
  78. data/lib/mocha/parameter_matchers/any_parameters.rb +14 -13
  79. data/lib/mocha/parameter_matchers/anything.rb +17 -14
  80. data/lib/mocha/parameter_matchers/base.rb +33 -31
  81. data/lib/mocha/parameter_matchers/equals.rb +18 -13
  82. data/lib/mocha/parameter_matchers/equivalent_uri.rb +58 -0
  83. data/lib/mocha/parameter_matchers/has_entries.rb +19 -14
  84. data/lib/mocha/parameter_matchers/has_entry.rb +58 -26
  85. data/lib/mocha/parameter_matchers/has_key.rb +18 -13
  86. data/lib/mocha/parameter_matchers/has_keys.rb +53 -0
  87. data/lib/mocha/parameter_matchers/has_value.rb +18 -13
  88. data/lib/mocha/parameter_matchers/includes.rb +80 -19
  89. data/lib/mocha/parameter_matchers/instance_methods.rb +18 -0
  90. data/lib/mocha/parameter_matchers/instance_of.rb +18 -13
  91. data/lib/mocha/parameter_matchers/is_a.rb +20 -14
  92. data/lib/mocha/parameter_matchers/kind_of.rb +20 -13
  93. data/lib/mocha/parameter_matchers/not.rb +19 -14
  94. data/lib/mocha/parameter_matchers/optionally.rb +23 -17
  95. data/lib/mocha/parameter_matchers/regexp_matches.rb +16 -12
  96. data/lib/mocha/parameter_matchers/responds_with.rb +17 -11
  97. data/lib/mocha/parameter_matchers/yaml_equivalent.rb +15 -9
  98. data/lib/mocha/parameter_matchers.rb +4 -5
  99. data/lib/mocha/parameters_matcher.rb +11 -14
  100. data/lib/mocha/raised_exception.rb +11 -0
  101. data/lib/mocha/receivers.rb +45 -0
  102. data/lib/mocha/return_values.rb +11 -15
  103. data/lib/mocha/ruby_version.rb +4 -0
  104. data/lib/mocha/sequence.rb +21 -17
  105. data/lib/mocha/setup.rb +14 -0
  106. data/lib/mocha/single_return_value.rb +5 -8
  107. data/lib/mocha/singleton_class.rb +9 -0
  108. data/lib/mocha/state_machine.rb +69 -67
  109. data/lib/mocha/stubbed_method.rb +125 -0
  110. data/lib/mocha/stubbing_error.rb +6 -14
  111. data/lib/mocha/test_unit.rb +8 -0
  112. data/lib/mocha/thrower.rb +6 -8
  113. data/lib/mocha/thrown_object.rb +12 -0
  114. data/lib/mocha/version.rb +1 -1
  115. data/lib/mocha/yield_parameters.rb +12 -22
  116. data/lib/mocha.rb +8 -3
  117. data/mocha.gemspec +43 -34
  118. data/yard-templates/default/layout/html/google_analytics.erb +8 -0
  119. data/yard-templates/default/layout/html/setup.rb +5 -0
  120. metadata +123 -268
  121. data/COPYING.rdoc +0 -3
  122. data/README.rdoc +0 -54
  123. data/examples/misc.rb +0 -43
  124. data/examples/mocha.rb +0 -25
  125. data/examples/stubba.rb +0 -64
  126. data/gemfiles/Gemfile.minitest.1.3.0 +0 -7
  127. data/gemfiles/Gemfile.minitest.1.4.0 +0 -7
  128. data/gemfiles/Gemfile.minitest.1.4.1 +0 -7
  129. data/gemfiles/Gemfile.minitest.1.4.2 +0 -7
  130. data/gemfiles/Gemfile.minitest.2.0.0 +0 -7
  131. data/gemfiles/Gemfile.minitest.2.0.1 +0 -7
  132. data/gemfiles/Gemfile.minitest.2.3.0 +0 -7
  133. data/gemfiles/Gemfile.test-unit.2.0.0 +0 -8
  134. data/gemfiles/Gemfile.test-unit.2.0.1 +0 -7
  135. data/gemfiles/Gemfile.test-unit.2.0.3 +0 -7
  136. data/lib/mocha/class_method.rb +0 -98
  137. data/lib/mocha/integration/mini_test/assertion_counter.rb +0 -23
  138. data/lib/mocha/integration/mini_test/version_230_to_262.rb +0 -59
  139. data/lib/mocha/integration/test_unit/assertion_counter.rb +0 -23
  140. data/lib/mocha/integration/test_unit/gem_version_230_to_240.rb +0 -58
  141. data/lib/mocha/module_method.rb +0 -16
  142. data/lib/mocha/multiple_yields.rb +0 -20
  143. data/lib/mocha/no_yields.rb +0 -11
  144. data/lib/mocha/object.rb +0 -223
  145. data/lib/mocha/options.rb +0 -1
  146. data/lib/mocha/parameter_matchers/object.rb +0 -15
  147. data/lib/mocha/parameter_matchers/query_string.rb +0 -47
  148. data/lib/mocha/pretty_parameters.rb +0 -28
  149. data/lib/mocha/single_yield.rb +0 -18
  150. data/lib/mocha/standalone.rb +0 -1
  151. data/lib/mocha/unexpected_invocation.rb +0 -18
  152. data/lib/mocha_standalone.rb +0 -2
  153. data/lib/stubba.rb +0 -4
  154. data/test/acceptance/acceptance_test_helper.rb +0 -41
  155. data/test/acceptance/api_test.rb +0 -139
  156. data/test/acceptance/bug_18914_test.rb +0 -43
  157. data/test/acceptance/bug_21465_test.rb +0 -34
  158. data/test/acceptance/bug_21563_test.rb +0 -25
  159. data/test/acceptance/exception_rescue_test.rb +0 -55
  160. data/test/acceptance/expectations_on_multiple_methods_test.rb +0 -55
  161. data/test/acceptance/expected_invocation_count_test.rb +0 -232
  162. data/test/acceptance/failure_messages_test.rb +0 -64
  163. data/test/acceptance/issue_65_test.rb +0 -63
  164. data/test/acceptance/issue_70_test.rb +0 -55
  165. data/test/acceptance/minitest_test.rb +0 -162
  166. data/test/acceptance/mocha_example_test.rb +0 -98
  167. data/test/acceptance/mocha_test_result_test.rb +0 -84
  168. data/test/acceptance/mock_test.rb +0 -100
  169. data/test/acceptance/mock_with_initializer_block_test.rb +0 -51
  170. data/test/acceptance/mocked_methods_dispatch_test.rb +0 -78
  171. data/test/acceptance/multiple_expectations_failure_message_test.rb +0 -68
  172. data/test/acceptance/optional_parameters_test.rb +0 -70
  173. data/test/acceptance/parameter_matcher_test.rb +0 -300
  174. data/test/acceptance/partial_mocks_test.rb +0 -47
  175. data/test/acceptance/raise_exception_test.rb +0 -39
  176. data/test/acceptance/return_value_test.rb +0 -52
  177. data/test/acceptance/sequence_test.rb +0 -192
  178. data/test/acceptance/states_test.rb +0 -70
  179. data/test/acceptance/stub_any_instance_method_test.rb +0 -198
  180. data/test/acceptance/stub_class_method_defined_on_active_record_association_proxy_test.rb +0 -106
  181. data/test/acceptance/stub_class_method_defined_on_class_test.rb +0 -72
  182. data/test/acceptance/stub_class_method_defined_on_module_test.rb +0 -75
  183. data/test/acceptance/stub_class_method_defined_on_superclass_test.rb +0 -75
  184. data/test/acceptance/stub_everything_test.rb +0 -56
  185. data/test/acceptance/stub_instance_method_defined_on_active_record_association_proxy_test.rb +0 -93
  186. data/test/acceptance/stub_instance_method_defined_on_class_and_aliased_test.rb +0 -69
  187. data/test/acceptance/stub_instance_method_defined_on_class_test.rb +0 -66
  188. data/test/acceptance/stub_instance_method_defined_on_kernel_module_test.rb +0 -75
  189. data/test/acceptance/stub_instance_method_defined_on_module_test.rb +0 -75
  190. data/test/acceptance/stub_instance_method_defined_on_object_class_test.rb +0 -75
  191. data/test/acceptance/stub_instance_method_defined_on_singleton_class_test.rb +0 -70
  192. data/test/acceptance/stub_instance_method_defined_on_superclass_test.rb +0 -72
  193. data/test/acceptance/stub_module_method_test.rb +0 -163
  194. data/test/acceptance/stub_test.rb +0 -52
  195. data/test/acceptance/stubba_example_test.rb +0 -102
  196. data/test/acceptance/stubba_test.rb +0 -15
  197. data/test/acceptance/stubba_test_result_test.rb +0 -66
  198. data/test/acceptance/stubbing_error_backtrace_test.rb +0 -64
  199. data/test/acceptance/stubbing_method_unnecessarily_test.rb +0 -65
  200. data/test/acceptance/stubbing_non_existent_any_instance_method_test.rb +0 -130
  201. data/test/acceptance/stubbing_non_existent_class_method_test.rb +0 -157
  202. data/test/acceptance/stubbing_non_existent_instance_method_test.rb +0 -147
  203. data/test/acceptance/stubbing_non_public_any_instance_method_test.rb +0 -130
  204. data/test/acceptance/stubbing_non_public_class_method_test.rb +0 -163
  205. data/test/acceptance/stubbing_non_public_instance_method_test.rb +0 -143
  206. data/test/acceptance/stubbing_on_non_mock_object_test.rb +0 -64
  207. data/test/acceptance/throw_test.rb +0 -45
  208. data/test/acceptance/unstubbing_test.rb +0 -151
  209. data/test/deprecation_disabler.rb +0 -15
  210. data/test/execution_point.rb +0 -36
  211. data/test/method_definer.rb +0 -24
  212. data/test/mini_test_result.rb +0 -83
  213. data/test/simple_counter.rb +0 -13
  214. data/test/test_helper.rb +0 -11
  215. data/test/test_runner.rb +0 -50
  216. data/test/unit/any_instance_method_test.rb +0 -136
  217. data/test/unit/array_inspect_test.rb +0 -16
  218. data/test/unit/backtrace_filter_test.rb +0 -19
  219. data/test/unit/cardinality_test.rb +0 -56
  220. data/test/unit/central_test.rb +0 -100
  221. data/test/unit/change_state_side_effect_test.rb +0 -41
  222. data/test/unit/class_method_test.rb +0 -260
  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 -71
  227. data/test/unit/expectation_test.rb +0 -480
  228. data/test/unit/hash_inspect_test.rb +0 -16
  229. data/test/unit/in_state_ordering_constraint_test.rb +0 -43
  230. data/test/unit/method_matcher_test.rb +0 -23
  231. data/test/unit/mock_test.rb +0 -312
  232. data/test/unit/mockery_test.rb +0 -150
  233. data/test/unit/multiple_yields_test.rb +0 -18
  234. data/test/unit/no_yields_test.rb +0 -18
  235. data/test/unit/object_inspect_test.rb +0 -38
  236. data/test/unit/object_test.rb +0 -87
  237. data/test/unit/parameter_matchers/all_of_test.rb +0 -26
  238. data/test/unit/parameter_matchers/any_of_test.rb +0 -26
  239. data/test/unit/parameter_matchers/anything_test.rb +0 -21
  240. data/test/unit/parameter_matchers/equals_test.rb +0 -25
  241. data/test/unit/parameter_matchers/has_entries_test.rb +0 -51
  242. data/test/unit/parameter_matchers/has_entry_test.rb +0 -96
  243. data/test/unit/parameter_matchers/has_key_test.rb +0 -55
  244. data/test/unit/parameter_matchers/has_value_test.rb +0 -57
  245. data/test/unit/parameter_matchers/includes_test.rb +0 -44
  246. data/test/unit/parameter_matchers/instance_of_test.rb +0 -25
  247. data/test/unit/parameter_matchers/is_a_test.rb +0 -25
  248. data/test/unit/parameter_matchers/kind_of_test.rb +0 -25
  249. data/test/unit/parameter_matchers/not_test.rb +0 -26
  250. data/test/unit/parameter_matchers/regexp_matches_test.rb +0 -46
  251. data/test/unit/parameter_matchers/responds_with_test.rb +0 -25
  252. data/test/unit/parameter_matchers/stub_matcher.rb +0 -27
  253. data/test/unit/parameter_matchers/yaml_equivalent_test.rb +0 -25
  254. data/test/unit/parameters_matcher_test.rb +0 -121
  255. data/test/unit/return_values_test.rb +0 -63
  256. data/test/unit/sequence_test.rb +0 -104
  257. data/test/unit/single_return_value_test.rb +0 -14
  258. data/test/unit/single_yield_test.rb +0 -18
  259. data/test/unit/state_machine_test.rb +0 -98
  260. data/test/unit/string_inspect_test.rb +0 -11
  261. data/test/unit/thrower_test.rb +0 -20
  262. data/test/unit/yield_parameters_test.rb +0 -93
@@ -1,41 +1,102 @@
1
+ require 'mocha/parameter_matchers/all_of'
1
2
  require 'mocha/parameter_matchers/base'
2
3
 
3
4
  module Mocha
4
-
5
5
  module ParameterMatchers
6
-
7
- # :call-seq: includes(item) -> parameter_matcher
6
+ # Matches any object that responds with +true+ to +include?(item)+
7
+ # for all items.
8
+ #
9
+ # @param [*Array] items expected items.
10
+ # @return [Includes] parameter matcher.
11
+ #
12
+ # @see Expectation#with
13
+ #
14
+ # @example Actual parameter includes all items.
15
+ # object = mock()
16
+ # object.expects(:method_1).with(includes('foo', 'bar'))
17
+ # object.method_1(['foo', 'bar', 'baz'])
18
+ # # no error raised
19
+ #
20
+ # @example Actual parameter does not include all items.
21
+ # object.method_1(['foo', 'baz'])
22
+ # # error raised, because ['foo', 'baz'] does not include 'bar'.
23
+ #
24
+ # @example Actual parameter includes item which matches nested matcher.
25
+ # object = mock()
26
+ # object.expects(:method_1).with(includes(has_key(:key)))
27
+ # object.method_1(['foo', 'bar', {:key => 'baz'}])
28
+ # # no error raised
29
+ #
30
+ # @example Actual parameter does not include item matching nested matcher.
31
+ # object.method_1(['foo', 'bar', {:other_key => 'baz'}])
32
+ # # error raised, because no element matches `has_key(:key)` matcher
8
33
  #
9
- # Matches any object that responds true to include?(item)
34
+ # @example Actual parameter is a String including substring.
10
35
  # object = mock()
11
- # object.expects(:method_1).with(includes('foo'))
12
- # object.method_1(['foo', 'bar'])
36
+ # object.expects(:method_1).with(includes('bar'))
37
+ # object.method_1('foobarbaz')
13
38
  # # no error raised
14
39
  #
15
- # object.method_1(['baz'])
16
- # # error raised, because ['baz'] does not include 'foo'.
17
- def includes(item)
18
- Includes.new(item)
40
+ # @example Actual parameter is a String not including substring.
41
+ # object.method_1('foobaz')
42
+ # # error raised, because 'foobaz' does not include 'bar'
43
+ #
44
+ # @example Actual parameter is a Hash including the given key.
45
+ # object = mock()
46
+ # object.expects(:method_1).with(includes(:bar))
47
+ # object.method_1({:foo => 1, :bar => 2})
48
+ # # no error raised
49
+ #
50
+ # @example Actual parameter is a Hash without the given key.
51
+ # object.method_1({:foo => 1, :baz => 2})
52
+ # # error raised, because hash does not include key 'bar'
53
+ #
54
+ # @example Actual parameter is a Hash with a key matching the given matcher.
55
+ # object = mock()
56
+ # object.expects(:method_1).with(includes(regexp_matches(/ar/)))
57
+ # object.method_1({'foo' => 1, 'bar' => 2})
58
+ # # no error raised
59
+ #
60
+ # @example Actual parameter is a Hash no key matching the given matcher.
61
+ # object.method_1({'foo' => 1, 'baz' => 3})
62
+ # # error raised, because hash does not include a key matching /ar/
63
+ def includes(*items)
64
+ Includes.new(*items)
19
65
  end
20
66
 
21
- class Includes < Base # :nodoc:
22
-
23
- def initialize(item)
24
- @item = item
67
+ # Parameter matcher which matches when actual parameter includes expected values.
68
+ class Includes < Base
69
+ # @private
70
+ def initialize(*items)
71
+ @items = items
25
72
  end
26
73
 
74
+ # @private
75
+ # rubocop:disable Metrics/PerceivedComplexity
27
76
  def matches?(available_parameters)
28
77
  parameter = available_parameters.shift
29
78
  return false unless parameter.respond_to?(:include?)
30
- return parameter.include?(@item)
79
+ if @items.size == 1
80
+ # rubocop:disable Style/GuardClause
81
+ if parameter.respond_to?(:any?) && !parameter.is_a?(String)
82
+ parameter = parameter.keys if parameter.is_a?(Hash)
83
+ return parameter.any? { |p| @items.first.to_matcher.matches?([p]) }
84
+ else
85
+ return parameter.include?(@items.first)
86
+ end
87
+ # rubocop:enable Style/GuardClause
88
+ else
89
+ includes_matchers = @items.map { |item| Includes.new(item) }
90
+ AllOf.new(*includes_matchers).matches?([parameter])
91
+ end
31
92
  end
93
+ # rubocop:enable Metrics/PerceivedComplexity
32
94
 
95
+ # @private
33
96
  def mocha_inspect
34
- "includes(#{@item.mocha_inspect})"
97
+ item_descriptions = @items.map(&:mocha_inspect)
98
+ "includes(#{item_descriptions.join(', ')})"
35
99
  end
36
-
37
100
  end
38
-
39
101
  end
40
-
41
102
  end
@@ -0,0 +1,18 @@
1
+ require 'mocha/parameter_matchers/equals'
2
+
3
+ module Mocha
4
+ module ParameterMatchers
5
+ # @private
6
+ module InstanceMethods
7
+ # @private
8
+ def to_matcher
9
+ Mocha::ParameterMatchers::Equals.new(self)
10
+ end
11
+ end
12
+ end
13
+ end
14
+
15
+ # @private
16
+ class Object
17
+ include Mocha::ParameterMatchers::InstanceMethods
18
+ end
@@ -1,17 +1,22 @@
1
1
  require 'mocha/parameter_matchers/base'
2
2
 
3
3
  module Mocha
4
-
5
4
  module ParameterMatchers
6
-
7
- # :call-seq: instance_of(klass) -> parameter_matcher
8
- #
9
5
  # Matches any object that is an instance of +klass+
6
+ #
7
+ # @param [Class] klass expected class.
8
+ # @return [InstanceOf] parameter matcher.
9
+ #
10
+ # @see Expectation#with
11
+ # @see Kernel#instance_of?
12
+ #
13
+ # @example Actual parameter is an instance of +String+.
10
14
  # object = mock()
11
15
  # object.expects(:method_1).with(instance_of(String))
12
16
  # object.method_1('string')
13
17
  # # no error raised
14
18
  #
19
+ # @example Actual parameter is not an instance of +String+.
15
20
  # object = mock()
16
21
  # object.expects(:method_1).with(instance_of(String))
17
22
  # object.method_1(99)
@@ -19,24 +24,24 @@ module Mocha
19
24
  def instance_of(klass)
20
25
  InstanceOf.new(klass)
21
26
  end
22
-
23
- class InstanceOf < Base # :nodoc:
24
-
27
+
28
+ # Parameter matcher which matches when actual parameter is an instance of the specified class.
29
+ class InstanceOf < Base
30
+ # @private
25
31
  def initialize(klass)
26
32
  @klass = klass
27
33
  end
28
-
34
+
35
+ # @private
29
36
  def matches?(available_parameters)
30
37
  parameter = available_parameters.shift
31
38
  parameter.instance_of?(@klass)
32
39
  end
33
-
40
+
41
+ # @private
34
42
  def mocha_inspect
35
43
  "instance_of(#{@klass.mocha_inspect})"
36
44
  end
37
-
38
45
  end
39
-
40
46
  end
41
-
42
- end
47
+ end
@@ -1,42 +1,48 @@
1
1
  require 'mocha/parameter_matchers/base'
2
2
 
3
3
  module Mocha
4
-
5
4
  module ParameterMatchers
6
-
7
- # :call-seq: is_a(klass) -> parameter_matcher
5
+ # Matches any object that is a +klass+.
6
+ #
7
+ # @param [Class] klass expected class.
8
+ # @return [IsA] parameter matcher.
8
9
  #
9
- # Matches any object that is a +klass+
10
+ # @see Expectation#with
11
+ # @see Kernel#is_a?
12
+ #
13
+ # @example Actual parameter is a +Integer+.
10
14
  # object = mock()
11
15
  # object.expects(:method_1).with(is_a(Integer))
12
16
  # object.method_1(99)
13
17
  # # no error raised
14
18
  #
19
+ # @example Actual parameter is not a +Integer+.
15
20
  # object = mock()
16
21
  # object.expects(:method_1).with(is_a(Integer))
17
22
  # object.method_1('string')
18
23
  # # error raised, because method_1 was not called with an Integer
19
- def is_a(klass)
24
+ #
25
+ def is_a(klass) # rubocop:disable Naming/PredicateName
20
26
  IsA.new(klass)
21
27
  end
22
-
23
- class IsA < Base # :nodoc:
24
-
28
+
29
+ # Parameter matcher which matches when actual parameter is a specific class.
30
+ class IsA < Base
31
+ # @private
25
32
  def initialize(klass)
26
33
  @klass = klass
27
34
  end
28
-
35
+
36
+ # @private
29
37
  def matches?(available_parameters)
30
38
  parameter = available_parameters.shift
31
39
  parameter.is_a?(@klass)
32
40
  end
33
-
41
+
42
+ # @private
34
43
  def mocha_inspect
35
44
  "is_a(#{@klass.mocha_inspect})"
36
45
  end
37
-
38
46
  end
39
-
40
47
  end
41
-
42
- end
48
+ end
@@ -1,17 +1,22 @@
1
1
  require 'mocha/parameter_matchers/base'
2
2
 
3
3
  module Mocha
4
-
5
4
  module ParameterMatchers
6
-
7
- # :call-seq: kind_of(klass) -> parameter_matcher
5
+ # Matches any +Object+ that is a kind of +klass+.
6
+ #
7
+ # @param [Class] klass expected class.
8
+ # @return [KindOf] parameter matcher.
9
+ #
10
+ # @see Expectation#with
11
+ # @see Kernel#kind_of?
8
12
  #
9
- # Matches any object that is a kind of +klass+
13
+ # @example Actual parameter is a kind of +Integer+.
10
14
  # object = mock()
11
15
  # object.expects(:method_1).with(kind_of(Integer))
12
16
  # object.method_1(99)
13
17
  # # no error raised
14
18
  #
19
+ # @example Actual parameter is not a kind of +Integer+.
15
20
  # object = mock()
16
21
  # object.expects(:method_1).with(kind_of(Integer))
17
22
  # object.method_1('string')
@@ -19,24 +24,26 @@ module Mocha
19
24
  def kind_of(klass)
20
25
  KindOf.new(klass)
21
26
  end
22
-
23
- class KindOf < Base # :nodoc:
24
-
27
+
28
+ # Parameter matcher which matches when actual parameter is a kind of specified class.
29
+ class KindOf < Base
30
+ # @private
25
31
  def initialize(klass)
26
32
  @klass = klass
27
33
  end
28
-
34
+
35
+ # @private
29
36
  def matches?(available_parameters)
30
37
  parameter = available_parameters.shift
38
+ # rubocop:disable Style/ClassCheck
31
39
  parameter.kind_of?(@klass)
40
+ # rubocop:enable Style/ClassCheck
32
41
  end
33
-
42
+
43
+ # @private
34
44
  def mocha_inspect
35
45
  "kind_of(#{@klass.mocha_inspect})"
36
46
  end
37
-
38
47
  end
39
-
40
48
  end
41
-
42
- end
49
+ end
@@ -1,42 +1,47 @@
1
1
  require 'mocha/parameter_matchers/base'
2
2
 
3
3
  module Mocha
4
-
5
4
  module ParameterMatchers
6
-
7
- # :call-seq: Not(parameter_matcher) -> parameter_matcher
5
+ # Matches if +matcher+ does *not* match.
6
+ #
7
+ # @param [Base] matcher matcher whose logic to invert.
8
+ # @return [Not] parameter matcher.
8
9
  #
9
- # Matches if +parameter_matcher+ does not match.
10
+ # @see Expectation#with
11
+ #
12
+ # @example Actual parameter does not include the value +1+.
10
13
  # object = mock()
11
14
  # object.expects(:method_1).with(Not(includes(1)))
12
15
  # object.method_1([0, 2, 3])
13
16
  # # no error raised
14
17
  #
18
+ # @example Actual parameter does include the value +1+.
15
19
  # object = mock()
16
20
  # object.expects(:method_1).with(Not(includes(1)))
17
21
  # object.method_1([0, 1, 2, 3])
18
22
  # # error raised, because method_1 was not called with object not including 1
19
- def Not(matcher)
23
+ #
24
+ def Not(matcher) # rubocop:disable Naming/MethodName
20
25
  Not.new(matcher)
21
26
  end
22
-
23
- class Not < Base # :nodoc:
24
-
27
+
28
+ # Parameter matcher which inverts the logic of the specified matcher using a logical NOT operation.
29
+ class Not < Base
30
+ # @private
25
31
  def initialize(matcher)
26
32
  @matcher = matcher
27
33
  end
28
-
34
+
35
+ # @private
29
36
  def matches?(available_parameters)
30
37
  parameter = available_parameters.shift
31
38
  !@matcher.matches?([parameter])
32
39
  end
33
-
40
+
41
+ # @private
34
42
  def mocha_inspect
35
43
  "Not(#{@matcher.mocha_inspect})"
36
44
  end
37
-
38
45
  end
39
-
40
46
  end
41
-
42
- end
47
+ end
@@ -1,25 +1,31 @@
1
1
  module Mocha
2
-
3
2
  module ParameterMatchers
4
-
5
- # :call-seq: optionally(*parameter_matchers) -> parameter_matcher
6
- #
7
3
  # Matches optional parameters if available.
4
+ #
5
+ # @param [*Array<Base>] matchers matchers for optional parameters.
6
+ # @return [Optionally] parameter matcher.
7
+ #
8
+ # @see Expectation#with
9
+ #
10
+ # @example Only the two required parameters are supplied and they both match their expected value.
8
11
  # object = mock()
9
12
  # object.expects(:method_1).with(1, 2, optionally(3, 4))
10
13
  # object.method_1(1, 2)
11
14
  # # no error raised
12
15
  #
16
+ # @example Both required parameters and one of the optional parameters are supplied and they all match their expected value.
13
17
  # object = mock()
14
18
  # object.expects(:method_1).with(1, 2, optionally(3, 4))
15
19
  # object.method_1(1, 2, 3)
16
20
  # # no error raised
17
21
  #
22
+ # @example Both required parameters and both of the optional parameters are supplied and they all match their expected value.
18
23
  # object = mock()
19
24
  # object.expects(:method_1).with(1, 2, optionally(3, 4))
20
25
  # object.method_1(1, 2, 3, 4)
21
26
  # # no error raised
22
27
  #
28
+ # @example One of the actual optional parameters does not match the expected value.
23
29
  # object = mock()
24
30
  # object.expects(:method_1).with(1, 2, optionally(3, 4))
25
31
  # object.method_1(1, 2, 3, 5)
@@ -27,29 +33,29 @@ module Mocha
27
33
  def optionally(*matchers)
28
34
  Optionally.new(*matchers)
29
35
  end
30
-
31
- class Optionally < Base # :nodoc:
32
-
36
+
37
+ # Parameter matcher which allows optional parameters to be specified.
38
+ class Optionally < Base
39
+ # @private
33
40
  def initialize(*parameters)
34
- @matchers = parameters.map { |parameter| parameter.to_matcher }
41
+ @matchers = parameters.map(&:to_matcher)
35
42
  end
36
-
43
+
44
+ # @private
37
45
  def matches?(available_parameters)
38
46
  index = 0
39
- while (available_parameters.length > 0) && (index < @matchers.length) do
47
+ while !available_parameters.empty? && (index < @matchers.length)
40
48
  matcher = @matchers[index]
41
49
  return false unless matcher.matches?(available_parameters)
42
50
  index += 1
43
51
  end
44
- return true
52
+ true
45
53
  end
46
-
54
+
55
+ # @private
47
56
  def mocha_inspect
48
- "optionally(#{@matchers.map { |matcher| matcher.mocha_inspect }.join(", ") })"
57
+ "optionally(#{@matchers.map(&:mocha_inspect).join(', ')})"
49
58
  end
50
-
51
59
  end
52
-
53
60
  end
54
-
55
- end
61
+ end
@@ -1,44 +1,48 @@
1
1
  require 'mocha/parameter_matchers/base'
2
2
 
3
3
  module Mocha
4
-
5
4
  module ParameterMatchers
6
-
7
- # :call-seq: regexp_matches(regular_expression) -> parameter_matcher
5
+ # Matches any object that matches +regexp+.
6
+ #
7
+ # @param [Regexp] regexp regular expression to match.
8
+ # @return [RegexpMatches] parameter matcher.
9
+ #
10
+ # @see Expectation#with
8
11
  #
9
- # Matches any object that matches +regular_expression+.
12
+ # @example Actual parameter is matched by specified regular expression.
10
13
  # object = mock()
11
14
  # object.expects(:method_1).with(regexp_matches(/e/))
12
15
  # object.method_1('hello')
13
16
  # # no error raised
14
17
  #
18
+ # @example Actual parameter is not matched by specified regular expression.
15
19
  # object = mock()
16
20
  # object.expects(:method_1).with(regexp_matches(/a/))
17
21
  # object.method_1('hello')
18
- # # error raised, because method_1 was not called with a parameter that matched the
22
+ # # error raised, because method_1 was not called with a parameter that matched the
19
23
  # # regular expression
20
24
  def regexp_matches(regexp)
21
25
  RegexpMatches.new(regexp)
22
26
  end
23
27
 
24
- class RegexpMatches < Base # :nodoc:
25
-
28
+ # Parameter matcher which matches if specified regular expression matches actual paramter.
29
+ class RegexpMatches < Base
30
+ # @private
26
31
  def initialize(regexp)
27
32
  @regexp = regexp
28
33
  end
29
-
34
+
35
+ # @private
30
36
  def matches?(available_parameters)
31
37
  parameter = available_parameters.shift
32
38
  return false unless parameter.respond_to?(:=~)
33
39
  parameter =~ @regexp
34
40
  end
35
-
41
+
42
+ # @private
36
43
  def mocha_inspect
37
44
  "regexp_matches(#{@regexp.mocha_inspect})"
38
45
  end
39
-
40
46
  end
41
-
42
47
  end
43
-
44
48
  end
@@ -2,17 +2,22 @@ require 'mocha/parameter_matchers/base'
2
2
  require 'yaml'
3
3
 
4
4
  module Mocha
5
-
6
5
  module ParameterMatchers
7
-
8
- # :call-seq: responds_with(message, result) -> parameter_matcher
9
- #
10
6
  # Matches any object that responds to +message+ with +result+. To put it another way, it tests the quack, not the duck.
7
+ #
8
+ # @param [Symbol] message method to invoke.
9
+ # @param [Object] result expected result of sending +message+.
10
+ # @return [RespondsWith] parameter matcher.
11
+ #
12
+ # @see Expectation#with
13
+ #
14
+ # @example Actual parameter responds with "FOO" when :upcase is invoked.
11
15
  # object = mock()
12
16
  # object.expects(:method_1).with(responds_with(:upcase, "FOO"))
13
17
  # object.method_1("foo")
14
18
  # # no error raised, because "foo".upcase == "FOO"
15
19
  #
20
+ # @example Actual parameter does not respond with "FOO" when :upcase is invoked.
16
21
  # object = mock()
17
22
  # object.expects(:method_1).with(responds_with(:upcase, "BAR"))
18
23
  # object.method_1("foo")
@@ -21,23 +26,24 @@ module Mocha
21
26
  RespondsWith.new(message, result)
22
27
  end
23
28
 
24
- class RespondsWith < Base # :nodoc:
25
-
29
+ # Parameter matcher which matches if actual parameter returns expected result when specified method is invoked.
30
+ class RespondsWith < Base
31
+ # @private
26
32
  def initialize(message, result)
27
- @message, @result = message, result
33
+ @message = message
34
+ @result = result
28
35
  end
29
36
 
37
+ # @private
30
38
  def matches?(available_parameters)
31
39
  parameter = available_parameters.shift
32
- parameter.__send__(@message) == @result
40
+ @result.to_matcher.matches?([parameter.__send__(@message)])
33
41
  end
34
42
 
43
+ # @private
35
44
  def mocha_inspect
36
45
  "responds_with(#{@message.mocha_inspect}, #{@result.mocha_inspect})"
37
46
  end
38
-
39
47
  end
40
-
41
48
  end
42
-
43
49
  end
@@ -2,17 +2,21 @@ require 'mocha/parameter_matchers/base'
2
2
  require 'yaml'
3
3
 
4
4
  module Mocha
5
-
6
5
  module ParameterMatchers
7
-
8
- # :call-seq: yaml_equivalent(object) -> parameter_matcher
9
- #
10
6
  # Matches any YAML that represents the specified +object+
7
+ #
8
+ # @param [Object] object object whose YAML to compare.
9
+ # @return [YamlEquivalent] parameter matcher.
10
+ #
11
+ # @see Expectation#with
12
+ #
13
+ # @example Actual parameter is YAML equivalent of specified +object+.
11
14
  # object = mock()
12
15
  # object.expects(:method_1).with(yaml_equivalent(1, 2, 3))
13
16
  # object.method_1("--- \n- 1\n- 2\n- 3\n")
14
17
  # # no error raised
15
18
  #
19
+ # @example Actual parameter is not YAML equivalent of specified +object+.
16
20
  # object = mock()
17
21
  # object.expects(:method_1).with(yaml_equivalent(1, 2, 3))
18
22
  # object.method_1("--- \n- 1\n- 2\n")
@@ -21,23 +25,25 @@ module Mocha
21
25
  YamlEquivalent.new(object)
22
26
  end
23
27
 
24
- class YamlEquivalent < Base # :nodoc:
25
-
28
+ # Parameter matcher which matches if actual parameter is YAML equivalent of specified object.
29
+ class YamlEquivalent < Base
30
+ # @private
26
31
  def initialize(object)
27
32
  @object = object
28
33
  end
29
34
 
35
+ # @private
30
36
  def matches?(available_parameters)
31
37
  parameter = available_parameters.shift
38
+ # rubocop:disable Security/YAMLLoad
32
39
  @object == YAML.load(parameter)
40
+ # rubocop:enable Security/YAMLLoad
33
41
  end
34
42
 
43
+ # @private
35
44
  def mocha_inspect
36
45
  "yaml_equivalent(#{@object.mocha_inspect})"
37
46
  end
38
-
39
47
  end
40
-
41
48
  end
42
-
43
49
  end
@@ -1,11 +1,9 @@
1
1
  module Mocha
2
-
3
- # Used as parameters for Expectation#with to restrict the parameter values which will match the expectation. Can be nested.
2
+ # Used as parameters for {Expectation#with} to restrict the parameter values which will match the expectation. Can be nested.
4
3
  module ParameterMatchers; end
5
-
6
4
  end
7
5
 
8
- require 'mocha/parameter_matchers/object'
6
+ require 'mocha/parameter_matchers/instance_methods'
9
7
 
10
8
  require 'mocha/parameter_matchers/all_of'
11
9
  require 'mocha/parameter_matchers/any_of'
@@ -15,6 +13,7 @@ require 'mocha/parameter_matchers/equals'
15
13
  require 'mocha/parameter_matchers/has_entry'
16
14
  require 'mocha/parameter_matchers/has_entries'
17
15
  require 'mocha/parameter_matchers/has_key'
16
+ require 'mocha/parameter_matchers/has_keys'
18
17
  require 'mocha/parameter_matchers/has_value'
19
18
  require 'mocha/parameter_matchers/includes'
20
19
  require 'mocha/parameter_matchers/instance_of'
@@ -25,4 +24,4 @@ require 'mocha/parameter_matchers/optionally'
25
24
  require 'mocha/parameter_matchers/regexp_matches'
26
25
  require 'mocha/parameter_matchers/responds_with'
27
26
  require 'mocha/parameter_matchers/yaml_equivalent'
28
- require 'mocha/parameter_matchers/query_string'
27
+ require 'mocha/parameter_matchers/equivalent_uri'