bcd7890124
* move test factories to libp2p/tools * remove unused inits * move pubsub test utils to tools * cleanup test_interop * fix typing libp2p/tools/utils * add typing to pubsub utils * fix factories typing * fix typing for floodsub_integration_test_settings * fix rest of the typing * fix isort
18 lines
620 B
Python
18 lines
620 B
Python
import pytest
|
|
|
|
from libp2p.identity.identify.pb.identify_pb2 import Identify
|
|
from libp2p.identity.identify.protocol import ID, _mk_identify_protobuf
|
|
from libp2p.tools.factories import pair_of_connected_hosts
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_identify_protocol():
|
|
async with pair_of_connected_hosts() as (host_a, host_b):
|
|
stream = await host_b.new_stream(host_a.get_id(), (ID,))
|
|
response = await stream.read()
|
|
await stream.close()
|
|
|
|
identify_response = Identify()
|
|
identify_response.ParseFromString(response)
|
|
assert identify_response == _mk_identify_protobuf(host_a)
|