Actions
UnitTesting » History » Revision 8
« Previous |
Revision 8/12
(diff)
| Next »
Davide Pesavento, 11/21/2017 03:17 PM
Unit Testing¶
NFD requires unit testing for most modules.
NFD uses Boost Unit Test Framework.
Learning Resources for Boost Unit Test Framework¶
- Boost Unit Test Framework documentation
- After compiling the unit-test binary, it is possible at run time to select which tests to run and what kind of output is desired.
Use--helpcommand line option to get more information about the available options.
Testing Code Guidelines¶
- Test suite for
.../folder/module-name.hppshould be placed intests/.../folder/module-name.t.cpp.- For example, test suite for
daemon/fw/forwarder.hppshould be place intests/daemon/fw/forwarder.t.cpp.
- For example, test suite for
- Test suite should be named
TestModuleName, and nested under test suites named after directories.- For example, test suite for
security/transform/base64-decode.hppis namedSecurity/Transform/TestBase64Decode.
- For example, test suite for
- Test suite should be declared inside the same namespace of the tested type plus additional
testsnamespace.- For example, test suite for
nfd::Forwarderis declared innfd::tests, test suite fornfd::cs::Csis declared innfd::cs. - If needed, parent
testssub-namespace can be imported withusing namespacedirective.
- For example, test suite for
- Test suite should use
nfd::tests::BaseFixturefixture, to get automatic setup and teardown of globalio_service.- If a custom fixture is defined for test suite or test case, that custom fixture should derive from
BaseFixture. IdentityManagementFixtureshould be used if a test case needs to create identities in KeyChain.UnitTestTimeFixtureshould be used if mocked clocks are feasible/desirable.
- If a custom fixture is defined for test suite or test case, that custom fixture should derive from
Testing Helpers¶
tests/limited-io.hppprovides operation count and time limittests/daemon/face/dummy-face.hppprovides aFacethat doesn't depend on a sockettests/daemon/fw/strategy-tester.hppprovides a facade to test a forwarding strategytests/daemon/fw/topology-tester.hppprovides facilities to test forwarder and strategy in a virtual topology
Updated by Davide Pesavento almost 8 years ago · 12 revisions