7
7
GENESIS_TIME = 1692803367
8
8
9
9
10
- def test_get_encrypted_commit_ok ():
10
+ def test_get_encrypted_commits ():
11
11
uids = [1 , 2 ]
12
12
weights = [11 , 22 ]
13
13
version_key = 50
@@ -19,22 +19,32 @@ def test_get_encrypted_commit_ok():
19
19
20
20
start_time = int (time .time ())
21
21
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 ,
23
30
)
24
31
25
32
# 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"
27
36
assert reveal_round > 0 , "Reveal round should be positive"
28
37
29
38
expected_reveal_round , _ , _ = compute_expected_reveal_round (
30
39
start_time , tempo , current_block , netuid , reveal_period , block_time
31
40
)
32
41
33
42
# 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
+
38
48
def test_generate_commit_success ():
39
49
uids = [1 , 2 , 3 ]
40
50
values = [10 , 20 , 30 ]
@@ -47,30 +57,48 @@ def test_generate_commit_success():
47
57
48
58
start_time = int (time .time ())
49
59
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 ,
51
68
)
52
69
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"
54
73
assert reveal_round > 0 , "Reveal round should be positive"
55
74
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
+ )
58
84
)
59
85
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 } "
63
89
64
90
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
+ )
66
94
assert computed_reveal_time - start_time >= required_lead_time , (
67
95
"Not enough lead time before reveal. "
68
96
f"computed_reveal_time={ computed_reveal_time } , start_time={ start_time } , required={ required_lead_time } "
69
97
)
70
98
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 } "
74
102
75
103
76
104
@pytest .mark .asyncio
@@ -89,31 +117,46 @@ async def test_generate_commit_various_tempos():
89
117
start_time = int (time .time ())
90
118
91
119
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 ,
93
128
)
94
129
95
130
assert len (ct_pybytes ) > 0 , f"Ciphertext is empty for tempo { tempo } "
96
131
assert reveal_round > 0 , f"Reveal round is zero or negative for tempo { tempo } "
97
132
98
133
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 ,
100
140
)
101
141
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 } "
105
145
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
+ )
107
149
required_lead_time = SUBTENSOR_PULSE_DELAY * PERIOD
108
150
109
151
assert computed_reveal_time - start_time >= required_lead_time , (
110
152
f"Tempo { tempo } : Not enough lead time: reveal_time={ computed_reveal_time } , "
111
153
f"start_time={ start_time } , required={ required_lead_time } "
112
154
)
113
155
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
+
117
160
118
161
def compute_expected_reveal_round (
119
162
now : int ,
@@ -148,5 +191,7 @@ def compute_expected_reveal_round(
148
191
time_until_reveal = blocks_until_reveal * block_time
149
192
150
193
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