Files

74 lines
2.2 KiB
Python
Raw Permalink Normal View History

# SPDX-License-Identifier: Apache-2.0
#
# The OpenSearch Contributors require contributions made to
# this file be licensed under the Apache-2.0 license or a
# compatible open source license.
#
# Modifications Copyright OpenSearch Contributors. See
# GitHub history for details.
import json
import threading
from http.server import BaseHTTPRequestHandler, HTTPServer
from typing import Any
class TestHTTPRequestHandler(BaseHTTPRequestHandler):
2023-11-21 13:04:39 -05:00
__test__ = False
def do_GET(self) -> None: # pylint: disable=invalid-name
2024-01-19 13:36:05 -05:00
"""
writes a response out to a file given mocked parameters on this object
"""
headers = self.headers
if self.path == "/redirect":
new_location = "http://localhost:8090"
self.send_response(302)
self.send_header("Location", new_location)
else:
self.send_response(200)
self.send_header("Content-type", "application/json")
self.end_headers()
2023-11-21 13:04:39 -05:00
capitalized_headers = {}
for header, value in headers.items():
capitalized_header = "-".join([word.title() for word in header.split("-")])
2023-11-21 13:04:39 -05:00
capitalized_headers.update({capitalized_header: value})
if "Connection" in capitalized_headers:
capitalized_headers.pop("Connection")
2023-11-21 13:04:39 -05:00
data = {"method": "GET", "headers": capitalized_headers}
self.wfile.write(json.dumps(data).encode("utf-8"))
class TestHTTPServer(HTTPServer):
2023-06-27 17:01:40 +02:00
__test__ = False
_server_thread: Any
2023-06-27 17:01:40 +02:00
2023-11-06 13:08:19 -05:00
def __init__(self, host: str = "localhost", port: int = 8080) -> None:
super().__init__((host, port), TestHTTPRequestHandler)
self._server_thread = None
2023-11-06 13:08:19 -05:00
def start(self) -> None:
2024-01-19 13:36:05 -05:00
"""
start the test HTTP server
"""
if self._server_thread is not None:
return
self._server_thread = threading.Thread(target=self.serve_forever)
self._server_thread.start()
2023-11-06 13:08:19 -05:00
def stop(self) -> None:
2024-01-19 13:36:05 -05:00
"""
stop the test HTTP server
"""
if self._server_thread is None:
return
self.socket.close()
self.shutdown()
self._server_thread.join()
self._server_thread = None