diff --git a/tests/security/test_noise.py b/tests/security/test_noise.py index b912f98..eb34e13 100644 --- a/tests/security/test_noise.py +++ b/tests/security/test_noise.py @@ -3,6 +3,9 @@ import pytest from libp2p.tools.factories import noise_conn_factory +DATA = b"testing_123" + + @pytest.mark.trio async def test_noise_transport(nursery): async with noise_conn_factory(nursery): @@ -10,6 +13,9 @@ async def test_noise_transport(nursery): @pytest.mark.trio -async def test_noise_connection(): - async with noise_conn_factory() as conns: +async def test_noise_connection(nursery): + async with noise_conn_factory(nursery) as conns: local_conn, remote_conn = conns + await local_conn.write(DATA) + read_data = await remote_conn.read(len(DATA)) + assert read_data == DATA