Documentation

  • TUT How-To
    minimum steps to make TUT work for you

  • TUT Design
    what's hidden under the hood of tut.h, and why things are such as they are

  • TUT Usage Example
    it's better to see once...

  • TUT As Is
    complete source of TUT

Distribution

Support

TUT How-To

About this document

This text contains an explanation how you can start to use TUT in shortest possible time. It also contains some introductory information on unit testing itself for those who are new in the field.

What is TUT

TUT is a pure C++ unit test framework. It's name - TUT - stands for Template Unit Tests.

Unit test frameworks help to organize and run unit tests. Unit tests are used to check application correctness according to requirements. Those tests are usually run often (nightly or hourly) to achieve continuous integration.

TUT tests organization

C++ produces executable code, so tests have to be compiled into a single binary called test application. The application can be built in automated mode to perform nightly tests. It can also be built manually when a developer hunts for bugs.

The test application contains tests, organized into test groups. The functionality of a tested application can be divided into a few separate functional blocks (e.g. Access Rights, Export, Processing, ...). It is natural to group tests for each block together. Each test group has a unique human-readable name and normally is located in a separate file.

Tests

Test is a function (method) that implements some specific scenario and checks if the code (unit) behaves as required. Each test usually checks only one specific element of functionality. In almost any test we have a preparation phase, execution phase and verification phase. For example, if we need to test our container's clear() method is correct, we need:

  • create a container instance and fill it with some data (preparation phase)
  • call clear() method (execution phase)
  • ensure that size() now returns zero (verification phase)

What we are going to test?

Suppose we need to create a shared_ptr class for our application. We need to write tests for the class to be sure it works as it should. The same tests would also guide someone who will maintain the code.

Prior to test writing we should decide what to test. Maximalist approach requires to write so many tests that altering any single line of your code will break at least one test. Minimalist approach allows us to write tests only for the most general or the most complex use cases. The truth lies somewhere in between. We should consider common correct and incorrect usage scenarios, and use them as a basis for our tests.

For our shared_ptr we obviosly should test constructors, assignment operators, referencing and passing ownership. Later we may come to some other test scenarios.

Skeleton

If you don't have any implemented class to test yet, it would be good to implement it as a set of stub methods first. Thus you'll get an interface, and be able to write your tests. Yes, this is correct: you should write your tests before writing the code! Writing tests often helps to understand oddities in the current interface, and fix it. Besides, with the stubs all your tests will fail, so you'll be sure tests do their job.

Creating Test Group

Since we're writing unit tests, it would be a good idea to group the tests for our class in one place to be able to run them separately. It's also natural in C++ to place all the tests of a group into one compilation unit (i.e. source file). So, to begin, we should create a new file. Let's call it test_shared_ptr.cpp. (Final variant of the test group can be found in TUT distribution in directory examples/shared_ptr )

 
// test_shared_ptr.cpp 
#include <tut.h>
namespace tut { }; 
		

As you see, you need to include TUT header file (as expected) and use namespace tut for tests. You may also use anonymous namespace if your compiler allows it (you will need to instantiate methods from tut namespace and some compilers refuse to place such instantiations into the anonymous namespace).

A test group in TUT framework is described by the special template test_group<T>. The template parameter T is a type that will hold all test-specific data during the test execution. Actually, the data stored in T are member data of the test class. Test class is inherited from T, so any test can refer to the data in T as it's member data. Complex? Not really, as you'll see.

For simple test groups (where all data are stored in test local variables) type T could be an empty struct.

 
#include <tut.h>
namespace tut 
{ 
	struct shared_ptr_data { }; 
} 
		

But when tests have complex or repeating creation phase, you may put data members into T and provide constructor (and, if required, destructor) for it. For each test, a new instance of T will be created. To prepare your test for execution TUT will use default constructor. Similarly, after the test has been finished, the destructor is called to clean up T. I.e.:

 
#include <tut.h>
namespace tut 
{ 
	struct complex_data 
	{ 
		connection* con; 
		complex_data()
		{ 
			con = db_pool.get_connection(); 
		} 
		~complex_data()
		{
			db_pool.release_connection(con); 
		} 
	};
	
	// each test from now on will have con data 
	// member initialized by constructor
	...
	con->commit(); 
	... 
		

What will happen if the constructor throws an exception? TUT will treat it as if test itself failed with exception, so this test will not be executed. You'll see an exception mark near the test, and if the constructor throwed something printable, the message will appear.

Exception in destructor is threated a bit different. Reaching destruction phase means that the test is passed, so TUT marks test with warning status meaning that test itself was OK, but something bad has happend after the test.

Well, all we have written so far is just a type declaration. To work with a group we have to have an object, so we must create the test group object. Since we need only one test group object for each unit, we can (and should, actually) make this object static. To prevent name clash with other test group objects in the namespace tut, we should provide an unique descriptive name (or, alternatively, we may put it into the anonymous namespace). The former is more correct, but the descriptive name usually works well too, unless you're too terse in giving names to objects.

 
#include <tut.h>
namespace tut 
{ 
	struct shared_ptr_data {};
	typedef test_group<shared_ptr_data> tg; 
	tg shared_ptr_group("shared_ptr"); 
}; 
		

As you see, any test group accepts a single parameter - it's human-readable name. This name is used to identify the group when a programmer wants to execute all tests or a single test within the group. So this name shall also be descriptive enough to avoid clashes. Since we're writing tests for a specific unit, it's enough to name it after the unit name.

Test group constructor will be called at unspecified moment at the test application startup. The constructor performs self-registration; it calls tut::runner and asks it to store the test group object name and location. Any other test group in the system undergoes the same processing, i.e. each test group object registers itself. Thus, test runner can iterate all test groups or execute any test group by its name.

Newly created group has no tests associated with it. To be more precise, it has predefined set of dummy tests. By default, there are 50 tests in a group, including dummy ones. To create a test group with higher volume (e.g. when tests are generated by a script and their number is higher) we must provide a higher border of test group size when it is instantiated:

 
#include <tut.h>
namespace tut 
{ 
	struct huge_test_data { };
	// test group with maximum 500 tests 
	typedef	test_group<huge_test_data,500> testgroup; 
	testgroup huge_test_testgroup("huge group"); 
}; 
		

Note also that your compiler would possibly need a command-line switch or pragma to enlarge recursive instantiation depth. For g++, for example, you should specify at least --ftemplate-depth-501 to increase the depth to 500. For more information see your compiler documentation.

Creating Tests

Now it's time to fill our test group with content.

In TUT, all tests have unique numbers inside the test group. Some people believe that textual names better describe failed tests in reports. I agree. But C++ templates work with numbers because they are compile-time constants and refuse to do the same with strings, since strings are in fact addresses of character buffers, i.e. run-time data. So I had no other choice.

As I mentioned above, our test group already has a few dummy tests; and we can replace any of them with something real just by writing our own version:

 
#include <tut.h>
namespace tut 
{ 
	struct shared_ptr_data{};
	typedef test_group<shared_ptr_data> testgroup; 
	typedef	testgroup::object testobject; 
	testgroup shared_ptr_testgroup("shared_ptr");

	template<> template<> 
	void testobject::test<1>() 
	{ 
		// do nothing test 
	} 
}; 
		

So far this test does nothing, but it's enough to illustrate the way we may create our own test methods. Note that your shouldn't call anything like REGISTER_TEST() macro or do anything similarely annoying. Just write a test, and it will be executed.

All tests in the group are methods of the type test_group<T>::object. This class is directly inherited from our test data structure. In our case, it is

 
class object : public shared_ptr_data { };
		

This allows to access members of the shared_ptr_data structure directly, since at the same time they are members of the object type itself. We also typedef the type with testobject for brevity.

We mark our test with number 1. Previously, test group had a dummy test with the same number, but now, since we've defined our own version, it replaced the dummy test as more specialized one. It's how C++ template ordering works.

The test we've written always succeeds. Successful test returns with no exceptions. Unsuccessful one either throws an exception, or fails at fail() or ensure() methods (which anyway just throw the exception when failed).

First real test

Now we know enough to write the first real working test. This test will create shared_ptr instances and check their state. We will define a small structure (keepee) to use it as shared_ptr stored object type.

 
#include <tut.h> 
#include <shared_ptr.h>
namespace tut 
{ 
	struct shared_ptr_data 
	{ 
		struct keepee{ int data; }; 
	};
	
	typedef test_group<shared_ptr_data> testgroup; 
	typedef	testgroup::object testobject; 
	testgroup shared_ptr_testgroup("shared_ptr");
			
	// checks default constructor. 
	template<> template<> 
	void testobject::test<1>() 
	{ 
		shared_ptr<keepee> def;
		ensure("null",def.get()== 0); 
	} 
}; 
		

That's all! The first line creates shared_ptr. If constructor throws an exception, test will fail (exceptions, including '...', are catched by the TUT framework). If the first line succeeds, we must check whether the kept object is null one. To do this, we use test object member function ensure(), which throws std::logic_error with a given message if its second argument is not true. Finally, if destructor of shared_ptr fails with exception, TUT also will report this test as failed.

It's equally easy to write a test for the scenario where we expect to get an exception: let's consider our class should throw an exception if it has no stored object, and the operator -> is called.

 
	// checks operator -> throws instead of returning null.
	template<> template<> 
	void testobject::test<2>() 
	{ 
		try 
		{
			shared_ptr<keepee> sp; 
			sp->data = 0; 
			fail("exception expected"); 
		}
		catch( const std::runtime_error& ex ) 
		{ 
			// ok 
		} 
	} 
		

Here we expect the std::runtime_error. If operator doesn't throw it, we'll force the test to fail using another member function: fail(). It just throws std::logic_error with a given message. If operator throws anything else, our test will fail too, since we intercept only std::runtime_error, and any other exception means the test has failed.

NB: our second test has number 2 in its name; it can, actually, be any in range 1..Max; the only requirement is not to write tests with the same numbers. But if you did, compiler will force you to fix it anyway.

And finally, one more test to demonstrate how to use the ensure_equals template member function:

 
	/** checks keepee counting. 
	template<> template<> 
	void testobject::test<3>() 
	{ 
		shared_ptr<keepee> sp1(new keepee()); 
		shared_ptr<keepee> sp2(sp1); 
		ensure_equals("second copy at sp1",sp1.count(),2);
		ensure_equals("second copy at sp2",sp2.count(),2);
	} 
		

The test checks if the shared_ptr correctly counts references during copy construction. What's interesting here is the template member ensure_equals. It has an additional functionality comparing with similar call ensure("second_copy",sp1.count()==2); it uses operator == to check the equality of the two passed parameters and, what's more important, it uses std::stringstream to format the passed parameters into a human-readable message (smth like: "second copy: expected 2, got 1"). It means that ensure_equals cannot be used with the types that don't have operator <<; but for those having the operator it provides much more informational message.

In contrast to JUnit assertEquals, where the expected value goes before the actual one, ensure_equals() accepts the expected after the actual value. I believe it's more natural to read ensure_equals("msg", count, 5) as "ensure that count equals to 5" rather than JUnit's "assert that 5 is the value of the count".

Running tests

Tests are written, but an attempt to run them will be unsuccessful. We need a few other bits to complete the test application.

First of all, we need a main() method, simply because it must be in every application. Second, we need a test runner singleton. Remember I said each test group should register itself in singleton? So, we need that singleton. And, finally, we need a kind of a callback handler to visualize our test results.

The design of TUT doesn't strictly set a way the tests are visualized; instead, it provides an opportunity to get the test results by means of callbacks. Moreover it allows user to output the results in any format he prefers. Of course, there is a "reference implementation" in the example/ subdirectory of the project.

Test runner singleton is defined in tut.h, so all we need to activate it is to declare an object of the type tut::test_runner_singleton in the main module with a special name tut::runner.

Now, with the test_runner we can run tests. Singleton has method get() returning a reference to an instance of the test_runner class, which in turn has methods

    >
  • run_tests() to run all tests in all groups
  • run_tests(const std::string& groupname) to run all tests in a given group
  • run_test(const std::string& grp,int n) to run one test in the specified group.

So here goes our main module:

 
// main.cpp 
#include <tut.h>
namespace tut 
{ 
	test_runner_singleton runner; 
}

int main() 
{ 
	// run all tests in all groups 
	runner.get().run_tests();
	
	// run all tests in group "shared_ptr"
	runner.get().run_tests("shared_ptr");
			
	// run test number 5 in group "shared_ptr"
	runner.get().run_test("shared_ptr",5);
	
	return 0; 
} 
		

It's up to user to handle command-line arguments or GUI messages and map those arguments/messages to actual calls to test runner. Again, as you see, TUT doesn't restrict user here.

But, the last question is still unanswered: how do we get our test results? The answer lies inside tut::callback interface. We could create it's subclass, and write a few simple methods. We also can omit any method since they have default no-op implementation. Each corresponding method is called in the following cases:

  • a new test run has started;
  • test is finished;
  • test run is finished.

Here is a minimal implementation:

 
class visualizator : public tut::callback 
{ 
public: 
	void run_started(){ }
	void test_completed(const tut::test_result& tr) 
	{ // ... show test result here ... }
	void run_completed(){ } 
}; 
		

The most important is the test_completed() method; its parameter has type test_result, and contains everything about the finished test, from its group name and number to the exception message, if any. Member variable result is an enum which contains status of the test: ok, fail or ex. Take a look at the examples/basic/main.cpp for more complete visualizator.

Visualizator should be passed to the test_runner before the run. Knowing that, we are ready to write the final version of our main module:

 
#include <tut.h>
namespace tut 
{ 
	test_runner_singleton runner; 
}

class callback : public tut::callback 
{ 
public: 
	void run_started(){ std::cout << "\nbegin"; }
	void test_completed(const tut::test_result& tr) 
	{ std::cout << tr.test_pos << "=" << tr.result << std::flush; }
	void run_completed(){ std::cout << "\nend"; } 
};

int main() 
{ 
	callback clbk; 
	runner.get().set_callback(&clbk);
	runner.get().run_tests(); 
	return 0; 
} 
		

That's it. We are now ready to link and run our test application. Do it as often as possible; once a day is a definite must. I hope TUT will help you to make your application more robust and relieve your testing pain. Feel free to send your questions, suggestions and critical opinions to me; I'll do my best to address them asap.