Stubbing and Setting Expectations on HTTP Requests Is Now Easy With WebMock

Bartosz Blimke

This post was originally published on the New Bamboo blog, before New Bamboo joined thoughtbot in London.


I’ve been working recently on a Ruby application which was making HTTP calls to a remote service. We chose rest-client as a client HTTP library. We needed some way of testing the behaviour we were going to implement.

We wanted to run our tests in isolation, without making any real requests over the Internet. One obvious option was to use some mocking library to stub rest-client methods and set expectations on them. Doing this is always a pain. You usually end up testing the implementation instead of behaviour.

If you use Net::HTTP directly then to spec code like this:

res = Net::HTTP.start("www.google.com", 80) {|http|
  http.get("/")
}

you have to write the following code in RSpec:

@mock_http = mock("http")
Net::HTTP.stub!(:start).and_yield @mock_http
@mock_http.should_receive(:get).with("/")

If you change your HTTP library, even if both libraries are based on Net::HTTP and behaviour of the application won’t change, you still need to fix all your tests where you stubbed methods specific to HTTP library.

Fakeweb as a good alternative. It allows stubbing HTTP requests at low Net::HTTP level so it works with any library built on top of Net::HTTP. Dispite Fakeweb’s excellent solution to the problem, it has unfortunately couple of limitations we were missing. Requests can be matched only by HTTP method or URI and we needed to match POST requests based on body and headers. Fakeweb also didn’t support matching of escaped and unescaped URIs. Another feature I was missing was setting expectations on request invocations. Pat Allan’s fakeweb-matcher is some solution but it has the same issues as Fakeweb and I also needed to set some more advanced expectations.

At the beginning I planned to take Fakeweb’s source code and extend it but I soon realised that Fakeweb’s architecture will make it quite difficult.

During our Hackday I started working on a new library for stubbing HTTP requests. That’s how WebMock was born.

Here are some of the main WebMock features:

  • Stubbing HTTP requests at low Net::HTTP level (no need to change tests when you change HTTP lib interface)
  • Setting and verifying expectations on HTTP requests
  • Matching requests based on method, URI, headers and body
  • Smart matching of the same URIs in different representations (also encoded and non encoded forms)
  • Smart matching of the same headers in different representations.
  • Support for Test::Unit and RSpec (and can be easily extended to other frameworks)
  • Support for Net::HTTP and other http libraries based on Net::HTTP (i.e RightHttpConnection, rest-client, HTTParty)
  • Easy to extend to other HTTP libraries apart from Net::HTTP

Here is an example code using WebMock in Test::Unit

stub_request(:post, "www.google.com").
    with(:headers => { 'Content-Length' => 3 }).to_return(:body => "abc")

#Actual request
req = Net::HTTP::Post.new('/')
req['Content-Length'] = 3
Net::HTTP.start('http://www.google.com/', 80) {|http|
    http.request(req, 'abc')
}    # ===> Success

assert_requested :post, "http://www.google.com",
    :headers => { 'Content-Length' => 3 }, :body => "abc", :times => 1    # ===> Success

assert_not_requested :get, "http://www.something.com"    # ===> Success

The same functionality in RSpec

stub_request(:post, "www.google.com").
    with(:headers => { 'Content-Length' => 3 }).to_return(:body => "abc")

#Actual request
req = Net::HTTP::Post.new('/')
req['Content-Length'] = 3
Net::HTTP.start('http://www.google.com/', 80) {|http|
    http.request(req, 'abc')
}    # ===> Success

WebMock.should have_requested(:get, "www.google.com").
    with(:body => "abc", :headers => { 'Content-Length' => 3 }).once     # ===> Success

WebMock.should_not have_requested(:get, "www.something.com")    # ===> Success

You can also choose the following syntax in RSpec:

stub_request(:post, "www.google.com").
    with(:headers => { 'Content-Length' => 3 }).to_return(:body => "abc")

#Actual request
req = Net::HTTP::Post.new('/')
req['Content-Length'] = 3
Net::HTTP.start('http://www.google.com/', 80) {|http|
    http.request(req, 'abc')
}    # ===> Success

request(:post, "www.google.com").
  with(:body => "abc", :headers => { 'Content-Length' => 3 }).should have_been_made.once

request(:get, "www.something.com").should_not have_been_made    # ===> Success

You can install it with

gem install webmock --source http://gemcutter.org

Now in your test/test_helper.rb add the following lines:

require 'webmock/test_unit'
include WebMock

or if you use RSpec add these lines to spec/spec_helper.rb:

require 'webmock/rspec'
include WebMock

To find more usage example and information, check out WebMock on Github.