I have a network C++ program in Windows that I'd like to test for network disconnects at various times. What are my options?

Currently I am:

  1. Actually disconnecting the network wire from the back of my computer
  2. using ipconfig /release
  3. Using the cports program to close out the socket completely

None of these methods though are ideal for me, and I'd like to emulate network problems more easily.

I would like for sometimes connects to fail, sometimes socket reads to fail, and sometimes socket writes to fail. It would be great if there was some utility I could use to emulate these types of problems.

It would also be nice to be able to build some automated unit tests while this emulated bad network is up.

link|improve this question

feedback

3 Answers

up vote 8 down vote accepted

You might want to abstract the network layer, and then you can have unit tests that inject interesting failure events at appropriate points.

link|improve this answer
This is the approach that I take and it works very well. Judicious use of interfaces means that I can mock out various parts of the system under test. For the tests that can't be done in this way I have the code under test connect to a test socket in the test harness which I then control in the test – Len Holgate Sep 20 '08 at 8:41
feedback

The closest I can think of is doing something similar with VEDekstop from Shunra..

Simulating High Latency and Low Bandwidth in Testing of Database Applications

Shunra VE Desktop Standard is a Windows-based client software solution that simulates a wide area network link so that you can test applications under a variety of current and potential network conditions – directly from your desktop.

link|improve this answer
feedback

You can subclass whatever library class you are using to manage your sockets (presumably CAsyncSocket or CSocket if you are using MFC), override the methods whose failure you want to test, and insert appropriate test code in your overrides.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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