vote up 0 vote down star

I would like to do some integration testing of a web service from within NUnit or MBUnit. I haven't delved into this too deeply yet, but I am pretty sure I will need to spin up WebDev.WebServer.exe within the "unit test" to do this. (I know it's not really a unit test).

Yes, I can test the underlying objects the web service uses on their own (which I am), but what I am interested in testing in this cases is that the proxies are all working and handled as expected, etc.

Any advice?

flag

6 Answers

vote up 0 vote down

Not sure what you're asking. If you're looking to do this without some sort of webserver in between your test and the service, you're going to be disappointed.

If that's not what you're asking... maybe some clarification?

link|flag
vote up 0 vote down check

I found this post and this one which have some solutions on how to start up WebDev.WebServer.exe from within a unit test. Looks like I'll need to do something along these lines.

Until I get that going, I found that what works is to simply run the web service project within VS, let the WebDev server start up that way, and then run the unit tests. Not ideal, but it's OK for now.

link|flag
Cool. Very interesting post you're linking to. I didn't know this was possible ... – Riri Sep 15 '08 at 14:09
vote up 2 vote down

I've had lots of success doing web testing with Selenium

I've used it on Linux and Windows for automated web testing of just about anything.

link|flag
vote up 2 vote down

I asked the same thing (I think ...) I got a tip on SoapUI. It looks promising but I haven't had time to test it yet.

link|flag
That does look very promising. I'll try it at some point and accept this answer if it works. – codeflunky Sep 16 '08 at 17:14
It just works. For a operation, a test-case, load tests and automated testing exporting results to JUnit-Style report. – Eduardo Santa Nov 13 '08 at 15:19
vote up 1 vote down

Hi

There is XMLunit (http://xmlunit.sourceforge.net/), for java and Ms.NET. it's could be interesting to check it out some specifications of WS, like wsdl:type, for example!

Cheers! Orlando Agostinho Lisbon/Portugal

link|flag
vote up 0 vote down

You may want to give Ivonna, an addon built on top of Typemock a try.

The good part about Ivonna is that you don't need to launch webserver for your test, but downside part is that it's not free.

link|flag

Your Answer

Get an OpenID
or

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