mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
Delete useless tests
This commit is contained in:
parent
8b239c564e
commit
34f3c290d3
1 changed files with 0 additions and 41 deletions
|
@ -1,41 +0,0 @@
|
||||||
import pytest
|
|
||||||
import logging
|
|
||||||
import asyncio
|
|
||||||
from royalnet.network import RoyalnetLink, RoyalnetServer
|
|
||||||
from royalnet.network import Message
|
|
||||||
|
|
||||||
|
|
||||||
log = logging.getLogger("royalnet.network.royalnetserver")
|
|
||||||
log.setLevel(logging.DEBUG)
|
|
||||||
log.addHandler(logging.StreamHandler())
|
|
||||||
|
|
||||||
|
|
||||||
async def echo(message: Message):
|
|
||||||
return message
|
|
||||||
|
|
||||||
|
|
||||||
# This test broke, but I don't know why.
|
|
||||||
# def test_connection():
|
|
||||||
# loop = asyncio.SelectorEventLoop()
|
|
||||||
# server = RoyalnetServer("localhost", 1234, "testing")
|
|
||||||
# link = RoyalnetLink("ws://localhost:1234", "testing", "testing", echo)
|
|
||||||
# loop.create_task(server.run())
|
|
||||||
# loop.create_task(link.run())
|
|
||||||
# loop.run_until_complete(asyncio.sleep(10))
|
|
||||||
# assert link.websocket is not None
|
|
||||||
# assert link.identify_event.is_set()
|
|
||||||
# assert len(server.identified_clients) == 1
|
|
||||||
# assert server.identified_clients[0].link_type == "testing"
|
|
||||||
|
|
||||||
|
|
||||||
def test_request():
|
|
||||||
loop = asyncio.SelectorEventLoop()
|
|
||||||
server = RoyalnetServer("localhost", 1234, "testing")
|
|
||||||
link1 = RoyalnetLink("ws://localhost:1234", "testing", "testing1", echo)
|
|
||||||
link2 = RoyalnetLink("ws://localhost:1234", "testing", "testing2", echo)
|
|
||||||
loop.create_task(server.run())
|
|
||||||
loop.create_task(link1.run())
|
|
||||||
loop.create_task(link2.run())
|
|
||||||
message = Message()
|
|
||||||
response = loop.run_until_complete(link1.request(message, "testing2"))
|
|
||||||
assert message is response
|
|
Loading…
Reference in a new issue