2

情况:我想存根一个辅助方法,这样我就可以调用一个包装它的方法并取回存根的响应。

代码设置如下:

class Thing
  def self.method_one(foo)
    self.method_two(foo, 'some random string')
  end

  def self.method_two(foo, bar)
    self.method_three(foo, bar, 'no meaning')
  end

  def self.method_three(foo, bar, baz)
    "#{foo} is #{bar} with #{baz}"
  end
end

我试图模拟.method_three,以便我可以调用.method_one并让它最终调用.method_three'double 而不是真正的交易:

it "uses the mock for .method_three" do
  response_double = 'This is a different string'
  thing = class_double("Thing", :method_three => response_double).as_stubbed_const

  response = thing.method_one('Hi')
  expect(response).to eq(response_double)
end

我得到的错误:

RSpec::Mocks::MockExpectationError: #<ClassDouble(Thing) (anonymous)> received unexpected message :method_one with ("Hi")

我正在尝试做的事情可能吗?感觉好像我错过了一个明显的步骤,但尽管我尽了最大的努力,我还是找不到这样的例子或提出任何类似问题的问题。

(注意:如果重要的话,这不是 Rails 项目。)

4

1 回答 1

2

您可能希望使用 RSpecallow(...)来存根中间方法。这对于测试逻辑流或在测试中模拟第三方服务也很有用。

例如: expected_response = 'This is a different string' allow(Thing).to receive(:method_three).and_return(expected_response)

然后expect(Thing.method_one('Hi')).to eq(expected_response)应该通过。

有关存根方法的更多信息,请参阅https://relishapp.com/rspec/rspec-mocks/v/2-14/docs/method-stubs

于 2017-08-24T19:56:44.447 回答