B S*_*ven 5 ruby tdd bdd rspec http
是的,我知道最好使用webmock,但我想知道如何在RSpec中模拟这个方法:
def method_to_test
url = URI.parse uri
req = Net::HTTP::Post.new url.path
res = Net::HTTP.start(url.host, url.port) do |http|
http.request req, foo: 1
end
res
end
Run Code Online (Sandbox Code Playgroud)
这是RSpec:
let( :uri ) { 'http://example.com' }
specify 'HTTP call' do
http = mock :http
Net::HTTP.stub!(:start).and_yield http
http.should_receive(:request).with(Net::HTTP::Post.new(uri), foo: 1)
.and_return 202
method_to_test.should == 202
end
Run Code Online (Sandbox Code Playgroud)
测试失败,因为with似乎试图匹配NET :: HTTP :: Post对象:
RSpec::Mocks::MockExpectationError: (Mock :http).request(#<Net::HTTP::Post POST>, {:foo=>"1"})
expected: 1 time
received: 0 times
Mock :http received :request with unexpected arguments
expected: (#<Net::HTTP::Post POST>, {:foo=>"1"})
got: (#<Net::HTTP::Post POST>, {:foo=>"1"})
Run Code Online (Sandbox Code Playgroud)
如何正确匹配?
这是新的语法:
before do
http = double
allow(Net::HTTP).to receive(:start).and_yield http
allow(http).to \
receive(:request).with(an_instance_of(Net::HTTP::Get))
.and_return(Net::HTTPResponse)
end
Run Code Online (Sandbox Code Playgroud)
然后在示例中:
it "http" do
allow(Net::HTTPResponse).to receive(:body)
.and_return('the actual body of response')
# here execute request
end
Run Code Online (Sandbox Code Playgroud)
如果您需要测试外部 api 库,这将非常有帮助。
如果您不关心确切的实例,可以使用以下an_instance_of方法:
http.should_receive(:request).with(an_instance_of(Net::HTTP::Post), foo: 1)
.and_return 202
Run Code Online (Sandbox Code Playgroud)