Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

unit testing for CTRL-C sent to an application

I am developing an application handling CTRL-C. I am producing a signal handler to shut-down gracefully threads and other resources.

I want to test CTRL-C in different scenarios where my application might be. I know how to setup those for the process under test, but I need a way (in the code of the running test suite) to check whether that condition is reached or not to call exactly CTRL-C.

I work in Linux and I want to run my tests automatically with the help of CPPUNIT. In each of my CTRL-C tests I start the process and then I send CTRL-C using kill function having the PID of the process.

I am using shared memory; once the tested application reaches a condition of my interest or a point when I would like to send CTRL-C, I write a tag or a state into the shared memory. Aat the same time the test suite code running in a different process is continuosly polling the shared memory and once it reads the desired state it send CTRL-C/kill.

Do you think is a good approach or it is usually done in better/effective ways?

Kind Regards

AFG

like image 885
Abruzzo Forte e Gentile Avatar asked Dec 21 '10 15:12

Abruzzo Forte e Gentile


2 Answers

Introduce a level of indirection.

  1. Place your high-level program code behind a Facade (I use a class named Program).
  2. Have that Facade provide a shutdown() method, which performs all of the shutdown operation except calling std::exit().
  3. Unit test that shutdown() method as you would any other method.
  4. Have the signal handler delegate to that shutdown() method for the static Program object that represents your entire program then call std::exit(). This is the only part you can not unit test.
like image 28
Raedwald Avatar answered Nov 08 '22 22:11

Raedwald


First testing the behavior when some external signal is received does not look like unit testing but like functional testing.

Also, the way you do it also sound too complicated and is likely force some kind of synchronization and hide some behaviors.

On the other hand I do not really have something better to suggest for this kind of tests, this is usually done by external tools in a much less controled way.

like image 177
kriss Avatar answered Nov 09 '22 00:11

kriss