-
Notifications
You must be signed in to change notification settings - Fork 358
/
Copy pathtest_async_weights.py
498 lines (413 loc) · 14.3 KB
/
test_async_weights.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
import pytest
from bittensor.core import async_subtensor
from bittensor_wallet import Wallet
from bittensor.core.extrinsics import async_weights
@pytest.fixture(autouse=True)
def subtensor(mocker):
fake_async_substrate = mocker.AsyncMock(
autospec=async_subtensor.AsyncSubstrateInterface
)
mocker.patch.object(
async_subtensor, "AsyncSubstrateInterface", return_value=fake_async_substrate
)
return async_subtensor.AsyncSubtensor()
@pytest.mark.asyncio
async def test_do_set_weights_success(subtensor, mocker):
"""Tests _do_set_weights when weights are set successfully."""
# Preps
fake_wallet = mocker.Mock(autospec=Wallet)
fake_uids = [1, 2, 3]
fake_vals = [100, 200, 300]
fake_netuid = 0
fake_call = mocker.AsyncMock()
fake_extrinsic = mocker.AsyncMock()
fake_response = mocker.Mock()
async def fake_is_success():
return True
fake_response.is_success = fake_is_success()
fake_response.process_events = mocker.AsyncMock()
mocker.patch.object(subtensor.substrate, "compose_call", fake_call)
mocker.patch.object(subtensor.substrate, "create_signed_extrinsic", fake_extrinsic)
mocker.patch.object(
subtensor.substrate,
"submit_extrinsic",
mocker.AsyncMock(return_value=fake_response),
)
# Call
result, message = await async_weights._do_set_weights(
subtensor=subtensor,
wallet=fake_wallet,
uids=fake_uids,
vals=fake_vals,
netuid=fake_netuid,
wait_for_inclusion=True,
wait_for_finalization=True,
)
# Asserts
assert result is True
assert message == "Successfully set weights."
@pytest.mark.asyncio
async def test_do_set_weights_failure(subtensor, mocker):
"""Tests _do_set_weights when setting weights fails."""
# Preps
fake_wallet = mocker.Mock(autospec=Wallet)
fake_uids = [1, 2, 3]
fake_vals = [100, 200, 300]
fake_netuid = 0
fake_call = mocker.AsyncMock()
fake_extrinsic = mocker.AsyncMock()
async def fake_is_success():
return False
fake_response = mocker.Mock()
fake_response.is_success = fake_is_success()
fake_response.process_events = mocker.AsyncMock()
fake_response.error_message = mocker.Mock()
fake_response.process_events = mocker.AsyncMock()
mocked_format_error_message = mocker.Mock()
mocker.patch.object(
async_weights, "format_error_message", mocked_format_error_message
)
mocker.patch.object(subtensor.substrate, "compose_call", return_value=fake_call)
mocker.patch.object(
subtensor.substrate, "create_signed_extrinsic", return_value=fake_extrinsic
)
mocker.patch.object(
subtensor.substrate, "submit_extrinsic", return_value=fake_response
)
# Call
result, message = await async_weights._do_set_weights(
subtensor=subtensor,
wallet=fake_wallet,
uids=fake_uids,
vals=fake_vals,
netuid=fake_netuid,
wait_for_inclusion=True,
wait_for_finalization=True,
)
# Asserts
assert result is False
mocked_format_error_message.assert_called_once_with(fake_response.error_message)
assert message == mocked_format_error_message.return_value
@pytest.mark.asyncio
async def test_do_set_weights_no_waiting(subtensor, mocker):
"""Tests _do_set_weights when not waiting for inclusion or finalization."""
# Preps
fake_wallet = mocker.Mock(autospec=Wallet)
fake_uids = [1, 2, 3]
fake_vals = [100, 200, 300]
fake_netuid = 0
fake_call = mocker.AsyncMock()
fake_extrinsic = mocker.AsyncMock()
fake_response = mocker.Mock()
mocker.patch.object(subtensor.substrate, "compose_call", fake_call)
mocker.patch.object(subtensor.substrate, "create_signed_extrinsic", fake_extrinsic)
mocker.patch.object(
subtensor.substrate,
"submit_extrinsic",
mocker.AsyncMock(return_value=fake_response),
)
# Call
result, message = await async_weights._do_set_weights(
subtensor=subtensor,
wallet=fake_wallet,
uids=fake_uids,
vals=fake_vals,
netuid=fake_netuid,
wait_for_inclusion=False,
wait_for_finalization=False,
)
# Asserts
assert result is True
assert message == "Not waiting for finalization or inclusion."
@pytest.mark.asyncio
async def test_set_weights_extrinsic_success_with_finalization(subtensor, mocker):
"""Tests set_weights_extrinsic when weights are successfully set with finalization."""
# Preps
fake_wallet = mocker.Mock(autospec=Wallet)
fake_netuid = 1
fake_uids = [1, 2, 3]
fake_weights = [0.1, 0.2, 0.7]
mocked_do_set_weights = mocker.patch.object(
async_weights, "_do_set_weights", return_value=(True, "")
)
# Call
result, message = await async_weights.set_weights_extrinsic(
subtensor=subtensor,
wallet=fake_wallet,
netuid=fake_netuid,
uids=fake_uids,
weights=fake_weights,
wait_for_inclusion=True,
wait_for_finalization=True,
)
# Asserts
mocked_do_set_weights.assert_called_once_with(
subtensor=subtensor,
wallet=fake_wallet,
netuid=fake_netuid,
uids=mocker.ANY,
vals=mocker.ANY,
version_key=0,
wait_for_finalization=True,
wait_for_inclusion=True,
)
assert result is True
assert message == "Successfully set weights and Finalized."
@pytest.mark.asyncio
async def test_set_weights_extrinsic_no_waiting(subtensor, mocker):
"""Tests set_weights_extrinsic when no waiting for inclusion or finalization."""
# Preps
fake_wallet = mocker.Mock(autospec=Wallet)
fake_netuid = 1
fake_uids = [1, 2, 3]
fake_weights = [0.1, 0.2, 0.7]
mocked_do_set_weights = mocker.patch.object(
async_weights, "_do_set_weights", return_value=(True, "")
)
# Call
result, message = await async_weights.set_weights_extrinsic(
subtensor=subtensor,
wallet=fake_wallet,
netuid=fake_netuid,
uids=fake_uids,
weights=fake_weights,
wait_for_inclusion=False,
wait_for_finalization=False,
)
# Asserts
mocked_do_set_weights.assert_called_once()
assert result is True
assert message == "Not waiting for finalization or inclusion."
@pytest.mark.asyncio
async def test_set_weights_extrinsic_failure(subtensor, mocker):
"""Tests set_weights_extrinsic when setting weights fails."""
# Preps
fake_wallet = mocker.Mock(autospec=Wallet)
fake_netuid = 1
fake_uids = [1, 2, 3]
fake_weights = [0.1, 0.2, 0.7]
mocked_do_set_weights = mocker.patch.object(
async_weights, "_do_set_weights", return_value=(False, "Test error message")
)
# Call
result, message = await async_weights.set_weights_extrinsic(
subtensor=subtensor,
wallet=fake_wallet,
netuid=fake_netuid,
uids=fake_uids,
weights=fake_weights,
wait_for_inclusion=True,
wait_for_finalization=True,
)
# Asserts
mocked_do_set_weights.assert_called_once()
assert result is False
assert message == "Test error message"
@pytest.mark.asyncio
async def test_set_weights_extrinsic_exception(subtensor, mocker):
"""Tests set_weights_extrinsic when an exception is raised."""
# Preps
fake_wallet = mocker.Mock(autospec=Wallet)
fake_netuid = 1
fake_uids = [1, 2, 3]
fake_weights = [0.1, 0.2, 0.7]
mocked_do_set_weights = mocker.patch.object(
async_weights, "_do_set_weights", side_effect=Exception("Unexpected error")
)
# Call
result, message = await async_weights.set_weights_extrinsic(
subtensor=subtensor,
wallet=fake_wallet,
netuid=fake_netuid,
uids=fake_uids,
weights=fake_weights,
wait_for_inclusion=True,
wait_for_finalization=True,
)
# Asserts
mocked_do_set_weights.assert_called_once()
assert result is False
assert message == "Unexpected error"
@pytest.mark.asyncio
async def test_do_commit_weights_success(subtensor, mocker):
"""Tests _do_commit_weights when the commit is successful."""
# Preps
fake_wallet = mocker.Mock(autospec=Wallet)
fake_netuid = 1
fake_commit_hash = "test_hash"
fake_call = mocker.AsyncMock()
fake_extrinsic = mocker.AsyncMock()
fake_response = mocker.Mock()
async def fake_is_success():
return True
fake_response.is_success = fake_is_success()
fake_response.process_events = mocker.AsyncMock()
mocker.patch.object(subtensor.substrate, "compose_call", return_value=fake_call)
mocker.patch.object(
subtensor.substrate, "create_signed_extrinsic", return_value=fake_extrinsic
)
mocker.patch.object(
subtensor.substrate, "submit_extrinsic", return_value=fake_response
)
# Call
result, message = await async_weights._do_commit_weights(
subtensor=subtensor,
wallet=fake_wallet,
netuid=fake_netuid,
commit_hash=fake_commit_hash,
wait_for_inclusion=True,
wait_for_finalization=True,
)
# Asserts
assert result is True
assert message is None
@pytest.mark.asyncio
async def test_do_commit_weights_failure(subtensor, mocker):
"""Tests _do_commit_weights when the commit fails."""
# Preps
fake_wallet = mocker.Mock(autospec=Wallet)
fake_netuid = 1
fake_commit_hash = "test_hash"
fake_call = mocker.AsyncMock()
fake_extrinsic = mocker.AsyncMock()
async def fake_is_success():
return False
fake_response = mocker.Mock()
fake_response.is_success = fake_is_success()
fake_response.process_events = mocker.AsyncMock()
fake_response.error_message = "Error occurred"
mocked_format_error_message = mocker.Mock(return_value="Formatted error")
mocker.patch.object(
async_weights, "format_error_message", mocked_format_error_message
)
mocker.patch.object(subtensor.substrate, "compose_call", return_value=fake_call)
mocker.patch.object(
subtensor.substrate, "create_signed_extrinsic", return_value=fake_extrinsic
)
mocker.patch.object(
subtensor.substrate, "submit_extrinsic", return_value=fake_response
)
# Call
result, message = await async_weights._do_commit_weights(
subtensor=subtensor,
wallet=fake_wallet,
netuid=fake_netuid,
commit_hash=fake_commit_hash,
wait_for_inclusion=True,
wait_for_finalization=True,
)
# Asserts
assert result is False
mocked_format_error_message.assert_called_once_with(fake_response.error_message)
assert message == "Formatted error"
@pytest.mark.asyncio
async def test_do_commit_weights_no_waiting(subtensor, mocker):
"""Tests _do_commit_weights when not waiting for inclusion or finalization."""
# Preps
fake_wallet = mocker.Mock(autospec=Wallet)
fake_netuid = 1
fake_commit_hash = "test_hash"
fake_call = mocker.AsyncMock()
fake_extrinsic = mocker.AsyncMock()
fake_response = mocker.Mock()
mocker.patch.object(subtensor.substrate, "compose_call", return_value=fake_call)
mocker.patch.object(
subtensor.substrate, "create_signed_extrinsic", return_value=fake_extrinsic
)
mocker.patch.object(
subtensor.substrate, "submit_extrinsic", return_value=fake_response
)
# Call
result, message = await async_weights._do_commit_weights(
subtensor=subtensor,
wallet=fake_wallet,
netuid=fake_netuid,
commit_hash=fake_commit_hash,
wait_for_inclusion=False,
wait_for_finalization=False,
)
# Asserts
assert result is True
assert message is None
@pytest.mark.asyncio
async def test_do_commit_weights_exception(subtensor, mocker):
"""Tests _do_commit_weights when an exception is raised."""
# Preps
fake_wallet = mocker.Mock(autospec=Wallet)
fake_netuid = 1
fake_commit_hash = "test_hash"
mocker.patch.object(
subtensor.substrate,
"compose_call",
side_effect=Exception("Unexpected exception"),
)
# Call
with pytest.raises(Exception, match="Unexpected exception"):
await async_weights._do_commit_weights(
subtensor=subtensor,
wallet=fake_wallet,
netuid=fake_netuid,
commit_hash=fake_commit_hash,
wait_for_inclusion=True,
wait_for_finalization=True,
)
@pytest.mark.asyncio
async def test_commit_weights_extrinsic_success(subtensor, mocker):
"""Tests commit_weights_extrinsic when the commit is successful."""
# Preps
fake_wallet = mocker.Mock(autospec=Wallet)
fake_netuid = 1
fake_commit_hash = "test_hash"
mocked_do_commit_weights = mocker.patch.object(
async_weights, "_do_commit_weights", return_value=(True, None)
)
# Call
result, message = await async_weights.commit_weights_extrinsic(
subtensor=subtensor,
wallet=fake_wallet,
netuid=fake_netuid,
commit_hash=fake_commit_hash,
wait_for_inclusion=True,
wait_for_finalization=True,
)
# Asserts
mocked_do_commit_weights.assert_called_once_with(
subtensor=subtensor,
wallet=fake_wallet,
netuid=fake_netuid,
commit_hash=fake_commit_hash,
wait_for_inclusion=True,
wait_for_finalization=True,
)
assert result is True
assert message == "Successfully committed weights."
@pytest.mark.asyncio
async def test_commit_weights_extrinsic_failure(subtensor, mocker):
"""Tests commit_weights_extrinsic when the commit fails."""
# Preps
fake_wallet = mocker.Mock(autospec=Wallet)
fake_netuid = 1
fake_commit_hash = "test_hash"
mocked_do_commit_weights = mocker.patch.object(
async_weights, "_do_commit_weights", return_value=(False, "Commit failed.")
)
# Call
result, message = await async_weights.commit_weights_extrinsic(
subtensor=subtensor,
wallet=fake_wallet,
netuid=fake_netuid,
commit_hash=fake_commit_hash,
wait_for_inclusion=True,
wait_for_finalization=True,
)
# Asserts
mocked_do_commit_weights.assert_called_once_with(
subtensor=subtensor,
wallet=fake_wallet,
netuid=fake_netuid,
commit_hash=fake_commit_hash,
wait_for_inclusion=True,
wait_for_finalization=True,
)
assert result is False
assert message == "Commit failed."