You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/integration/targets/get_url/files/testserver.py

24 lines
701 B
Python

from __future__ import annotations
import http.server
import socketserver
import sys
if __name__ == '__main__':
PORT = int(sys.argv[1])
class Handler(http.server.SimpleHTTPRequestHandler):
def do_GET(self):
if self.path == '/incompleteRead':
self.send_response(200)
self.send_header("Content-type", "text/html")
self.send_header("Content-Length", "100")
self.end_headers()
self.wfile.write(b"ABCD")
else:
super().do_GET()
Handler.extensions_map['.json'] = 'application/json'
httpd = socketserver.TCPServer(("", PORT), Handler)
httpd.serve_forever()