diff options
author | Szczepan Zalega <szczepan@nitrokey.com> | 2018-06-19 15:04:48 +0200 |
---|---|---|
committer | Szczepan Zalega <szczepan@nitrokey.com> | 2018-06-19 15:04:48 +0200 |
commit | 57c0b8c1235c5bff3640e85a8e17be20e8f422f3 (patch) | |
tree | 0100d3e874ddc38765975f18d74368aeabf27c38 | |
parent | 35ba2261ddeac3881dc7d4f14b737947a19a4b9b (diff) | |
download | libnitrokey-57c0b8c1235c5bff3640e85a8e17be20e8f422f3.tar.gz libnitrokey-57c0b8c1235c5bff3640e85a8e17be20e8f422f3.tar.bz2 |
Add offline test for version getter
Signed-off-by: Szczepan Zalega <szczepan@nitrokey.com>
-rw-r--r-- | unittest/test_offline.cc | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/unittest/test_offline.cc b/unittest/test_offline.cc index 468849e..aad875f 100644 --- a/unittest/test_offline.cc +++ b/unittest/test_offline.cc @@ -160,3 +160,14 @@ TEST_CASE("Test device commands ids", "[fast]") { REQUIRE(STICK20_CMD_CHANGE_UPDATE_PIN == static_cast<uint8_t>(CommandID::CHANGE_UPDATE_PIN)); } + +#include "version.h" +TEST_CASE("Test version getter", "[fast]") { + REQUIRE(nitrokey::get_major_library_version() >= 3u); + REQUIRE(nitrokey::get_minor_library_version() >= 3u); + const char *library_version = nitrokey::get_library_version(); + REQUIRE(library_version != nullptr); + std::string s = library_version; + REQUIRE(s.length() >= 8); + REQUIRE(s.find("g") != std::string::npos); +} |