What are approaches to test custom clients for public web services?

Today there are many online services which provide an API. There is a boom of little apps using those APIs. Examples: desktop/mobile clients for social networks and blogging platforms, document storage and processing centers, cloud databases, real-time data streams, GIS data etc.

The problem is that often the non-trivial part in such applications is communicating with the online service (handling errors, encoding/decoding data, dealing with quotas, adjusting to API updates etc.), but developers of the client do not control the service. So one cannot see directly what effects of the tests are, and one cannot always rollback the state of the service back to the original.

  • how do you design your client tests to be reproducible?
  • what behaviors do you test?
  • how do you test destructive or heavy-load behaviors? (against a public service)
  • do you run such tests automatically (e.g. as a pre-commit hook)?
  • how do you test against extraordinary situations (from service is down to exceeding quota, to inconsistent state, to sudden change of service behavior)?
link|improve this question

great question! ill be monitoring this until it gets answered as I am integrating several services and researching best practices to encorporate IOC containers and dependency injection to decouple my application from remote services as well as enable me to write better unit tests. – Athens Holloway Feb 8 '10 at 21:41
feedback

1 Answer

up vote 1 down vote accepted

Be very clear what you are testing. Are you testing that your code does what it's supposed to when it receives responses from the service? Both normal and extraordinary? Then mock the service, so that you can readily exercise those paths.

Yes I would design reprodicible tests and run them under some framework that lets me run them automatically, ideally as part of a build/commit too.

But what about testing the service itself. Some tests just emerge from validating your solution. For example heavy load. Well, although it's important not to be anti-social and it's not reasonable to saturate a public service, if there is a publised SLA, then I think it's reasonable to test up to that. So if your app is expected to emit n requests a second, then surely we should test at least this. Testing our overall solution up to its required throughput.

To destruction? Maybe too anti social. However I do think that sending both valid and invalid requests and checking that expected responses occur may be valid and valuable if only as a sanity check of the service you're using. So I would have at least a regression-suite for the public service, so that I can readily validate that it is behaving as documented.

link|improve this answer
Examples of software I mean: a blog client, a query tool for a online DB, online storage management tool. But I am looking for general guidelines for client-side testing. The problem is that service is not mine, and mocking it would be more time-consuming than just writing a client, and I am not sure mocked up version will be reliably similar to the real one. – jetxee Feb 9 '10 at 10:15
By heavy load I mean not a stress-test for a service itself, but operations that I want client to perform correctly but which may generate heavy load on the service (think changing a word in all blog posts via API or collecting statistics). By destructing operations I mean operations which change the state of the service irreversibly (like deleting an account or some of its data), and thus impede further testing (so it's not disruption of the service itself!) – jetxee Feb 9 '10 at 10:18
Writing mocks using a mocking framework is not as much work as you might think. As general pattern, Unit Testing a client by using Mocks rather than Integration testing agaist the real thing tends to be a very useful technique. Mocking allows you to readily check the client's behavior to hard-to-reproduce responses. – djna Feb 9 '10 at 12:20
Thanks djna, I'll consider mocking the service next time. – jetxee Feb 10 '10 at 16:27
feedback

Your Answer

 
or
required, but never shown

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