vote up 1 vote down star

Hi there,

I am interested in your opinions on unittesting code that uses Corba to communicate with a server.

Would you mock the Corba objects? In Python that's sort of a pain in the ass because all the methods of Corba objects are loaded dynamically. So you're basically stuck with "mock anything".

Thanks!

flag

2 Answers

vote up 1 vote down

I would set up a test server, and do live tests on that. Unittesting can be tricky with network stuff, so it's best to keep it as real as possible. Any mocking would be done on the test server, for instance if you need to communicate to three different servers, it could be set up with three different IP addresses to play the role of all three servers.

link|flag
vote up 2 vote down

Don't try to unittest Corba. Assume that Corba works. Unittest your own code. This means:

  1. Create a unit test which checks that you correctly set up Corba and that you can invoke a single method and read a property. If that works, all other methods and properties will work, too.

  2. After that, test that all the exposed objects work correctly. You don't need Corba for this.

link|flag
Yes, but from time to time (in my case actually quite often), you just have to test some functionality that directly uses Corba. In my case, the server communicates with the client using Corba, so if I want to test that e.g. my object that wraps the Corba interface works fine, I have to include Corba in the test somehow. (Disclaimer: This is not my design, just something I've inherited and have to work with. :-) ) – Realyze Dec 15 at 14:00
Change the design in this respect. Also don't test the Corba compiler (unless you run into bugs and need to know how/whether something works). Make sure your code sets the right parameters. The next step would be to get the source for the server and test its code with unit tests. But avoid the round trips (as much as possible). Disclaimer: Reality beats paper. – Aaron Digulla Dec 15 at 14:53

Your Answer

Get an OpenID
or

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