mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-12 10:39:00 +00:00
9fc5bb546b
Changes many fields to required -- as far as we were able to figure out, signing would fail if these fields aren't provided anyway, so this should not pose a compatibility problem. Co-authored-by: matejcik <ja@matejcik.cz>
43 lines
1.2 KiB
Python
43 lines
1.2 KiB
Python
from mock import patch
|
|
|
|
import storage.common
|
|
|
|
class MockStorage:
|
|
PATCH_METHODS = ("get", "set", "delete")
|
|
|
|
def __init__(self):
|
|
self.namespace = {}
|
|
self.patches = [
|
|
patch(storage.common, method, getattr(self, method))
|
|
for method in self.PATCH_METHODS
|
|
]
|
|
|
|
def set(self, app: int, key: int, data: bytes, public: bool = False) -> None:
|
|
self.namespace.setdefault(app, {})
|
|
self.namespace[app][key] = data
|
|
|
|
def get(self, app: int, key: int, public: bool = False) -> bytes | None:
|
|
self.namespace.setdefault(app, {})
|
|
return self.namespace[app].get(key)
|
|
|
|
def delete(self, app: int, key: int, public: bool = False) -> None:
|
|
self.namespace.setdefault(app, {})
|
|
self.namespace[app].pop(key, None)
|
|
|
|
def __enter__(self):
|
|
for patch in self.patches:
|
|
patch.__enter__()
|
|
return self
|
|
|
|
def __exit__(self, exc_type, exc_value, tb):
|
|
for patch in self.patches:
|
|
patch.__exit__(exc_type, exc_value, tb)
|
|
|
|
|
|
def mock_storage(func):
|
|
def inner(*args, **kwargs):
|
|
with MockStorage():
|
|
return func(*args, **kwargs)
|
|
|
|
return inner
|