diff options
| author | Szczepan Zalega <szczepan@nitrokey.com> | 2019-06-19 14:32:24 +0200 | 
|---|---|---|
| committer | Szczepan Zalega <szczepan@nitrokey.com> | 2019-06-19 14:41:26 +0200 | 
| commit | 12c4198187de476a4e27da16c7b8737e6550973a (patch) | |
| tree | 65f0cf56c96cb4a667e1fdbefdca054314a6bf5a | |
| parent | 2ca5deb106ede1ffd236f153abae8fe6e3b0401c (diff) | |
| download | libnitrokey-12c4198187de476a4e27da16c7b8737e6550973a.tar.gz libnitrokey-12c4198187de476a4e27da16c7b8737e6550973a.tar.bz2 | |
Add HOTP counter tests
Signed-off-by: Szczepan Zalega <szczepan@nitrokey.com>
| -rw-r--r-- | unittest/test_pro.py | 24 | 
1 files changed, 24 insertions, 0 deletions
| diff --git a/unittest/test_pro.py b/unittest/test_pro.py index 685d0fa..b8ae290 100644 --- a/unittest/test_pro.py +++ b/unittest/test_pro.py @@ -979,3 +979,27 @@ def test_bootloader_password_change_pro_too_long(C):      long_string = b'a' * 100      assert C.NK_change_firmware_password_pro(long_string, long_string) == LibraryErrors.TOO_LONG_STRING      assert C.NK_change_firmware_password_pro(DefaultPasswords.UPDATE, long_string) == LibraryErrors.TOO_LONG_STRING + + +@pytest.mark.otp +@pytest.mark.parametrize('counter_mid', [10**3-1, 10**4-1, 10**7-1, 10**8-10, 2**16, 2**31-1, 2**32-1, 2**33, 2**50, 2**60, 2**63])  # 2**64-1 +def test_HOTP_counter_getter(C, counter_mid: int): +    if len(str(counter_mid)) > 8: +        skip_if_device_version_lower_than({'S': 54, 'P': 7}) +    assert C.NK_first_authenticate(DefaultPasswords.ADMIN, DefaultPasswords.ADMIN_TEMP) == DeviceErrorCode.STATUS_OK +    use_pin_protection = False +    use_8_digits = False +    assert C.NK_write_config(255, 255, 255, use_pin_protection, not use_pin_protection, +                             DefaultPasswords.ADMIN_TEMP) == DeviceErrorCode.STATUS_OK +    read_slot_st = ffi.new('struct ReadSlot_t *') +    if not read_slot_st: +        raise Exception("Could not allocate status") +    slot_number = 1 +    for counter in range(counter_mid-3, counter_mid+3): +        # assert C.NK_first_authenticate(DefaultPasswords.ADMIN, DefaultPasswords.ADMIN_TEMP) == DeviceErrorCode.STATUS_OK +        assert C.NK_write_hotp_slot(slot_number, b'python_test', bbRFC_SECRET, counter, use_8_digits, False, False, b'', +                                    DefaultPasswords.ADMIN_TEMP) == DeviceErrorCode.STATUS_OK +        assert C.NK_read_HOTP_slot(slot_number, read_slot_st) == DeviceErrorCode.STATUS_OK +        assert read_slot_st.slot_counter == counter + + | 
