-
Notifications
You must be signed in to change notification settings - Fork 362
/
Copy pathtest_commitment.py
111 lines (89 loc) · 2.6 KB
/
test_commitment.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
111
import pytest
from bittensor import logging
from async_substrate_interface.errors import SubstrateRequestException
logging.set_trace()
def test_commitment(subtensor, alice_wallet):
with pytest.raises(SubstrateRequestException, match="AccountNotAllowedCommit"):
subtensor.set_commitment(
alice_wallet,
netuid=1,
data="Hello World!",
)
assert subtensor.burned_register(
alice_wallet,
netuid=1,
)
uid = subtensor.get_uid_for_hotkey_on_subnet(
alice_wallet.hotkey.ss58_address,
netuid=1,
)
assert uid is not None
assert "" == subtensor.get_commitment(
netuid=1,
uid=uid,
)
assert subtensor.set_commitment(
alice_wallet,
netuid=1,
data="Hello World!",
)
with pytest.raises(
SubstrateRequestException,
match="CommitmentSetRateLimitExceeded",
):
subtensor.set_commitment(
alice_wallet,
netuid=1,
data="Hello World!",
)
assert "Hello World!" == subtensor.get_commitment(
netuid=1,
uid=uid,
)
assert (
subtensor.get_all_commitments(netuid=1)[alice_wallet.hotkey.ss58_address]
== "Hello World!"
)
@pytest.mark.asyncio
async def test_commitment_async(async_subtensor, alice_wallet):
async with async_subtensor as sub:
with pytest.raises(SubstrateRequestException, match="AccountNotAllowedCommit"):
await sub.set_commitment(
alice_wallet,
netuid=1,
data="Hello World!",
)
assert await sub.burned_register(
alice_wallet,
netuid=1,
)
uid = await sub.get_uid_for_hotkey_on_subnet(
alice_wallet.hotkey.ss58_address,
netuid=1,
)
assert uid is not None
assert "" == await sub.get_commitment(
netuid=1,
uid=uid,
)
assert await sub.set_commitment(
alice_wallet,
netuid=1,
data="Hello World!",
)
with pytest.raises(
SubstrateRequestException,
match="CommitmentSetRateLimitExceeded",
):
await sub.set_commitment(
alice_wallet,
netuid=1,
data="Hello World!",
)
assert "Hello World!" == await sub.get_commitment(
netuid=1,
uid=uid,
)
assert (await sub.get_all_commitments(netuid=1))[
alice_wallet.hotkey.ss58_address
] == "Hello World!"