aboutsummaryrefslogtreecommitdiff
path: root/unittest/test_137.cc
diff options
context:
space:
mode:
Diffstat (limited to 'unittest/test_137.cc')
-rw-r--r--unittest/test_137.cc12
1 files changed, 12 insertions, 0 deletions
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 <libnitrokey/NK_C_API.h>
+#include "catch2/catch.hpp"
+#include <cstring>
+
+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);
+}