Difference between revisions of "Testing"
Line 1: | Line 1: | ||
<figure id="fig:tests"> | <figure id="fig:tests"> | ||
− | [[File:tests.png| | + | [[File:tests.png|500px|thumb|upright=2|alt=Output of successfull ./run_tests.sh script run.|<caption>Output of successfull <code>./run_tests.sh</code> script run.</caption>]] |
</figure> | </figure> | ||
Revision as of 17:02, 1 November 2016
We have 4 different kind of tests in this library:
- unit tests
- style checks
- docs check
- system configuration check
The ./run_tests.sh
script controlls all tests
1 Usage: ./run_tests.sh
2 Options:
3 -c run only configuration test
4 -t run only unit tests
5 -s run only stylechecks
6 -d run only docs check
7 -h print this help
8 Example:
9 ./run_tests.sh -sd
Before pushing run ./run_tests.sh
.
This script makes and executes all <util_name>_test.cpp
test files, checks coding style and
documentation. If anything is wrong you will get pretty little red error, but if you see green, you're good to go.
Contents
Unit tests
All library code is tested by means of unit tests. Unit tests provide verification, are good examples and prevent regressions. For any newly added functionality, a unit test testing that functionality must be added.
Writing unit tests
Every new functionality (eg. added class, function or method) should have a unit test. Unit tests
- assure that code compiles
- assure that code executes without crashes
- assure that code produces expected results
- define observable behaviour of the method, class, ...
- prevent future modifications of this code to change this behaviour accidentally
Unit tests should tests observable behaviour, eg. if function gets 1 and 3 as input, output should be 6. They should test for edge cases and most common cases, as well as for expected death cases.
We are using Google Test framework for our unit tests. See their introduction to unit testing for more details.
The basic structure is
1 TEST(Group, Name) {
2 EXPECT_EQ(a, b);
3 }
Each header file should be accompanied by a <util_name>_test.cpp
with unit tests.
When writing unit tests, always write them thoroughly and slowly, take your time. Never copy your own code's ouput to the test; rather produce it by hand or with another trusted tool. Even if it seems obvious the code is correct, remember that you are writing tests also for the future.
Running unit tests
Tests can be run all at once via make run_all_tests
or individually via eg. make basisfunc_run_tests
.
Compiled binary supports running only specified test. Use ./all_tests --gtest_filter=Domain*
for filtering and ./all_tests --help
for more options.
Style check
Before commiting, a linter cpplint.py
is ran on all the source and test files to make sure that the code follows the style guide.
The linter is not perfect, so if any errors are unjust, feel free to comment appropriate lines in the linter out and commit the change.
Docs check
Every function, class or method should also have documentation as einforced by doxygen in the header where they are defined. In the comment block, all parameters, and return value should be meaningully described. It can also containg a short example.
Example:
1 /**
2 * Computes the force that point a inflicts on point b.
3 *
4 * @param a The index of the first point.
5 * @param b The index of the second point
6 * @return The size of the force vector from a to b.
7 */
8 double f (int a, int b);
Any longer discussions about the method used or long examples belog to this wiki, but can be linked from the docs.
Configuration testing
The script scripts/configure.sh checks the computer has appropriate packages and that very basic code examples (hdf5, sfml) compile. It currently support arch like and ubuntu like distros.
If you find yourself making modification to .gitlab-ci.yml then maybe you should update this check as well, as well as some documentation in the how to build page but this should not happen very often.