From c802af2606ed7535a19d373a7b39e280255057b6 Mon Sep 17 00:00:00 2001 From: Szczepan Zalega Date: Mon, 7 Jan 2019 14:52:30 +0100 Subject: Add test case mentioned in comment See https://github.com/Nitrokey/libnitrokey/issues/137#issue-396187889 for details Issue #137 Signed-off-by: Szczepan Zalega --- unittest/test_137.cc | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 unittest/test_137.cc (limited to 'unittest/test_137.cc') diff --git a/unittest/test_137.cc b/unittest/test_137.cc new file mode 100644 index 0000000..bc914d9 --- /dev/null +++ b/unittest/test_137.cc @@ -0,0 +1,12 @@ +#include +#include "catch2/catch.hpp" +#include + +TEST_CASE("Issue #137", "[fast]") { + REQUIRE(NK_login_auto() == 1); + REQUIRE(NK_user_authenticate("123456", "temppw") == 0); + auto s = NK_get_totp_code_PIN(0, 0, 0, 0, "temppw"); + REQUIRE(s != 0); + REQUIRE(strnlen(s, 100) > 0 ); + REQUIRE(NK_logout() == 0); +} -- cgit v1.2.1