To test the curl sources it is very useful to have a small httpd
server that can serve an arbitrary directory. This helper will
ensure that via:
```python
with with osbuild.testutil.net.http_serve_directory(fake_httpd_root) as httpd:
port = httpd.server_port
# download from http://localhost:{port}/<any-path-under-httpd-root>
```
53 lines
1.5 KiB
Python
53 lines
1.5 KiB
Python
#!/usr/bin/python3
|
|
"""
|
|
network related utilities
|
|
"""
|
|
import contextlib
|
|
import http.server
|
|
import socket
|
|
import threading
|
|
|
|
|
|
def _get_free_port():
|
|
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
|
s.bind(("localhost", 0))
|
|
return s.getsockname()[1]
|
|
|
|
|
|
class SilentHTTPRequestHandler(http.server.SimpleHTTPRequestHandler):
|
|
def log_message(self, *args, **kwargs):
|
|
pass
|
|
|
|
|
|
class DirHTTPServer(http.server.ThreadingHTTPServer):
|
|
def __init__(self, *args, directory=None, simulate_failures=0, **kwargs):
|
|
super().__init__(*args, **kwargs)
|
|
self.directory = directory
|
|
self.simulate_failures = simulate_failures
|
|
self.reqs = 0
|
|
|
|
def finish_request(self, request, client_address):
|
|
self.reqs += 1 # racy on non GIL systems
|
|
if self.simulate_failures > 0:
|
|
self.simulate_failures -= 1 # racy on non GIL systems
|
|
SilentHTTPRequestHandler(
|
|
request, client_address, self, directory="does-not-exists")
|
|
return
|
|
SilentHTTPRequestHandler(
|
|
request, client_address, self, directory=self.directory)
|
|
|
|
|
|
@contextlib.contextmanager
|
|
def http_serve_directory(rootdir, simulate_failures=0):
|
|
port = _get_free_port()
|
|
httpd = DirHTTPServer(
|
|
("localhost", port),
|
|
http.server.SimpleHTTPRequestHandler,
|
|
directory=rootdir,
|
|
simulate_failures=simulate_failures,
|
|
)
|
|
threading.Thread(target=httpd.serve_forever).start()
|
|
try:
|
|
yield httpd
|
|
finally:
|
|
httpd.shutdown()
|