diff options
author | Szczepan Zalega <szczepan@nitrokey.com> | 2017-06-27 09:42:18 +0200 |
---|---|---|
committer | Szczepan Zalega <szczepan@nitrokey.com> | 2017-06-27 09:42:18 +0200 |
commit | ec500f102cc63b89539c1376ac0d522ad04634ab (patch) | |
tree | 87626efd6a154020998a57533d62dea53adef9d9 | |
parent | 2f4d104d33fabcfb63c635db2b6cc92be651f44a (diff) | |
download | libnitrokey-ec500f102cc63b89539c1376ac0d522ad04634ab.tar.gz libnitrokey-ec500f102cc63b89539c1376ac0d522ad04634ab.tar.bz2 |
Tests: do additional authentication for Pro 0.7
Signed-off-by: Szczepan Zalega <szczepan@nitrokey.com>
-rw-r--r-- | unittest/test_pro.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/unittest/test_pro.py b/unittest/test_pro.py index 3f1f0a3..c292940 100644 --- a/unittest/test_pro.py +++ b/unittest/test_pro.py @@ -727,6 +727,8 @@ def test_HOTP_secrets(C, secret): DefaultPasswords.ADMIN_TEMP) == DeviceErrorCode.STATUS_OK dev_res = [] lib_res = [] + # repeat authentication for Pro 0.7 + assert C.NK_first_authenticate(DefaultPasswords.ADMIN, DefaultPasswords.ADMIN_TEMP) == DeviceErrorCode.STATUS_OK assert C.NK_write_hotp_slot(slot_number, 'secret' + str(len(secret)), secret, counter, use_8_digits, False, False, "", DefaultPasswords.ADMIN_TEMP) == DeviceErrorCode.STATUS_OK code_device = gs(C.NK_get_hotp_code(slot_number)) |