|
NAMECUnit - A unit testing framework for CSYNOPSIS
DESCRIPTIONCUnit is a system for writing, administering, and running unit tests in C. It uses a simple framework for building test structures, and provides a rich set of assertions for testing common data types. CUnit is built as a static library which is linked with the user's testing code.STRUCTURE & GENERAL USAGECUnit is a combination of a platform-independent framework with various user interfaces. The core framework provides basic support for managing a test registry, suites, and test cases. The user interfaces facilitate interaction with the framework to run tests and view results.The basic hierarchichal organization of CUnit is depicted here:
Test Registry
|
-----------------------------
| |
Suite '1' . . . . Suite 'N'
| |
--------------- ---------------
| | | |
Test '11' ... Test '1M' Test 'N1' ... Test 'NM'
Individual test cases are packaged into suites, which are registered with the active test registry. Suites can have setup and teardown functions which are automatically called before and after running the suite's tests. All suites/tests in the registry may be run using a single function call, or selected suites or tests can be run. The typical usage of CUnit is: 1. Write functions for tests (and suite init/cleanup if necessary). 2. Initialize the test registry using CU_initialize_registry() 3. Add test suites to the registry using CU_add_suite() 4. Add test cases to the suites using CU_add_test()
6. Cleanup the test registry using CU_cleanup_registry() All public names in CUnit are prefixed with 'CU_'. This helps minimize clashes with names in user code. Note that earlier versions CUnit used different names without this prefix. The older API names are deprecated but still supported. To use the older names, user code must now be compiled with USE_DEPRECATED_CUNIT_NAMES defined. WRITING TEST FUNCTIONSA "test" is a C function having the signature: void test_func(void). There are no restrictions on the content of a test function, except that it should not modify the CUnit framework (e.g. add suites or tests, modify the test registry, or initiate a test run). A test function may call other functions (which also may not modify the framework). Registering a test will cause it's function to be run when the test is run.CUnit provides a set of assertions for testing logical conditions. The success or failure of these assertions is tracked by the framework, and can be viewed when a test run is complete. Each assertion tests a single logical condition, and fails if the condition evaluates to CU_FALSE. Upon failure, the test continues unless the user chooses the 'xxx_FATAL' version of an assertion. In that case, the test function returns immediately. CUnit provides a set of assertions for testing logical conditions. The success or failure of these assertions is tracked by the framework, and can be viewed when a test run is complete. Each assertion tests a single logical condition, and fails if the condition evaluates to CU_FALSE. Upon failure, the test function continues unless the user chooses the 'xxx_FATAL' version of an assertion. In that case, the test function is aborted and returns immediately. FATAL versions of assertions should be used with caution! There is no opportunity for the test function to clean up after itself once a FATAL assertion fails. The normal suite cleanup function is not affected, however. There are also special "assertions" for registering a pass or fail with the framework without performing a logical test. These are useful for testing flow of control or other conditions not requiring a logical test. Other functions called by a registered test function may use the CUnit assertions freely. These assertions will be counted for the calling function. They may also use FATAL versions of assertions - failure will abort the original test function and its entire call chain. The assertions defined by CUnit are: #include <CUnit/CUnit.h> CU_ASSERT(int expression)
Assert that expression is CU_TRUE (non-zero).
CU_ASSERT_TRUE(value)
Assert that value is CU_TRUE (non-zero).
CU_ASSERT_FALSE(value)
Assert that value is CU_FALSE (zero).
CU_ASSERT_EQUAL(actual, expected)
Assert that actual == expected.
CU_ASSERT_NOT_EQUAL(actual, expected)
Assert that actual != expected.
CU_ASSERT_PTR_EQUAL(actual, expected)
Assert that pointers actual == expected.
CU_ASSERT_PTR_NOT_EQUAL(actual, expected)
Assert that pointers actual != expected.
CU_ASSERT_PTR_NULL(value)
Assert that pointer value == NULL.
CU_ASSERT_PTR_NOT_NULL(value)
Assert that pointer value != NULL.
CU_ASSERT_STRING_EQUAL(actual, expected)
Assert that strings actual and expected are
equivalent.
CU_ASSERT_STRING_NOT_EQUAL(actual, expected)
Assert that strings actual and expected differ.
CU_ASSERT_NSTRING_EQUAL(actual, expected, count)
Assert that 1st count chars of actual and expected are
the same.
CU_ASSERT_NSTRING_NOT_EQUAL(actual, expected, count)
Assert that 1st count chars of actual and expected
differ.
CU_ASSERT_DOUBLE_EQUAL(actual, expected, granularity)
Assert that |actual - expected| <= |granularity|.
Math library must be linked in for this assertion. CU_ASSERT_DOUBLE_NOT_EQUAL(actual, expected, granularity)
Assert that |actual - expected| > |granularity|.
Math library must be linked in for this assertion. CU_PASS(message) Register a success without performing a logical
test.
CU_FAIL(message)
Register a failure without performing a logical
test.
THE TEST REGISTRYThe test registry is the repository for suites and associated tests. The user normally only needs to initialize the registry before use and clean up afterwards. However, other functions are provided to manipulate the registry when necessary.The main functions needed by clients are: #include <CUnit/TestDB.h> (included automatically by <CUnit/CUnit.h>)
Other registry functions are primarily for internal and testing purposes. However, general users may find use for them and should be aware of them. These include:
MANAGING TESTS AND SUITESIn order for a test to be run by CUnit, it must be added to a test collection (suite) which is registered with the test registry.Adding Suites to the RegistryThe first step in setting up a test system is creating and registering one or more test collections (suites). Each suite has a name which may be used to reference the suite. Therefore, it is recommended (but not required) that each registered suite have a unique name. The current implementation does not support the creation of suites independent of the test registry. Suites are simultaneously created and added to the active registry as follows.#include <CUnit/TestDB.h> (included automatically by <CUnit/CUnit.h>)
Adding Tests to SuitesTests are created and added to suites. Each test has a name which may be used to reference the test later. Therefore, it is recommended (but not required) that the name be unique among all tests added to a single suite. The current implementation does not support the creation of tests independent of registered suites. Tests are simultaneously created and added to a suite as follows.#include <CUnit/TestDB.h> (included automatically by <CUnit/CUnit.h>)
Activation of Suites and TestsA suite or test must be active to be executed during a test run (all suites and tests are active by default upon creation). The active state of a suite or test is available as pSuite->fActive and pTest->fActive, respectively. The flag will be CU_TRUE when the entity is active, CU_FALSE otherwise. Use the following functions to selectively deactivate suites and tests to choose subsets of tests to run dynamically. Note that it is a framework error to deactivate a test or suite and then specifically request that it be run.#include <CUnit/TestDB.h> (included automatically by <CUnit/CUnit.h>)
Modifying Other Attributes of Suites and TestsNormally the attributes of suites and tests are set at creation time. In some cases, a client may wish to manipulate these to modify the test structure dynamically. The following functions are provided for this purpose, and should be used instead of directly setting the value of the data structure members. All return CUE_SUCCESS on success, and the indicated error code on failure.CU_ErrorCode CU_set_suite_name(CU_pSuite pSuite, const char *strNewName)
Lookup of Individual Suites and TestsIn most cases, clients will have references to registered suites and tests as pointers returned from CU_add_suite() and CU_add_test(). Occassionally, a client may need to be able to retrieve a reference to a suite or test. The following functions are provided to assist clients with this when the client has some information about the entity (name or order of registration). In cases where nothing is known about the suite or test, the client will need to iterate the internal data structures to enumerate the suites and tests. This is not directly supported in the client API.CU_pSuite CU_get_suite(const char* strName) CU_pSuite CU_get_suite_at_pos(unsigned int pos) unsigned int CU_get_suite_pos(CU_pSuite pSuite) unsigned int CU_get_suite_pos_by_name(const char* strName) </P> These functions facilitate lookup of suites registered in the active test registry. The first 2 functions allow lookup of the suite by name or position and return NULL if the suite cannot be found. The position is a 1-based index in the range [1 .. CU_get_registry() ->uiNumberOfSuites]. This may be helpful when suites having duplicate names are registered, in which case lookup by name can only retrieve the 1st suite having that name. The second 2 functions help the client identify the position of a registered suite. These return 0 if the suite cannot be found. In addition, all these functions set the CUnit error state to CUE_NOREGISTRY> if the registry is not initialized. As appropriate, CUE_NO_SUITENAME is set if strName is NULL, and CUE_NOSUITE is set if pSuite is NULL. CU_pTest CU_get_test(CU_pSuite pSuite, const char *strName) CU_pTest CU_get_test_at_pos<(CU_pSuite pSuite, unsigned int pos) unsigned int CU_get_test_pos<(CU_pSuite pSuite, CU_pTest pTest) unsigned int CU_get_test_pos_by_name(CU_pSuite pSuite, const char *strName) These functions facilitate lookup of tests registered in suites. The first 2 functions allow lookup of the test by name or position and return NULL if the test cannot found. The position is a 1-based index in the range [1 .. pSuite->uiNumberOfSuites]. This may be helpful when tests having duplicate names are registered, in which case lookup by name can only retrieve the 1st test having that name. The second 2 functions help the client identify the position of a test in a suite. These return 0 if the test cannot be found. In addition, all these functions set the CUnit error state to CUE_NOREGISTRY if the registry is not initialized, and to CUE_NOSUITE if pSuite is NULL. As appropriate, CUE_NO_TESTNAME is set if strName is NULL, and CUE_NOTEST is set if pTest is NULL. RUNNING TESTSCUnit supports running all tests in all registered suites, but individual tests or suites can also be run. During each run, the framework keeps track of the number of suites, tests, and assertions run, passed, and failed. Note that the previous results are cleared each time a test run is initiated (even if it fails).While CUnit provides primitive functions for running suites and tests, most users will want to use one of the user interfaces. These interfaces handle the details of interaction with the framework and provide output of test details and results for the user. For more about the primitive functions, see <CUnit/testRun.h>. Test ResultsThe interfaces present results of test runs, but client code may sometimes need to access the results directly. These results include various run counts, as well as a linked list of failure records holding the failure details. Test results must be retrieved before attempting to run other tests, which resets the result information. Functions for accessing the test results are:#include <CUnit/TestRun.h> (included automatically by <CUnit/CUnit.h>)
unsigned int uiLineNumber
char* strFileName char* strCondition CU_pTest pTest CU_pSuite pSuite Automated InterfaceThe automated interface is non-interactive. The current implementation only supports running all registered suites. Results are output to an xml file to be viewed by appropriate external tools. Registered tests can also be listed to an xml file for viewing. The following public functions are available:#include <CUnit/Automated.h>
Basic Interface (non-interactive)The basic interface is also non-interactive, with results output to stdout. This interface supports running individual suites or tests, and allows client code to control the type of output displayed during each run. This interface provides the most flexibility to clients desiring simplified access to the CUnit API. The following public functions are provided:#include <CUnit/Basic.h>
Interactive Console InterfaceThe console interface is interactive. All the client needs to do is initiate the console session, and the user controls the test run interactively. This include selection & running of suites and tests, and viewing test results.#include <CUnit/Console.h>
Interactive Curses InterfaceThe curses interface is interactive. All the client needs to do is initiate the curses session, and the user controls the test run interactively. This include selection & running of suites and tests, and viewing test results. Use of this interface requires linking the ncurses library into the application.#include <CUnit/CUCurses.h>
ERROR HANDLINGCUnit Error Status CodesMany CUnit functions set a framework error code when an exception occurs. The error codes are an enum named CU_ErrorCode declared in header file <CUnit/CUError.h> (included automatically by <CUnit/CUnit.h> ). The following functions are provided for retrieving the framework error status:#include <CUnit/CUError.h> (included automatically by <CUnit/CUnit.h>)
Error ActionsBy default, CUnit continues running tests when a framework error occurs. In this context, failed assertions are not considered "framework errors". All other error conditions including suite initialization or cleanup failures, inactive suites or tests which are run explicitly, etc. are included. This 'error action' can be changed by the user if desired. The following functions are provided:#include <CUnit/CUError.h> (included automatically by <CUnit/CUnit.h>)
The error actions are defined in enum CU_ErrorAction in header file <CUnit/CUError.h> (included automatically by <CUnit/CUnit.h> ) as follows:
AUTHORSAnil Kumar <anilsaharan@users.sourceforge.net>Jerry St.Clair <jds2@users.sourceforge.net> WEBSITEhttp://cunit.sourceforge.net
Visit the GSP FreeBSD Man Page Interface. |