Skip to content

Commit

Permalink
Merge pull request #679 from freerange/expectation-with-never-cardina…
Browse files Browse the repository at this point in the history
…lity-should-fail-fast-if-invoked

Fail fast if invocation matches never expectation
  • Loading branch information
floehopper authored Dec 7, 2024
2 parents 727ce52 + d9a2254 commit b2b1773
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 36 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ Maybe, but probably not. Partial mocking changes the state of objects in the `Ob

Stubs and expectations are basically the same thing. A stub is just an expectation of zero or more invocations. The `Expectation#stubs` method is syntactic sugar to make the intent of the test more explicit.

When a method is invoked on a mock object, the mock object searches through its expectations from newest to oldest to find one that matches the invocation. After the invocation, the matching expectation might stop matching further invocations.
When a method is invoked on a mock object, the mock object searches through its expectations from newest to oldest to find one that matches the invocation. After the invocation, the matching expectation might stop matching further invocations. If the expectation that matches the invocation has a cardinality of "never", then an unexpected invocation error is reported.

See the [documentation](https://mocha.jamesmead.org/Mocha/Mock.html) for `Mocha::Mock` for further details.

Expand Down
17 changes: 4 additions & 13 deletions lib/mocha/mock.rb
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ module Mocha
# while an +expects(:foo).at_least_once+ expectation will always be matched
# against invocations.
#
# However, note that if the expectation that matches the invocation has a
# cardinality of "never", then an unexpected invocation error is reported.
#
# This scheme allows you to:
#
# - Set up default stubs in your the +setup+ method of your test class and
Expand Down Expand Up @@ -326,15 +329,11 @@ def handle_method_call(symbol, arguments, block) # rubocop:disable Metrics/Cyclo
matching_expectations = all_expectations.matching_expectations(invocation)

index = 0
never_allowed_expectation = nil
while index < matching_expectations.length
matching_expectation = matching_expectations[index]
if matching_expectation.invocations_never_allowed?
never_allowed_expectation = matching_expectation
raise_unexpected_invocation_error(invocation, matching_expectation)
elsif matching_expectation.invocations_allowed?
if never_allowed_expectation
invocation_not_allowed_warning(invocation, never_allowed_expectation)
end
return matching_expectation.invoke(invocation)
end
index += 1
Expand Down Expand Up @@ -387,14 +386,6 @@ def any_expectations?

private

def invocation_not_allowed_warning(invocation, expectation)
messages = [
"The expectation defined at #{expectation.definition_location} does not allow invocations, but #{invocation.call_description} was invoked.",
'This invocation will cause the test to fail fast in a future version of Mocha.'
]
Deprecation.warning(messages.join(' '))
end

def raise_unexpected_invocation_error(invocation, matching_expectation)
if @unexpected_invocation.nil?
@unexpected_invocation = invocation
Expand Down
35 changes: 13 additions & 22 deletions test/acceptance/mocked_methods_dispatch_test.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
require File.expand_path('../acceptance_test_helper', __FILE__)
require 'deprecation_disabler'
require 'execution_point'

class MockedMethodDispatchTest < Mocha::TestCase
include AcceptanceTest
Expand Down Expand Up @@ -75,37 +73,30 @@ def test_should_find_latest_expectation_with_range_of_expected_invocation_count_
assert_passed(test_result)
end

def test_should_display_deprecation_warning_if_invocation_matches_expectation_with_never_cardinality
execution_point = nil
def test_should_fail_fast_if_invocation_matches_expectation_with_never_cardinality
test_result = run_as_test do
mock = mock('mock')
mock.stubs(:method)
mock.expects(:method).never; execution_point = ExecutionPoint.current
DeprecationDisabler.disable_deprecations do
mock.method
end
mock.expects(:method).never
mock.method
end
assert_passed(test_result)
message = Mocha::Deprecation.messages.last
location = execution_point.location
expected = [
"The expectation defined at #{location} does not allow invocations, but #<Mock:mock>.method() was invoked.",
'This invocation will cause the test to fail fast in a future version of Mocha.'
]
assert_equal expected.join(' '), message
assert_failed(test_result)
assert_equal [
'unexpected invocation: #<Mock:mock>.method()',
'unsatisfied expectations:',
'- expected never, invoked once: #<Mock:mock>.method(any_parameters)',
'satisfied expectations:',
'- allowed any number of times, invoked never: #<Mock:mock>.method(any_parameters)'
], test_result.failure_message_lines
end

def test_should_not_display_deprecation_warning_if_invocation_matches_expectation_allowing_invocation_before_matching_expectation_with_never_cardinality
def test_should_not_fail_fast_if_invocation_matches_expectation_allowing_invocation_before_matching_expectation_with_never_cardinality
test_result = run_as_test do
mock = mock('mock')
mock.expects(:method).never
mock.expects(:method).once
Mocha::Deprecation.messages = []
DeprecationDisabler.disable_deprecations do
mock.method
end
mock.method
end
assert_passed(test_result)
assert Mocha::Deprecation.messages.empty?
end
end

0 comments on commit b2b1773

Please sign in to comment.