aboutsummaryrefslogtreecommitdiff
path: root/unittest/constants.py
diff options
context:
space:
mode:
authorSzczepan Zalega <szczepan@nitrokey.com>2016-10-31 20:47:23 +0100
committerSzczepan Zalega <szczepan@nitrokey.com>2016-11-26 18:56:27 +0100
commit103f71bb4e06132e70eb26fc2f1c5ca560068107 (patch)
treea0e04464ec93dede63c40d407c343630974a0bf4 /unittest/constants.py
parent266b57dfe7b36799243816b7af22f3dd69b0d197 (diff)
downloadlibnitrokey-103f71bb4e06132e70eb26fc2f1c5ca560068107.tar.gz
libnitrokey-103f71bb4e06132e70eb26fc2f1c5ca560068107.tar.bz2
Tests reorganization (Python)
Signed-off-by: Szczepan Zalega <szczepan@nitrokey.com>
Diffstat (limited to 'unittest/constants.py')
-rw-r--r--unittest/constants.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/unittest/constants.py b/unittest/constants.py
new file mode 100644
index 0000000..e3caae3
--- /dev/null
+++ b/unittest/constants.py
@@ -0,0 +1,30 @@
+from enum import Enum
+from misc import to_hex
+
+RFC_SECRET_HR = '12345678901234567890'
+RFC_SECRET = to_hex(RFC_SECRET_HR) # '12345678901234567890'
+
+
+# print( repr((RFC_SECRET, RFC_SECRET_, len(RFC_SECRET))) )
+
+class DefaultPasswords(Enum):
+ ADMIN = '12345678'
+ USER = '123456'
+ ADMIN_TEMP = '123123123'
+ USER_TEMP = '234234234'
+
+
+class DeviceErrorCode(Enum):
+ STATUS_OK = 0
+ NOT_PROGRAMMED = 3
+ WRONG_PASSWORD = 4
+ STATUS_NOT_AUTHORIZED = 5
+ STATUS_AES_DEC_FAILED = 0xa
+
+
+class LibraryErrors(Enum):
+ TOO_LONG_STRING = 200
+ INVALID_SLOT = 201
+ INVALID_HEX_STRING = 202
+ TARGET_BUFFER_SIZE_SMALLER_THAN_SOURCE = 203
+