aboutsummaryrefslogtreecommitdiff
path: root/unittest/test3.cc
diff options
context:
space:
mode:
authorSzczepan Zalega <szczepan@nitrokey.com>2016-11-09 14:29:18 +0100
committerSzczepan Zalega <szczepan@nitrokey.com>2016-12-03 16:01:35 +0100
commitf76ac655fff3df7eb0e645ca39d18510714b0039 (patch)
tree62e185b9f4d68507922431976270a3bba8cf8326 /unittest/test3.cc
parent119ea0b111c9ca46fda32911c1c8c33b36aad3db (diff)
downloadlibnitrokey-f76ac655fff3df7eb0e645ca39d18510714b0039.tar.gz
libnitrokey-f76ac655fff3df7eb0e645ca39d18510714b0039.tar.bz2
Authorization fix: GetTOTP and WriteToTOTPSLot + test
Signed-off-by: Szczepan Zalega <szczepan@nitrokey.com>
Diffstat (limited to 'unittest/test3.cc')
-rw-r--r--unittest/test3.cc46
1 files changed, 44 insertions, 2 deletions
diff --git a/unittest/test3.cc b/unittest/test3.cc
index 226e35c..8a9423f 100644
--- a/unittest/test3.cc
+++ b/unittest/test3.cc
@@ -103,7 +103,7 @@ TEST_CASE("write general config", "[pronew]") {
WriteGeneralConfig::CommandTransaction::run(stick, p);
}
-TEST_CASE("authorize user OTP", "[pronew]") {
+TEST_CASE("authorize user HOTP", "[pronew]") {
Stick10 stick;
connect_and_setup(stick);
authorize(stick);
@@ -132,6 +132,48 @@ TEST_CASE("authorize user OTP", "[pronew]") {
GetHOTP::CommandTransaction::run(stick, p3);
);
strcpyT(p3.temporary_user_password, temporary_password);
- GetHOTP::CommandTransaction::run(stick, p3);
+ auto code_response = GetHOTP::CommandTransaction::run(stick, p3);
+ REQUIRE(code_response.data().code == 1284755224);
+
+}
+
+
+TEST_CASE("authorize user TOTP", "[pronew]") {
+ Stick10 stick;
+ connect_and_setup(stick);
+ authorize(stick);
+
+ auto p = get_payload<WriteGeneralConfig>();
+ p.enable_user_password = 1;
+ strcpyT(p.temporary_admin_password, temporary_password);
+ WriteGeneralConfig::CommandTransaction::run(stick, p);
+
+ auto pw = get_payload<WriteToTOTPSlot>();
+ strcpyT(pw.slot_secret, RFC_SECRET);
+ strcpyT(pw.temporary_admin_password, temporary_password);
+ pw.use_8_digits = true;
+ WriteToTOTPSlot::CommandTransaction::run(stick, pw);
+
+ auto pw2 = get_payload<WriteToTOTPSlot_2>();
+ strcpyT(pw2.temporary_admin_password, temporary_password);
+ pw2.slot_number = 0 + 0x20;
+ pw2.slot_interval= 30;
+ strcpyT(pw2.slot_name, "test name TOTP");
+ WriteToTOTPSlot_2::CommandTransaction::run(stick, pw2);
+
+ auto p_get_totp = get_payload<GetTOTP>();
+ p_get_totp.slot_number = 0 + 0x20;
+
+ REQUIRE_THROWS(
+ GetTOTP::CommandTransaction::run(stick, p_get_totp);
+ );
+ strcpyT(p_get_totp.temporary_user_password, temporary_password);
+
+ auto p_set_time = get_payload<SetTime>();
+ p_set_time.reset = 1;
+ p_set_time.time = 59;
+ SetTime::CommandTransaction::run(stick, p_set_time);
+ auto code = GetTOTP::CommandTransaction::run(stick, p_get_totp);
+ REQUIRE(code.data().code == 94287082);
} \ No newline at end of file