freerange / mocha

A mocking and stubbing library for Ruby

Home Page:https://mocha.jamesmead.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Parameter matching fails on keyword arguments

CodingAnarchy opened this issue · comments

Pretty basic but surprising bug that I ran into just now, where parameter matching on expect(...).with(...) doesn't work properly with keyword arguments.

        class Foo
          def self.bar(a:, b:, c:)
            a + b + c
          end
        end

        def test_mocha_mocking_kw_args
          mock = mock("foo")
          mock.expects(:bar).with(a: 1, b: 2, c: is_a(Integer)).returns(6)

          mock.bar(a: 1, b: 2, c: 3)
        end

This results in the following error:

unexpected invocation: #<Mock:foo>.bar(:a => 1, :b => 2, :c => 3)
unsatisfied expectations:
- expected exactly once, invoked never: #<Mock:foo>.bar(:a => 1, :b => 2, :c => is_a(Integer))

The positional argument equivalent works just fine:

        class Foo
          def self.bar(a, b, c)
            a + b + c
          end
        end

        def test_mocha_mocking_positional_args
          mock = mock("foo")
          mock.expects(:bar).with(1, 2, is_a(Integer)).returns(6)

          mock.bar(1, 2, 3)
        end

Mocha: v2.2.0
Ruby: 3.3.1

@CodingAnarchy

Thanks for reporting this. It looks as if you've made a mistake in your examples - I imagine you intended to mock & call Foo.bar from the testx, but instead you are mocking and calling Mock#bar. Anyway, that doesn't take away from the fact that there seems to be an issue with the nested is_a parameter matcher - "nested", because I believe the kwargs are treated as a Hash internally. I've tried to more clearly illustrate the problem below - let me know if I've missed the mark:

require "bundler/setup"
require "minitest/autorun"
require "mocha/minitest"
require "mocha/mock"

class FooTest < Minitest::Test
  def setup
    @mock = mock("foo")
  end

  def test_mocking_positional_args
    @mock.expects(:bar).with(1, 2, 3)

    @mock.bar(1, 2, 3)
  end

  def test_mocking_positional_args_with_nested_matcher
    @mock.expects(:bar).with(1, 2, is_a(Integer))

    @mock.bar(1, 2, 3)
  end

  def test_mocha_mocking_kw_args
    @mock.expects(:bar).with(a: 1, b: 2, c: 3)

    @mock.bar(a: 1, b: 2, c: 3)
  end

  def test_mocha_mocking_kw_args_with_nested_matcher
    @mock.expects(:bar).with(a: 1, b: 2, c: is_a(Integer))

    @mock.bar(a: 1, b: 2, c: 3)
    # unexpected invocation: #<Mock:foo>.bar(:a => 1, :b => 2, :c => 3)
    # unsatisfied expectations:
    # - expected exactly once, invoked never: #<Mock:foo>.bar(:a => 1, :b => 2, :c => is_a(Integer))
  end
end

@floehopper Yeah, I meant to mock Foo#bar there. Thanks for catching that.

Your example does demonstrate the issue I ran into though, so I think you've got it spot on in the replication.

I think I've worked out what the problem is. I'm in a bit of a rush (on a train!), but I've pushed up a tentative fix in this branch. If you're in a position to try this out, that would be brilliant. I'm in meetings most of today, but I'll try to work up a full fix as soon as I can. Thanks so much for reporting the problem - I'm somewhat surprised nobody has spotted it sooner!

I just opened this PR to fix this: #648

Released in v2.3.0.