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 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450
|
module RSpec
module Matchers
module BuiltIn
# @api private
# Provides the implementation for `change`.
# Not intended to be instantiated directly.
class Change < BaseMatcher
# @api public
# Specifies the delta of the expected change.
def by(expected_delta)
ChangeRelatively.new(change_details, expected_delta, :by) do |actual_delta|
values_match?(expected_delta, actual_delta)
end
end
# @api public
# Specifies a minimum delta of the expected change.
def by_at_least(minimum)
ChangeRelatively.new(change_details, minimum, :by_at_least) do |actual_delta|
actual_delta >= minimum
end
end
# @api public
# Specifies a maximum delta of the expected change.
def by_at_most(maximum)
ChangeRelatively.new(change_details, maximum, :by_at_most) do |actual_delta|
actual_delta <= maximum
end
end
# @api public
# Specifies the new value you expect.
def to(value)
ChangeToValue.new(change_details, value)
end
# @api public
# Specifies the original value.
def from(value)
ChangeFromValue.new(change_details, value)
end
# @private
def matches?(event_proc)
raise_block_syntax_error if block_given?
perform_change(event_proc) && change_details.changed?
end
def does_not_match?(event_proc)
raise_block_syntax_error if block_given?
perform_change(event_proc) && !change_details.changed?
end
# @api private
# @return [String]
def failure_message
"expected #{change_details.value_representation} to have changed, " \
"but #{positive_failure_reason}"
end
# @api private
# @return [String]
def failure_message_when_negated
"expected #{change_details.value_representation} not to have changed, " \
"but #{negative_failure_reason}"
end
# @api private
# @return [String]
def description
"change #{change_details.value_representation}"
end
# @private
def supports_block_expectations?
true
end
# @private
def supports_value_expectations?
false
end
private
def initialize(receiver=nil, message=nil, &block)
@receiver = receiver
@message = message
@block = block
end
def change_details
@change_details ||= ChangeDetails.new(matcher_name, @receiver, @message, &@block)
end
def perform_change(event_proc)
@event_proc = event_proc
change_details.perform_change(event_proc) do |actual_before|
# pre-compute values derived from the `before` value before the
# mutation is applied, in case the specified mutation is mutation
# of a single object (rather than a changing what object a method
# returns). We need to cache these values before the `before` value
# they are based on potentially gets mutated.
@actual_before_description = description_of(actual_before)
end
end
def raise_block_syntax_error
raise SyntaxError, "Block not received by the `change` matcher. " \
"Perhaps you want to use `{ ... }` instead of do/end?"
end
def positive_failure_reason
return "was not given a block" unless Proc === @event_proc
"is still #{@actual_before_description}"
end
def negative_failure_reason
return "was not given a block" unless Proc === @event_proc
"did change from #{@actual_before_description} " \
"to #{description_of change_details.actual_after}"
end
end
# Used to specify a relative change.
# @api private
class ChangeRelatively < BaseMatcher
def initialize(change_details, expected_delta, relativity, &comparer)
@change_details = change_details
@expected_delta = expected_delta
@relativity = relativity
@comparer = comparer
end
# @private
def failure_message
"expected #{@change_details.value_representation} to have changed " \
"#{@relativity.to_s.tr('_', ' ')} " \
"#{description_of @expected_delta}, but #{failure_reason}"
end
# @private
def matches?(event_proc)
@event_proc = event_proc
@change_details.perform_change(event_proc) && @comparer.call(@change_details.actual_delta)
end
# @private
def does_not_match?(_event_proc)
raise NotImplementedError, "`expect { }.not_to change " \
"{ }.#{@relativity}()` is not supported"
end
# @private
def description
"change #{@change_details.value_representation} " \
"#{@relativity.to_s.tr('_', ' ')} #{description_of @expected_delta}"
end
# @private
def supports_block_expectations?
true
end
# @private
def supports_value_expectations?
false
end
private
def failure_reason
return "was not given a block" unless Proc === @event_proc
"was changed by #{description_of @change_details.actual_delta}"
end
end
# @api private
# Base class for specifying a change from and/or to specific values.
class SpecificValuesChange < BaseMatcher
# @private
MATCH_ANYTHING = ::Object.ancestors.last
def initialize(change_details, from, to)
@change_details = change_details
@expected_before = from
@expected_after = to
end
# @private
def matches?(event_proc)
perform_change(event_proc) && @change_details.changed? && @matches_before && matches_after?
end
# @private
def description
"change #{@change_details.value_representation} #{change_description}"
end
# @private
def failure_message
return not_given_a_block_failure unless Proc === @event_proc
return before_value_failure unless @matches_before
return did_not_change_failure unless @change_details.changed?
after_value_failure
end
# @private
def supports_block_expectations?
true
end
# @private
def supports_value_expectations?
false
end
private
def perform_change(event_proc)
@event_proc = event_proc
@change_details.perform_change(event_proc) do |actual_before|
# pre-compute values derived from the `before` value before the
# mutation is applied, in case the specified mutation is mutation
# of a single object (rather than a changing what object a method
# returns). We need to cache these values before the `before` value
# they are based on potentially gets mutated.
@matches_before = values_match?(@expected_before, actual_before)
@actual_before_description = description_of(actual_before)
end
end
def matches_after?
values_match?(@expected_after, @change_details.actual_after)
end
def before_value_failure
"expected #{@change_details.value_representation} " \
"to have initially been #{description_of @expected_before}, " \
"but was #{@actual_before_description}"
end
def after_value_failure
"expected #{@change_details.value_representation} " \
"to have changed to #{description_of @expected_after}, " \
"but is now #{description_of @change_details.actual_after}"
end
def did_not_change_failure
"expected #{@change_details.value_representation} " \
"to have changed #{change_description}, but did not change"
end
def did_change_failure
"expected #{@change_details.value_representation} not to have changed, but " \
"did change from #{@actual_before_description} " \
"to #{description_of @change_details.actual_after}"
end
def not_given_a_block_failure
"expected #{@change_details.value_representation} to have changed " \
"#{change_description}, but was not given a block"
end
end
# @api private
# Used to specify a change from a specific value
# (and, optionally, to a specific value).
class ChangeFromValue < SpecificValuesChange
def initialize(change_details, expected_before)
@description_suffix = nil
super(change_details, expected_before, MATCH_ANYTHING)
end
# @api public
# Specifies the new value you expect.
def to(value)
@expected_after = value
@description_suffix = " to #{description_of value}"
self
end
# @private
def does_not_match?(event_proc)
if @description_suffix
raise NotImplementedError, "`expect { }.not_to change { }.to()` " \
"is not supported"
end
perform_change(event_proc) && !@change_details.changed? && @matches_before
end
# @private
def failure_message_when_negated
return not_given_a_block_failure unless Proc === @event_proc
return before_value_failure unless @matches_before
did_change_failure
end
private
def change_description
"from #{description_of @expected_before}#{@description_suffix}"
end
end
# @api private
# Used to specify a change to a specific value
# (and, optionally, from a specific value).
class ChangeToValue < SpecificValuesChange
def initialize(change_details, expected_after)
@description_suffix = nil
super(change_details, MATCH_ANYTHING, expected_after)
end
# @api public
# Specifies the original value.
def from(value)
@expected_before = value
@description_suffix = " from #{description_of value}"
self
end
# @private
def does_not_match?(_event_proc)
raise NotImplementedError, "`expect { }.not_to change { }.to()` " \
"is not supported"
end
private
def change_description
"to #{description_of @expected_after}#{@description_suffix}"
end
end
# @private
# Encapsulates the details of the before/after values.
#
# Note that this class exposes the `actual_after` value, to allow the
# matchers above to derive failure messages, etc from the value on demand
# as needed, but it intentionally does _not_ expose the `actual_before`
# value. Some usages of the `change` matcher mutate a specific object
# returned by the value proc, which means that failure message snippets,
# etc, which are derived from the `before` value may not be accurate if
# they are lazily computed as needed. We must pre-compute them before
# applying the change in the `expect` block. To ensure that all `change`
# matchers do that properly, we do not expose the `actual_before` value.
# Instead, matchers must pass a block to `perform_change`, which yields
# the `actual_before` value before applying the change.
class ChangeDetails
attr_reader :actual_after
UNDEFINED = Module.new.freeze
def initialize(matcher_name, receiver=nil, message=nil, &block)
if receiver && !message
raise(
ArgumentError,
"`change` requires either an object and message " \
"(`change(obj, :msg)`) or a block (`change { }`). " \
"You passed an object but no message."
)
end
@matcher_name = matcher_name
@receiver = receiver
@message = message
@value_proc = block
# TODO: temporary measure to mute warning of access to an initialized
# instance variable when a deprecated implicit block expectation
# syntax is used. This may be removed once `fail` is used, and the
# matcher never issues this warning.
@actual_after = UNDEFINED
end
def value_representation
@value_representation ||=
if @message
"`#{message_notation(@receiver, @message)}`"
elsif (value_block_snippet = extract_value_block_snippet)
"`#{value_block_snippet}`"
else
'result'
end
end
def perform_change(event_proc)
@actual_before = evaluate_value_proc
@before_hash = @actual_before.hash
yield @actual_before if block_given?
return false unless Proc === event_proc
event_proc.call
@actual_after = evaluate_value_proc
@actual_hash = @actual_after.hash
true
end
def changed?
# Consider it changed if either:
#
# - The before/after values are unequal
# - The before/after values have different hash values
#
# The latter case specifically handles the case when the value proc
# returns the exact same object, but it has been mutated.
#
# Note that it is not sufficient to only check the hashes; it is
# possible for two values to be unequal (and of different classes)
# but to return the same hash value. Also, some objects may change
# their hash after being compared with `==`/`!=`.
@actual_before != @actual_after || @before_hash != @actual_hash
end
def actual_delta
@actual_after - @actual_before
end
private
def evaluate_value_proc
@value_proc ? @value_proc.call : @receiver.__send__(@message)
end
def message_notation(receiver, message)
case receiver
when Module
"#{receiver}.#{message}"
else
"#{Support.class_of(receiver)}##{message}"
end
end
if RSpec::Support::RubyFeatures.ripper_supported?
def extract_value_block_snippet
return nil unless @value_proc
Expectations::BlockSnippetExtractor.try_extracting_single_line_body_of(@value_proc, @matcher_name)
end
else
def extract_value_block_snippet
nil
end
end
end
end
end
end
|