Felix Fietkau 4f27765f0d ucimap: add support for saving lists to uci 14 years ago
..
config 25b34febb4 ucimap: add helper function for resizing lists and freeing items (both using ucimap internal allocation list), add test coverage for config change operations 14 years ago
references 4f27765f0d ucimap: add support for saving lists to uci 14 years ago
shunit2 a51c515dc1 Adds a unit test framework based on shunit2 15 years ago
tests.d 31a900e940 test: do not print expected error messages 14 years ago
Makefile a51c515dc1 Adds a unit test framework based on shunit2 15 years ago
README a51c515dc1 Adds a unit test framework based on shunit2 15 years ago
tests.sh 31a900e940 test: do not print expected error messages 14 years ago

README

This test script uses shunit2 :
http://code.google.com/p/shunit2/

uci-static binary is used during tests.


How to add a test
=================

* Test files are located in './test/tests.d'

* These files contain shell functions beginning with 'test' :
"
test_get_option ()
{
...
}
...
"

* shunit2 functions can be used in these functions :
http://shunit2.googlecode.com/svn/trunk/source/2.1/doc/shunit2.html

* Additional environment variables are available :
- ${CONFIG_DIR} : uci search path for config files. This directory is
reset after each test.
- ${CHANGES_DIR} : uci search path for config change files. This directory is
reset after each test.
- ${TMP_DIR} : path to a directory where can be stored temporary files
during tests. This directory is reset after each test.
- ${UCI} : uci static binary called with above config and changes
directories as parameters.
- ${REF_DIR} : path to a directory where can be stored reference files
or data.