forked from thoughtbot/shoulda-matchers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
delegate_method_matcher.rb
383 lines (337 loc) · 11 KB
/
delegate_method_matcher.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
require 'shoulda/matchers/doublespeak'
require 'shoulda/matchers/matcher_context'
module Shoulda
module Matchers
module Independent
# The `delegate_method` matcher tests that an object forwards messages
# to other, internal objects by way of delegation.
#
# In this example, we test that Courier forwards a call to #deliver onto
# its PostOffice instance:
#
# require 'forwardable'
#
# class Courier
# extend Forwardable
#
# attr_reader :post_office
#
# def_delegators :post_office, :deliver
#
# def initialize
# @post_office = PostOffice.new
# end
# end
#
# # RSpec
# describe Courier do
# it { should delegate_method(:deliver).to(:post_office) }
# end
#
# # Minitest
# class CourierTest < Minitest::Test
# should delegate_method(:deliver).to(:post_office)
# end
#
# You can also use `delegate_method` with Rails's `delegate` macro:
#
# class Courier
# attr_reader :post_office
# delegate :deliver, to: :post_office
#
# def initialize
# @post_office = PostOffice.new
# end
# end
#
# describe Courier do
# it { should delegate_method(:deliver).to(:post_office) }
# end
#
# To employ some terminology, we would say that Courier's #deliver method
# is the *delegating method*, PostOffice is the *delegate object*, and
# PostOffice#deliver is the *delegate method*.
#
# #### Qualifiers
#
# ##### as
#
# Use `as` if the name of the delegate method is different from the name
# of the delegating method.
#
# Here, Courier has a #deliver method, but instead of calling #deliver on
# the PostOffice, it calls #ship:
#
# class Courier
# attr_reader :post_office
#
# def initialize
# @post_office = PostOffice.new
# end
#
# def deliver(package)
# post_office.ship(package)
# end
# end
#
# # RSpec
# describe Courier do
# it { should delegate_method(:deliver).to(:post_office).as(:ship) }
# end
#
# # Minitest
# class CourierTest < Minitest::Test
# should delegate_method(:deliver).to(:post_office).as(:ship)
# end
#
# ##### with_prefix
#
# Use `with_prefix` when using Rails's `delegate` helper along with the
# `:prefix` option.
#
# class Page < ActiveRecord::Base
# belongs_to :site
# delegate :name, to: :site, prefix: true
# delegate :title, to: :site, prefix: :root
# end
#
# # RSpec
# describe Page do
# it { should delegate_method(:name).to(:site).with_prefix }
# it { should delegate_method(:name).to(:site).with_prefix(true) }
# it { should delegate_method(:title).to(:site).with_prefix(:root) }
# end
#
# # Minitest
# class PageTest < Minitest::Test
# should delegate_method(:name).to(:site).with_prefix
# should delegate_method(:name).to(:site).with_prefix(true)
# should delegate_method(:title).to(:site).with_prefix(:root)
# end
#
# ##### with_arguments
#
# Use `with_arguments` to assert that the delegate method is called with
# certain arguments. Note that this qualifier can only be used when the
# delegating method takes no arguments; it does not support delegating
# or delegate methods that take arbitrary arguments.
#
# Here, when Courier#deliver_package calls PostOffice#deliver_package, it
# adds an options hash:
#
# class Courier
# attr_reader :post_office
#
# def initialize
# @post_office = PostOffice.new
# end
#
# def deliver_package
# post_office.deliver_package(expedited: true)
# end
# end
#
# # RSpec
# describe Courier do
# it do
# should delegate_method(:deliver_package).
# to(:post_office).
# with_arguments(expedited: true)
# end
# end
#
# # Minitest
# class CourierTest < Minitest::Test
# should delegate_method(:deliver_package).
# to(:post_office).
# with_arguments(expedited: true)
# end
#
# @return [DelegateMethodMatcher]
#
def delegate_method(delegating_method)
DelegateMethodMatcher.new(delegating_method).in_context(self)
end
# @private
class DelegateMethodMatcher
def initialize(delegating_method)
@delegating_method = delegating_method
@delegate_method = @delegating_method
@delegate_object = Doublespeak::ObjectDouble.new
@delegated_arguments = []
@delegate_object_reader_method = nil
@subject = nil
@subject_double_collection = nil
end
def in_context(context)
@context = MatcherContext.new(context)
self
end
def matches?(subject)
@subject = subject
ensure_delegate_object_has_been_specified!
subject_has_delegating_method? &&
subject_has_delegate_object_reader_method? &&
subject_delegates_to_delegate_object_correctly?
end
def description
string = "delegate #{formatted_delegating_method_name} to " +
"#{formatted_delegate_object_reader_method_name} object"
if delegated_arguments.any?
string << " passing arguments #{delegated_arguments.inspect}"
end
if delegate_method != delegating_method
string << " as #{formatted_delegate_method}"
end
string
end
def to(delegate_object_reader_method)
@delegate_object_reader_method = delegate_object_reader_method
self
end
def as(delegate_method)
@delegate_method = delegate_method
self
end
def with_arguments(*arguments)
@delegated_arguments = arguments
self
end
def with_prefix(prefix = nil)
@delegating_method =
:"#{build_delegating_method_prefix(prefix)}_#{delegate_method}"
delegate_method
self
end
def build_delegating_method_prefix(prefix)
case prefix
when true, nil then delegate_object_reader_method
else prefix
end
end
def failure_message
"Expected #{class_under_test} to #{description}\n" +
"Method calls sent to " +
"#{formatted_delegate_object_reader_method_name(include_module: true)}:" +
formatted_calls_on_delegate_object
end
def failure_message_when_negated
"Expected #{class_under_test} not to #{description}, but it did"
end
protected
attr_reader \
:context,
:delegated_arguments,
:delegating_method,
:method,
:delegate_method,
:subject_double_collection,
:delegate_object,
:delegate_object_reader_method
def subject
@subject
end
def subject_is_a_class?
if @subject
@subject.is_a?(Class)
else
context.subject_is_a_class?
end
end
def class_under_test
if subject_is_a_class?
subject
else
subject.class
end
end
def formatted_delegate_method(options = {})
formatted_method_name_for(delegate_method, options)
end
def formatted_delegating_method_name(options = {})
formatted_method_name_for(delegating_method, options)
end
def formatted_delegate_object_reader_method_name(options = {})
formatted_method_name_for(delegate_object_reader_method, options)
end
def formatted_method_name_for(method_name, options)
possible_class_under_test(options) +
class_or_instance_method_indicator +
method_name.to_s
end
def possible_class_under_test(options)
if options[:include_module]
class_under_test.to_s
else
""
end
end
def class_or_instance_method_indicator
if subject_is_a_class?
'.'
else
'#'
end
end
def delegate_object_received_call?
calls_to_delegate_method.any?
end
def delegate_object_received_call_with_delegated_arguments?
calls_to_delegate_method.any? do |call|
call.args == delegated_arguments
end
end
def subject_has_delegating_method?
subject.respond_to?(delegating_method)
end
def subject_has_delegate_object_reader_method?
subject.respond_to?(delegate_object_reader_method, true)
end
def ensure_delegate_object_has_been_specified!
if delegate_object_reader_method.to_s.empty?
raise DelegateObjectNotSpecified
end
end
def subject_delegates_to_delegate_object_correctly?
register_subject_double_collection
Doublespeak.with_doubles_activated do
subject.public_send(delegating_method, *delegated_arguments)
end
if delegated_arguments.any?
delegate_object_received_call_with_delegated_arguments?
else
delegate_object_received_call?
end
end
def register_subject_double_collection
double_collection =
Doublespeak.double_collection_for(subject.singleton_class)
double_collection.register_stub(delegate_object_reader_method).
to_return(delegate_object)
@subject_double_collection = double_collection
end
def calls_to_delegate_method
delegate_object.calls_to(delegate_method)
end
def calls_on_delegate_object
delegate_object.calls
end
def formatted_calls_on_delegate_object
string = ""
if calls_on_delegate_object.any?
string << "\n"
calls_on_delegate_object.each_with_index do |call, i|
name = call.method_name
args = call.args.map { |arg| arg.inspect }.join(', ')
string << "#{i+1}) #{name}(#{args})\n"
end
else
string << " (none)"
end
string.rstrip!
string
end
end
end
end
end