Skip to content

Commit e600a6a

Browse files
committed
fix: missing decorators on vc ldp manager tests
Signed-off-by: Daniel Bluhm <[email protected]>
1 parent 534cb03 commit e600a6a

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

aries_cloudagent/vc/vc_ld/tests/test_manager.py

+12
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ def options():
7373
yield LDProofVCOptions.deserialize(VC["options"])
7474

7575

76+
@pytest.mark.asyncio
7677
async def test_assert_can_issue_with_id_and_proof_type(manager: VcLdpManager):
7778
with pytest.raises(VcLdpManagerError) as context:
7879
await manager.assert_can_issue_with_id_and_proof_type(
@@ -134,6 +135,7 @@ async def test_assert_can_issue_with_id_and_proof_type(manager: VcLdpManager):
134135
assert "Issuer did did:key:notfound not found" in str(context.value)
135136

136137

138+
@pytest.mark.asyncio
137139
async def test_get_did_info_for_did_sov(manager: VcLdpManager, wallet: MagicMock):
138140
wallet.get_local_did = async_mock.CoroutineMock()
139141

@@ -142,6 +144,7 @@ async def test_get_did_info_for_did_sov(manager: VcLdpManager, wallet: MagicMock
142144
assert did_info == wallet.get_local_did.return_value
143145

144146

147+
@pytest.mark.asyncio
145148
async def test_get_did_info_for_did_key(manager: VcLdpManager, wallet: MagicMock):
146149
wallet.get_local_did.reset_mock()
147150

@@ -150,6 +153,7 @@ async def test_get_did_info_for_did_key(manager: VcLdpManager, wallet: MagicMock
150153
assert did_info == wallet.get_local_did.return_value
151154

152155

156+
@pytest.mark.asyncio
153157
async def test_get_suite_for_credential(manager: VcLdpManager):
154158
vc = VerifiableCredential.deserialize(VC["credential"])
155159
options = LDProofVCOptions.deserialize(VC["options"])
@@ -177,6 +181,7 @@ async def test_get_suite_for_credential(manager: VcLdpManager):
177181
mock_did_info.assert_called_once_with(vc.issuer_id)
178182

179183

184+
@pytest.mark.asyncio
180185
async def test_get_suite(manager: VcLdpManager):
181186
proof = async_mock.MagicMock()
182187
did_info = async_mock.MagicMock()
@@ -224,6 +229,7 @@ async def test_get_suite(manager: VcLdpManager):
224229
assert suite.key_pair.public_key_base58 == did_info.verkey
225230

226231

232+
@pytest.mark.asyncio
227233
async def test_get_proof_purpose(manager: VcLdpManager):
228234
purpose = manager._get_proof_purpose()
229235
assert isinstance(purpose, CredentialIssuancePurpose)
@@ -246,6 +252,7 @@ async def test_get_proof_purpose(manager: VcLdpManager):
246252
assert "Unsupported proof purpose: random" in str(context.value)
247253

248254

255+
@pytest.mark.asyncio
249256
async def test_prepare_detail(
250257
manager: VcLdpManager, vc: VerifiableCredential, options: LDProofVCOptions
251258
):
@@ -258,6 +265,7 @@ async def test_prepare_detail(
258265
assert SECURITY_CONTEXT_BBS_URL in vc.context_urls
259266

260267

268+
@pytest.mark.asyncio
261269
async def test_prepare_detail_ed25519_2020(
262270
manager: VcLdpManager, vc: VerifiableCredential, options: LDProofVCOptions
263271
):
@@ -270,20 +278,24 @@ async def test_prepare_detail_ed25519_2020(
270278
assert SECURITY_CONTEXT_ED25519_2020_URL in vc.context_urls
271279

272280

281+
@pytest.mark.asyncio
273282
async def test_issue():
274283
raise NotImplementedError()
275284

276285

286+
@pytest.mark.asyncio
277287
async def test_issue_ed25519_2020():
278288
"""Ensure ed25519 2020 context added to issued cred."""
279289
raise NotImplementedError()
280290

281291

292+
@pytest.mark.asyncio
282293
async def test_issue_bbs():
283294
"""Ensure BBS context is added to issued cred."""
284295
raise NotImplementedError()
285296

286297

298+
@pytest.mark.asyncio
287299
async def test_get_all_suites(manager: VcLdpManager):
288300
suites = await manager._get_all_suites()
289301
assert len(suites) == 4

0 commit comments

Comments
 (0)