added more robust testing dummy servers
This commit is contained in:
parent
fc30a669a5
commit
d23b3c711e
2 changed files with 62 additions and 29 deletions
33
Server/testing servers/dummy_tracker_server.py
Normal file
33
Server/testing servers/dummy_tracker_server.py
Normal file
|
@ -0,0 +1,33 @@
|
|||
import asyncio
|
||||
import websockets
|
||||
|
||||
socket_connections = {}
|
||||
|
||||
async def handle_client(websocket, path):
|
||||
global socket_connections
|
||||
|
||||
print("packet connected")
|
||||
socket_connections[websocket] = ""
|
||||
|
||||
try:
|
||||
while True:
|
||||
print("waiting for data")
|
||||
data = await websocket.recv()
|
||||
if data == "Type?":
|
||||
await websocket.send("Automated")
|
||||
else:
|
||||
await websocket.send("[1] 100:100 200:700\n[2] 250:250 750:750\n[3] 500:300 800:800")
|
||||
except websockets.exceptions.ConnectionClosed:
|
||||
print("Connection closed with: ", websocket.remote_address)
|
||||
finally:
|
||||
print("closing websocket")
|
||||
del socket_connections[websocket]
|
||||
|
||||
async def main():
|
||||
server = await websockets.serve(handle_client, "localhost", 6543)
|
||||
|
||||
print("server started")
|
||||
|
||||
await server.wait_closed()
|
||||
|
||||
asyncio.run(main())
|
Loading…
Reference in a new issue