vote up 2 vote down star

I'm working on an application that reaches out to a web service. I'd like to develop a proxy class that returns a fake response from the service, so I don't have to constantly be hitting it with requests while I'm developing/testing other parts of the app.

My application is expecting a response generated via Net::HTTP.

response = Net::HTTP.get(URI.parse('http://foo.com'))

case response
when Net::HTTPOK
  # do something fun

when Net::HTTPUnauthorized
  # you get the idea

How can I manufacture a response object, give it all the right headers, return a body string, etc?

response = ProxyClass.response_object

case response
when Net::HTTPOk
  # my app doesn't know it's being lied to

Thanks.

flag

5 Answers

vote up 5 vote down check

I would start with FakeWeb and see if that meets your needs. If it doesn't you can probably gut whatever you need out of the internals and create your own solution.

link|flag
vote up 2 vote down

I would look into a mocking library like mocha.

Then you should be able to setup a mock object to help test:

def setup
 @http_mock = mock('Net::HTTPResponse')
 @http_mock .stubs(:code => '200', :message => "OK", :content_type => "text/html", :body => '<title>Test</title><body>Body of the page</body>')
end

See the Tim Stephenson's RaddOnline blog for a more complete tutorial, where I snagged this example.

link|flag
vote up 1 vote down

For testing a web service client, we use Sinatra, a lovely little lightweight web framework that lets you get something up and running very quickly and easily. Check out the home page; it has an entire Hello World app in 5 lines of code, and two commands to install and run the whole thing.

link|flag
vote up 0 vote down

I would either use FakeWeb as mentioned above, or have my rake test task start a Webrick instance to a little sinatra app which mocks the various test responses you're hoping to see.

link|flag
vote up 0 vote down

You could look into using Rack for this which should allow you to do everything you need.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.