forked from software-mansion/starknet.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparser_test.py
110 lines (94 loc) · 3.02 KB
/
parser_test.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
import json
from typing import cast
import pytest
from starknet_py.abi.v2 import Abi, AbiParser
from starknet_py.cairo.data_types import UintType
from starknet_py.tests.e2e.fixtures.misc import ContractVersion, load_contract
@pytest.mark.parametrize(
"contract_name",
[
"AbiTypes",
"Account",
"ERC20",
"Hello2",
"HelloStarknet",
"MinimalContract",
"NewSyntaxTestContract",
"TestContract",
"TestEnum",
"TestOption",
"TokenBridge",
"l1_l2",
],
)
def test_abi_parse(contract_name):
abi = json.loads(
load_contract(contract_name=contract_name, version=ContractVersion.V2)["sierra"]
)["abi"]
parser = AbiParser(abi)
parsed_abi = parser.parse()
assert isinstance(parsed_abi, Abi)
def test_bounded_int_parse_pre_2_8_0():
abi_list = [
{
"type": "struct",
"name": "core::circuit::u384",
"members": [
{
"name": "limb0",
"type": "core::internal::BoundedInt::<0, 79228162514264337593543950335>",
},
{
"name": "limb1",
"type": "core::internal::BoundedInt::<0, 79228162514264337593543950335>",
},
{
"name": "limb2",
"type": "core::internal::BoundedInt::<0, 79228162514264337593543950335>",
},
{
"name": "limb3",
"type": "core::internal::BoundedInt::<0, 79228162514264337593543950335>",
},
],
}
]
parser = AbiParser(abi_list)
parsed_abi = parser.parse()
assert isinstance(parsed_abi, Abi)
uint = cast(
UintType, parsed_abi.defined_structures["core::circuit::u384"].types["limb0"]
)
assert uint.bits == 96
def test_bounded_int_parse_post_2_8_0():
abi_list = [
{
"type": "struct",
"name": "core::circuit::u384",
"members": [
{
"name": "limb0",
"type": "core::internal::bounded_int::BoundedInt::<0, 79228162514264337593543950335>",
},
{
"name": "limb1",
"type": "core::internal::bounded_int::BoundedInt::<0, 79228162514264337593543950335>",
},
{
"name": "limb2",
"type": "core::internal::bounded_int::BoundedInt::<0, 79228162514264337593543950335>",
},
{
"name": "limb3",
"type": "core::internal::bounded_int::BoundedInt::<0, 79228162514264337593543950335>",
},
],
}
]
parser = AbiParser(abi_list)
parsed_abi = parser.parse()
assert isinstance(parsed_abi, Abi)
uint = cast(
UintType, parsed_abi.defined_structures["core::circuit::u384"].types["limb0"]
)
assert uint.bits == 96