vote up 1 vote down star

Often, I find myself wanting to write a unit test for a portion of code that accesses HTTP resources as part of its normal function. Have you found any good ways to write these kinds of tests?

flag

80% accept rate

4 Answers

vote up 3 vote down check

Extract the part that accesses the HTTP resources out of your main code. Create an interface for that new component, In your test, mock the interface and return data that you can control reliably.

You can test the HTTP access as an integration test.

link|flag
Another thing - if you are using an HTTP library or framework, there's a good chance that it is already working. You don't really need to test the library. You only need to test the bits of your code that sends/receives the data. – jop Sep 18 '08 at 7:42
vote up 0 vote down

This is typically a function I would mock out for the tests... I don't like my tests depending on anything external... even worse if it is an external resource I have no control over (such as a 3rd party website).

Databases is one of the few external resources I often won't mock... I use DBUnit instead.

link|flag
vote up 0 vote down

I recently had to write a component that accessed a wiki and did some basic text scraping. The majority of tests I wrote validated the correct HTTP response code. As far as validating the actual resource goes, I would save an offline version of a known resource and check that the algorithm is gathering/processing the correct data.

link|flag
vote up 0 vote down

Depending on which language or framework you're using, it may be straightforward to start up a locally-running HTTP server which serves up the resources you want.

link|flag

Your Answer

Get an OpenID
or

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