From c9a1614856743434a4b82d91fd87d78515861df4 Mon Sep 17 00:00:00 2001 From: "Tristan B. Kildaire" Date: Sun, 26 Apr 2020 17:01:32 +0200 Subject: [PATCH] Updated test suite --- testing/testSuite.py | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/testing/testSuite.py b/testing/testSuite.py index 9435aae..f062b19 100644 --- a/testing/testSuite.py +++ b/testing/testSuite.py @@ -6,17 +6,18 @@ def basicTest(): d=socket.socket(socket.AF_INET, socket.SOCK_STREAM) d.connect(("127.0.0.1",2223)) - # First do it and authenticate - bys=json.dumps({"header":{"authentication":{"username":"tbk", "password":"passwd"}, "scope":"client"},"payload":{"data":"ABBA","type":"type1"}}) - print(len(bys), bys) - d.send(len(bys).to_bytes(4, "little")) - d.send(bys.encode()) + while True: + # First do it and authenticate + bys=json.dumps({"header":{"authentication":{"username":"tbk", "password":"passwd"}, "scope":"client"},"payload":{"data":"ABBA","type":"type1"}}) + print(len(bys), bys) + d.send(len(bys).to_bytes(4, "little")) + d.send(bys.encode()) - # Now we can do it again (without authentication) - bys=json.dumps({"header":{},"payload":{"data":"POES","type":"type1"}}) - print(len(bys), bys) - d.send(len(bys).to_bytes(4, "little")) - d.send(bys.encode()) + # Now we can do it again (without authentication) + bys=json.dumps({"header":{},"payload":{"data":"POES","type":"type1"}}) + print(len(bys), bys) + d.send(len(bys).to_bytes(4, "little")) + d.send(bys.encode()) while True: pass d.close()