黄瓜中的Rspec模拟继续执行原始方法

时间:2016-01-25 09:18:31

标签: ruby-on-rails rspec mocking cucumber rspec-mocks

我的黄瓜步骤定义如下:

size

在我的控制器中,我有一个代表原始库类的小类:

When(/^I click on the button to create a new target$/) do
  RSpec::Mocks.with_temporary_scope do
    dummy_connection = double('Dummy connection')
    allow(dummy_connection).to receive(:add_target)
                           .and_return({ target_id: "ABCD" }.to_json)

    allow(MyConnection).to receive(:retrieve_connection).and_return dummy_connection

    click_button "Create"
  end
end

执行测试时,“MyConnection.retrieve_connection”会尝试连接到Web服务,即使它已被删除。但是如果在测试中我写了

class MyConnection
  def self.retrieve_connection
    Vws::Api.new(KEY, SECRET)
  end
end

所以MyConnection.retrieve_connection.inspect => #<Double "Dummy connection"> 返回虚连接,这是正确的。它只是在控制器中不起作用。

我没有想法,它似乎没有用。任何提示?

1 个答案:

答案 0 :(得分:0)

发现我必须在Cucumber Before块中应用模拟才能使其正常工作。

但是,由于MyConnection类仅在第一次加载控制器后才被定义,所以我不得不直接模拟库函数:

Before do
  dummy_connection = double("Dummy connection")
  allow(dummy_connection).to receive(:add_target).and_return({ target_id: SecureRandom.hex(4) }.to_json)
  allow(Vws::Api).to receive(:new).and_return(dummy_connection)
end

在黄瓜钩子文件features/env/hooks.rb中。

这种方式似乎每次都有用。