-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtest_util_endorsement.py
392 lines (317 loc) · 12.3 KB
/
test_util_endorsement.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
import asyncio
from unittest.mock import MagicMock
import pytest
from fastapi import HTTPException
from endorser.util.endorsement import accept_endorsement, should_accept_endorsement
from shared.models.endorsement import Endorsement
valid_endorsement = Endorsement(
state="request-received", transaction_id="test-transaction"
)
@pytest.mark.anyio
async def test_should_accept_endorsement_success_claim_def(mock_acapy_client, mocker):
# Mock the dependency functions
mocker.patch(
"endorser.util.endorsement.get_endorsement_request_attachment",
return_value={
"identifier": "test-identifier",
"operation": {"ref": "test-ref", "type": "102"},
},
)
mocker.patch(
"endorser.util.endorsement.get_did_and_schema_id_from_cred_def_attachment",
return_value=("did:sov:test-did", "test-schema-id"),
)
mocker.patch("endorser.util.endorsement.is_valid_issuer", return_value=True)
# Mock transaction response
transaction_mock = MagicMock()
transaction_mock.state = "request_received"
mock_acapy_client.endorse_transaction.get_transaction.return_value = (
transaction_mock
)
result = await should_accept_endorsement(mock_acapy_client, valid_endorsement)
assert result is True
@pytest.mark.anyio
async def test_should_accept_endorsement_fail_not_claim_def(mock_acapy_client, mocker):
# Mock the dependency functions
mocker.patch(
"endorser.util.endorsement.get_endorsement_request_attachment",
return_value={
"identifier": "test-identifier",
"operation": {"ref": "test-ref", "type": "99"},
},
)
# Mock transaction response
transaction_mock = MagicMock()
transaction_mock.state = "request_received"
mock_acapy_client.endorse_transaction.get_transaction.return_value = (
transaction_mock
)
result = await should_accept_endorsement(mock_acapy_client, valid_endorsement)
assert result is False
@pytest.mark.anyio
async def test_should_accept_endorsement_fail_no_attach(mock_acapy_client, mocker):
# Mock transaction response
transaction_mock = MagicMock()
transaction_mock.state = "request_received"
mock_acapy_client.endorse_transaction.get_transaction.return_value = (
transaction_mock
)
# Assume the transaction has no attachments
mocker.patch(
"endorser.util.endorsement.get_endorsement_request_attachment",
return_value=None,
)
result = await should_accept_endorsement(mock_acapy_client, valid_endorsement)
assert result is False
@pytest.mark.anyio
async def test_should_accept_endorsement_fail_no_operation(mock_acapy_client, mocker):
# Mock transaction response
transaction_mock = MagicMock()
transaction_mock.state = "request_received"
mock_acapy_client.endorse_transaction.get_transaction.return_value = (
transaction_mock
)
# Assume the transaction has no operation field
mocker.patch(
"endorser.util.endorsement.get_endorsement_request_attachment",
return_value={"something": "else"},
)
result = await should_accept_endorsement(mock_acapy_client, valid_endorsement)
assert result is False
@pytest.mark.anyio
async def test_should_accept_endorsement_fail_no_type(mock_acapy_client, mocker):
# Mock transaction response
transaction_mock = MagicMock()
transaction_mock.state = "request_received"
mock_acapy_client.endorse_transaction.get_transaction.return_value = (
transaction_mock
)
# Assume the transaction has no type field
mocker.patch(
"endorser.util.endorsement.get_endorsement_request_attachment",
return_value={"operation": {"no": "type"}},
)
result = await should_accept_endorsement(mock_acapy_client, valid_endorsement)
assert result is False
@pytest.mark.anyio
async def test_should_accept_endorsement_is_cred_def(mock_acapy_client, mocker):
# Mock transaction response
transaction_mock = MagicMock()
transaction_mock.state = "request_received"
mock_acapy_client.endorse_transaction.get_transaction.return_value = (
transaction_mock
)
mocker.patch(
"endorser.util.endorsement.get_endorsement_request_attachment",
return_value={
"identifier": "test-identifier",
"operation": {"ref": "test-ref", "type": "113"}, # 113 for cred def
},
)
result = await should_accept_endorsement(mock_acapy_client, valid_endorsement)
assert result is True
@pytest.mark.anyio
async def test_should_accept_endorsement_is_attrib(mock_acapy_client, mocker):
# Mock transaction response
transaction_mock = MagicMock()
transaction_mock.state = "request_received"
mock_acapy_client.endorse_transaction.get_transaction.return_value = (
transaction_mock
)
mocker.patch(
"endorser.util.endorsement.get_endorsement_request_attachment",
return_value={
"identifier": "test-identifier",
"operation": {"ref": "test-ref", "type": "100"}, # 100 for attrib
},
)
result = await should_accept_endorsement(mock_acapy_client, valid_endorsement)
assert result is True
@pytest.mark.anyio
async def test_should_accept_endorsement_fail_not_cred_def(mock_acapy_client, mocker):
# Assume the transaction has valid attachments
mocker.patch(
"endorser.util.endorsement.get_endorsement_request_attachment",
return_value={
"identifier": "test-identifier",
"operation": {"ref": "test-ref", "type": "99"},
},
)
# Assume the transaction is not for a credential definition
mocker.patch(
"endorser.util.endorsement.is_credential_definition_transaction",
return_value=False,
)
result = await should_accept_endorsement(mock_acapy_client, valid_endorsement)
assert result is False
@pytest.mark.anyio
async def test_should_accept_endorsement_fail_not_correct_attach(
mock_acapy_client, mocker
):
# Assume the transaction has valid attachments
mocker.patch(
"endorser.util.endorsement.get_endorsement_request_attachment",
return_value={
"identifier": "test-identifier",
"operation": {"x": "test-ref"},
},
)
# Assume the transaction is not for a credential definition
mocker.patch(
"endorser.util.endorsement.is_credential_definition_transaction",
return_value=True,
)
result = await should_accept_endorsement(mock_acapy_client, valid_endorsement)
assert result is False
@pytest.mark.anyio
async def test_should_accept_endorsement_fail_not_valid_issuer(
mock_acapy_client, mocker
):
mocker.patch(
"endorser.util.endorsement.get_endorsement_request_attachment",
return_value={
"identifier": "test-identifier",
"operation": {"ref": "test-ref", "type": "102"},
},
)
mocker.patch(
"endorser.util.endorsement.get_did_and_schema_id_from_cred_def_attachment",
return_value=("did:sov:test-did", "test-schema-id"),
)
mocker.patch("endorser.util.endorsement.is_valid_issuer", return_value=False)
transaction_mock = MagicMock()
transaction_mock.state = "request_received"
mock_acapy_client.endorse_transaction.get_transaction.return_value = (
transaction_mock
)
result = await should_accept_endorsement(mock_acapy_client, valid_endorsement)
assert result is False
@pytest.mark.anyio
async def test_should_accept_endorsement_retries_on_http_exception(
mock_acapy_client, mocker
):
# Mock valid flow
mocker.patch(
"endorser.util.endorsement.get_endorsement_request_attachment",
return_value={
"identifier": "test-identifier",
"operation": {"ref": "test-ref", "type": "102"},
},
)
mocker.patch(
"endorser.util.endorsement.is_credential_definition_transaction",
return_value=True,
)
mocker.patch(
"endorser.util.endorsement.get_did_and_schema_id_from_cred_def_attachment",
return_value=("did:sov:test-did", "test-schema-id"),
)
# Mock transaction response
transaction_mock = MagicMock()
transaction_mock.state = "request_received"
mock_acapy_client.endorse_transaction.get_transaction.return_value = (
transaction_mock
)
# Mock is_valid_issuer function behaviour - first exception, then True
mock_is_valid_issuer = mocker.patch(
"endorser.util.endorsement.is_valid_issuer",
side_effect=[HTTPException(status_code=500), True],
)
# Mock retry_is_valid_issuer to use a shorter retry delay
async def mock_retry_is_valid_issuer(
did, schema_id, _, max_retries=5, retry_delay=0.01
):
for attempt in range(max_retries):
try:
valid_issuer = await mock_is_valid_issuer(did, schema_id)
if valid_issuer:
return True
return False
except HTTPException:
if attempt < max_retries - 1:
await asyncio.sleep(retry_delay)
else:
return False
mocker.patch(
"endorser.util.endorsement.retry_is_valid_issuer",
side_effect=mock_retry_is_valid_issuer,
)
result = await should_accept_endorsement(mock_acapy_client, valid_endorsement)
# Assertions
assert (
result
), "The endorsement should be accepted due to is_valid_issuer true after retry."
assert (
mock_is_valid_issuer.call_count == 2
), "is_valid_issuer should have been called exactly twice."
@pytest.mark.anyio
async def test_should_accept_endorsement_fails_after_max_retries(
mock_acapy_client, mocker
):
# Mock valid flow
mocker.patch(
"endorser.util.endorsement.get_endorsement_request_attachment",
return_value={
"identifier": "test-identifier",
"operation": {"ref": "test-ref", "type": "102"},
},
)
mocker.patch(
"endorser.util.endorsement.is_credential_definition_transaction",
return_value=True,
)
mocker.patch(
"endorser.util.endorsement.get_did_and_schema_id_from_cred_def_attachment",
return_value=("did:sov:test-did", "test-schema-id"),
)
# Mock transaction response
transaction_mock = MagicMock()
transaction_mock.state = "request_received"
mock_acapy_client.endorse_transaction.get_transaction.return_value = (
transaction_mock
)
# Mock is_valid_issuer function behaviour - always exception
mock_is_valid_issuer = mocker.patch(
"endorser.util.endorsement.is_valid_issuer",
side_effect=HTTPException(status_code=500),
)
# Mock retry_is_valid_issuer to use a shorter retry delay
async def mock_retry_is_valid_issuer(
did, schema_id, _, max_retries=5, retry_delay=0.01
):
for attempt in range(max_retries):
try:
valid_issuer = await mock_is_valid_issuer(did, schema_id)
if valid_issuer:
return True
return False
except HTTPException:
if attempt < max_retries - 1:
await asyncio.sleep(retry_delay)
else:
return False
mocker.patch(
"endorser.util.endorsement.retry_is_valid_issuer",
side_effect=mock_retry_is_valid_issuer,
)
result = await should_accept_endorsement(mock_acapy_client, valid_endorsement)
# Assertions
assert (
result is False
), "The endorsement should not be accepted due to is_valid_issuer failing repeatedly"
assert (
mock_is_valid_issuer.call_count == 5
), "is_valid_issuer should have been called exactly `max_retries` times."
@pytest.mark.anyio
async def test_should_accept_endorsement_fail_bad_state(mock_acapy_client):
invalid_endorsement = Endorsement(
state="transaction-created", transaction_id="test-transaction"
)
result = await should_accept_endorsement(mock_acapy_client, invalid_endorsement)
assert result is False
@pytest.mark.anyio
async def test_accept_endorsement(mock_acapy_client):
await accept_endorsement(mock_acapy_client, valid_endorsement)
mock_acapy_client.endorse_transaction.endorse_transaction.assert_awaited_once_with(
tran_id=valid_endorsement.transaction_id
)