Skip to content

Commit d8bfff8

Browse files
Renames test + ruff
1 parent 0a62ea9 commit d8bfff8

File tree

1 file changed

+74
-29
lines changed

1 file changed

+74
-29
lines changed

src/tests/tests.py src/tests/test_commit_reveal.py

+74-29
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
GENESIS_TIME = 1692803367
88

99

10-
def test_get_encrypted_commit_ok():
10+
def test_get_encrypted_commits():
1111
uids = [1, 2]
1212
weights = [11, 22]
1313
version_key = 50
@@ -19,22 +19,32 @@ def test_get_encrypted_commit_ok():
1919

2020
start_time = int(time.time())
2121
ct_pybytes, reveal_round = get_encrypted_commit(
22-
uids, weights, version_key, tempo, current_block, netuid, reveal_period, block_time
22+
uids,
23+
weights,
24+
version_key,
25+
tempo,
26+
current_block,
27+
netuid,
28+
reveal_period,
29+
block_time,
2330
)
2431

2532
# Basic checks
26-
assert ct_pybytes is not None and len(ct_pybytes) > 0, "Ciphertext should not be empty"
33+
assert (
34+
ct_pybytes is not None and len(ct_pybytes) > 0
35+
), "Ciphertext should not be empty"
2736
assert reveal_round > 0, "Reveal round should be positive"
2837

2938
expected_reveal_round, _, _ = compute_expected_reveal_round(
3039
start_time, tempo, current_block, netuid, reveal_period, block_time
3140
)
3241

3342
# The reveal_round should be close to what we predict
34-
assert abs(reveal_round - expected_reveal_round) <= 1, (
35-
f"Reveal round {reveal_round} not close to expected {expected_reveal_round}"
36-
)
37-
43+
assert (
44+
abs(reveal_round - expected_reveal_round) <= 1
45+
), f"Reveal round {reveal_round} not close to expected {expected_reveal_round}"
46+
47+
3848
def test_generate_commit_success():
3949
uids = [1, 2, 3]
4050
values = [10, 20, 30]
@@ -47,30 +57,48 @@ def test_generate_commit_success():
4757

4858
start_time = int(time.time())
4959
ct_pybytes, reveal_round = get_encrypted_commit(
50-
uids, values, version_key, tempo, current_block, netuid, subnet_reveal_period_epochs, block_time
60+
uids,
61+
values,
62+
version_key,
63+
tempo,
64+
current_block,
65+
netuid,
66+
subnet_reveal_period_epochs,
67+
block_time,
5168
)
5269

53-
assert ct_pybytes is not None and len(ct_pybytes) > 0, "Ciphertext should not be empty"
70+
assert (
71+
ct_pybytes is not None and len(ct_pybytes) > 0
72+
), "Ciphertext should not be empty"
5473
assert reveal_round > 0, "Reveal round should be positive"
5574

56-
expected_reveal_round, expected_reveal_time, time_until_reveal = compute_expected_reveal_round(
57-
start_time, tempo, current_block, netuid, subnet_reveal_period_epochs, block_time
75+
expected_reveal_round, expected_reveal_time, time_until_reveal = (
76+
compute_expected_reveal_round(
77+
start_time,
78+
tempo,
79+
current_block,
80+
netuid,
81+
subnet_reveal_period_epochs,
82+
block_time,
83+
)
5884
)
5985

60-
assert abs(reveal_round - expected_reveal_round) <= 1, (
61-
f"Reveal round {reveal_round} differs from expected {expected_reveal_round}"
62-
)
86+
assert (
87+
abs(reveal_round - expected_reveal_round) <= 1
88+
), f"Reveal round {reveal_round} differs from expected {expected_reveal_round}"
6389

6490
required_lead_time = SUBTENSOR_PULSE_DELAY * PERIOD
65-
computed_reveal_time = GENESIS_TIME + (reveal_round + SUBTENSOR_PULSE_DELAY) * PERIOD
91+
computed_reveal_time = (
92+
GENESIS_TIME + (reveal_round + SUBTENSOR_PULSE_DELAY) * PERIOD
93+
)
6694
assert computed_reveal_time - start_time >= required_lead_time, (
6795
"Not enough lead time before reveal. "
6896
f"computed_reveal_time={computed_reveal_time}, start_time={start_time}, required={required_lead_time}"
6997
)
7098

71-
assert time_until_reveal >= SUBTENSOR_PULSE_DELAY * PERIOD, (
72-
f"time_until_reveal {time_until_reveal} is less than required {SUBTENSOR_PULSE_DELAY * PERIOD}"
73-
)
99+
assert (
100+
time_until_reveal >= SUBTENSOR_PULSE_DELAY * PERIOD
101+
), f"time_until_reveal {time_until_reveal} is less than required {SUBTENSOR_PULSE_DELAY * PERIOD}"
74102

75103

76104
@pytest.mark.asyncio
@@ -89,31 +117,46 @@ async def test_generate_commit_various_tempos():
89117
start_time = int(time.time())
90118

91119
ct_pybytes, reveal_round = get_encrypted_commit(
92-
uids, values, version_key, tempo, CURRENT_BLOCK, NETUID, SUBNET_REVEAL_PERIOD_EPOCHS, BLOCK_TIME
120+
uids,
121+
values,
122+
version_key,
123+
tempo,
124+
CURRENT_BLOCK,
125+
NETUID,
126+
SUBNET_REVEAL_PERIOD_EPOCHS,
127+
BLOCK_TIME,
93128
)
94129

95130
assert len(ct_pybytes) > 0, f"Ciphertext is empty for tempo {tempo}"
96131
assert reveal_round > 0, f"Reveal round is zero or negative for tempo {tempo}"
97132

98133
expected_reveal_round, _, time_until_reveal = compute_expected_reveal_round(
99-
start_time, tempo, CURRENT_BLOCK, NETUID, SUBNET_REVEAL_PERIOD_EPOCHS, BLOCK_TIME
134+
start_time,
135+
tempo,
136+
CURRENT_BLOCK,
137+
NETUID,
138+
SUBNET_REVEAL_PERIOD_EPOCHS,
139+
BLOCK_TIME,
100140
)
101141

102-
assert abs(reveal_round - expected_reveal_round) <= 1, (
103-
f"Tempo {tempo}: reveal_round {reveal_round} not close to expected {expected_reveal_round}"
104-
)
142+
assert (
143+
abs(reveal_round - expected_reveal_round) <= 1
144+
), f"Tempo {tempo}: reveal_round {reveal_round} not close to expected {expected_reveal_round}"
105145

106-
computed_reveal_time = GENESIS_TIME + (reveal_round + SUBTENSOR_PULSE_DELAY) * PERIOD
146+
computed_reveal_time = (
147+
GENESIS_TIME + (reveal_round + SUBTENSOR_PULSE_DELAY) * PERIOD
148+
)
107149
required_lead_time = SUBTENSOR_PULSE_DELAY * PERIOD
108150

109151
assert computed_reveal_time - start_time >= required_lead_time, (
110152
f"Tempo {tempo}: Not enough lead time: reveal_time={computed_reveal_time}, "
111153
f"start_time={start_time}, required={required_lead_time}"
112154
)
113155

114-
assert time_until_reveal >= SUBTENSOR_PULSE_DELAY * PERIOD, (
115-
f"Tempo {tempo}: time_until_reveal {time_until_reveal} is less than required {SUBTENSOR_PULSE_DELAY * PERIOD}"
116-
)
156+
assert (
157+
time_until_reveal >= SUBTENSOR_PULSE_DELAY * PERIOD
158+
), f"Tempo {tempo}: time_until_reveal {time_until_reveal} is less than required {SUBTENSOR_PULSE_DELAY * PERIOD}"
159+
117160

118161
def compute_expected_reveal_round(
119162
now: int,
@@ -148,5 +191,7 @@ def compute_expected_reveal_round(
148191
time_until_reveal = blocks_until_reveal * block_time
149192

150193
reveal_time = now + time_until_reveal
151-
reveal_round = ((reveal_time - GENESIS_TIME + PERIOD - 1) // PERIOD) - SUBTENSOR_PULSE_DELAY
152-
return reveal_round, reveal_time, time_until_reveal
194+
reveal_round = (
195+
(reveal_time - GENESIS_TIME + PERIOD - 1) // PERIOD
196+
) - SUBTENSOR_PULSE_DELAY
197+
return reveal_round, reveal_time, time_until_reveal

0 commit comments

Comments
 (0)