We're looking at an upgrade from zimbra 6 to zimbra 7, and we want to avoid regressions in the account lifecycle software we wrote to integrate with it. Since most things are documented by a WSDL file, we were thinking of just using that to test.

What I'm wondering is, is there a way to use an API definition and two target servers to populate a test suite?

link|improve this question

69% accept rate
feedback

2 Answers

Take a look at SoapUI. It is an open source product that can do some automated testing based on a WSDL.

link|improve this answer
feedback

I am using a combination of the below three tools to solve the kind of problem you have mentioned

  1. Model Based Testing
  2. Define graphic model and MBT based code gen using yEd and use GraphWalker to generate the tests dynamically bu walking the model
  3. Spock testing framework + spring-ws

I've used soapUI extensively but it is not very flexible for code gen related tests. It is however super to create the tests once, parameterize them and maintain overtime by checking in the soapui project to version control

link|improve this answer
From the yEd "The Software may not be used as part of an automated process." Thoughts? – jldugger Oct 4 '11 at 19:04
@jldugger forgot to add graphwalker. updated the post now. – Pangea Oct 5 '11 at 3: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.