testutil
The testutil package is a test framework that provides facilities for specifying test cases and recording test results.
You would use it to build regression tests for your library.
Description
A package may optionally contain a set of test cases. Test cases are not normally compiled and linked when a package is built; they are only included
when the "test" identity is specified. All of a package's test code goes in its src/test
directory. For example, the nffs package's test code is located in the following directory:
* fs/nffs/src/test/
This directory contains the source and header files that implement the nffs test code.
The test code has access to all the header files in the following directories:
* src * src/arch/<target-arch> * include * src/test * src/test/arch/<target-arch> * include directories of all package dependencies
Package test code typically depends on the testutil package, described later in this document.
Some test cases or test initialization code may be platform-specific. In such cases, the platform-specific function definitions are placed in arch subdirectories within the package test directory.
While building the test code (i.e., when the test
identity is specified), the newt tool defines the TEST
macro. This macro is defined during compilation of all C source files in all projects and packages.
Tests are structured according to the following hierarchy:
[test] / \ [suite] [suite] / \ / \ [case] [case] [case] [case]
I.e., a test consists of test suites, and a test suite consists of test cases.
The test code uses testutil to define test suites and test cases.
Regression test can then be executed using 'newt target test' command, or by including a call to your test suite from project/test/src/test.c
.
Example
This Tutorial shows how to create a test suite for a Mynewt package.
Data structures
struct tu_config { int tc_print_results; int tc_system_assert; tu_case_init_fn_t *tc_case_init_cb; void *tc_case_init_arg; tu_case_report_fn_t *tc_case_fail_cb; void *tc_case_fail_arg; tu_case_report_fn_t *tc_case_pass_cb; void *tc_case_pass_arg; tu_suite_init_fn_t *tc_suite_init_cb; void *tc_suite_init_arg; tu_restart_fn_t *tc_restart_cb; void *tc_restart_arg; }; extern struct tu_config tu_config;
The global tu_config
struct contains all the testutil package's settings.
This should be populated before tu_init()
is called.
List of Functions
The functions, and macros available in testutil
are:
Function | Description |
---|---|
tu_init | Initializes the test framework according to the contents of the tu_config struct. |
TEST_ASSERT | Asserts that the specified condition is true. |
TEST_PASS | Reports a success result for the current test. |
TEST_SUITE | Declares a test suite function. |
TEST_CASE | Defines a test case function. |
TEST_CASE_DECL | Declares a test case function. his is only required if the test case function exists in a different file than the test suite. |
tu_restart | This function is used when a system reset is necessary to proceed with testing. |