1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-11 10:29:01 +00:00
trezor-firmware/tests/test_trezor.config.py
2016-11-06 17:04:25 +01:00

28 lines
756 B
Python

from common import *
from trezor.crypto import random
from trezor import config
class TestConfig(unittest.TestCase):
def test_set_get(self):
config.wipe()
for _ in range(128):
appid, key = random.uniform(256), random.uniform(256)
value = random.bytes(128)
config.set(appid, key, value)
value2 = config.get(appid, key)
self.assertEqual(value, value2)
def test_get_default(self):
config.wipe()
for _ in range(128):
appid, key = random.uniform(256), random.uniform(256)
value = random.bytes(128)
value2 = config.get(appid, key, value)
self.assertEqual(value, value2)
if __name__ == '__main__':
unittest.main()