Merge pull request #266 from ralexstokes/remove-unrelated-cde

Remove test suite for `asyncio`, *not* `py-libp2p`
This commit is contained in:
Alex Stokes 2019-08-24 22:22:06 +02:00 committed by GitHub
commit 3e07faf343
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 27 deletions

View File

@ -1,27 +0,0 @@
import asyncio
import pytest
async def handle_echo(reader, writer):
data = await reader.read(100)
writer.write(data)
await writer.drain()
writer.close()
@pytest.mark.asyncio
# TODO: this test should develop out into a fuller test between MPlex
# modules communicating with each other.
async def test_simple_echo():
server_ip = "127.0.0.1"
server_port = 8888
await asyncio.start_server(handle_echo, server_ip, server_port)
reader, writer = await asyncio.open_connection(server_ip, server_port)
test_message = "hello world"
writer.write(test_message.encode())
response = (await reader.read()).decode()
assert response == (test_message)