I am writing a soap client. Although the interface is not very complex, the server side is a three layer architecture, so testing some scenarios (different behavior, handling server errors, etc) becomes difficult. What would you recommend me for testing my client?
What seems to me to be a best solution is a set of very simple servers running on my local machine. Each server would be a unit test with one scenario hardcoded, so that I don't have to care about server logic, database etc. Originally I wanted to use python for this, but as I saw here, there is only one library available.
The question is what language (I suppose I won't need any special features, so if you don't say lisp, I should be OK with anything) and what library would you recommend to me to test the client on linux? The best for me would be to provide a wsdl file I got from the server to some generator, then to write the test code, no need to care about soap itself.