From 89501eb7b234cf0096cd772170571444ea51fab8 Mon Sep 17 00:00:00 2001 From: nocturn9x Date: Sat, 9 Oct 2021 14:14:58 +0200 Subject: [PATCH] Removed duplicate SSL test --- tests/https.py | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 tests/https.py diff --git a/tests/https.py b/tests/https.py deleted file mode 100644 index 3dcd5de..0000000 --- a/tests/https.py +++ /dev/null @@ -1,25 +0,0 @@ -import giambio -import socket as sock -import ssl - - -async def test(host: str, port: int): - socket = giambio.socket.wrap_socket(ssl.wrap_socket(sock.socket())) - await socket.connect((host, port)) - async with socket: - await socket.send_all(b"""GET / HTTP/1.1\r - Host: google.com\r - User-Agent: owo\r - Accept: text/html\r - Connection: keep-alive\r\n\r\n""") - buffer = b"" - while True: - data = await socket.receive(4096) - if data: - buffer += data - else: - break - print("\n".join(buffer.decode().split("\r\n"))) - - -giambio.run(test, "google.com", 443)