-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsizeify-hypothesis.py
55 lines (48 loc) · 2.69 KB
/
sizeify-hypothesis.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import os
import uuid
from hypothesis import assume, given, settings, Verbosity
from hypothesis.strategies import dictionaries, text, recursive, none, booleans, floats, lists
from keri.core.coring import sizeify, loads, Versionage
@settings(verbosity=Verbosity.verbose, max_examples=100)
# 1. Generate random dicts that are gonna be smaller than the max size of cesr fieldmap
# 2. Add some random version
# 2. sizeify them (we'll get back "raw" serialization and new dict with updated version) for each serialization type
# 3. loads(raw serializations) == updated ked
@given(recursive(
none() | booleans() | floats(allow_nan=False, allow_infinity=False) | text(),
lambda children: lists(children) | dictionaries(text(), children)))
def test_sizeify_v1(test_dict):
for kind in ['JSON', 'MGPK', 'CBOR']:
assume(isinstance(test_dict, dict))
test_dict.pop("v", None)
dict_with_version = {"v": f"KERI10{kind}000000_"}
dict_with_version.update(test_dict)
cesr_message, _, _, _, _ = sizeify(dict_with_version, kind=kind, version=Versionage(major=1, minor=0))
with open(f"example_payloads/version1/{kind.lower()}/cesr_message_{uuid.uuid1()}.{kind.lower()}","wb") as fyle:
fyle.write(cesr_message)
assert loads(cesr_message, kind=kind) == dict_with_version
@given(recursive(
none() | booleans() | floats(allow_nan=False, allow_infinity=False) | text(),
lambda children: lists(children) | dictionaries(text(), children)))
def test_sizeify_v2(test_dict):
for kind in ['JSON', 'MGPK', 'CBOR']:
assume(isinstance(test_dict, dict))
test_dict.pop("v", None)
dict_with_version = {"v": f"KERICAA{kind}AAAA."}
dict_with_version.update(test_dict)
cesr_message, _, _, _, _ = sizeify(dict_with_version, kind=kind, version=Versionage(major=2, minor=0))
with open(f"example_payloads/version2/{kind.lower()}/cesr_message_{uuid.uuid1()}.{kind.lower()}","wb") as fyle:
fyle.write(cesr_message)
assert loads(cesr_message, kind=kind) == dict_with_version
if __name__ == "__main__":
os.makedirs("example_payloads", exist_ok=True)
os.makedirs("example_payloads/version1", exist_ok=True)
os.makedirs("example_payloads/version1/mgpk", exist_ok=True)
os.makedirs("example_payloads/version1/json", exist_ok=True)
os.makedirs("example_payloads/version1/cbor", exist_ok=True)
os.makedirs("example_payloads/version2", exist_ok=True)
os.makedirs("example_payloads/version2/mgpk", exist_ok=True)
os.makedirs("example_payloads/version2/json", exist_ok=True)
os.makedirs("example_payloads/version2/cbor", exist_ok=True)
# test_sizeify_v1()
# test_sizeify_v2()