/usr/share/cagefs-skeleton/opt/cloudlinux/venv/lib/python3.11/site-packages/setuptools/tests
"""Basic http server for tests to simulate PyPI or custom indexes""" import http.server import os import threading import time import urllib.parse import urllib.request class IndexServer(http.server.HTTPServer): """Basic single-threaded http server simulating a package index You can use this server in unittest like this:: s = IndexServer() s.start() index_url = s.base_url() + 'mytestindex' # do some test requests to the index # The index files should be located in setuptools/tests/indexes s.stop() """ def __init__( self, server_address=('', 0), RequestHandlerClass=http.server.SimpleHTTPRequestHandler, ): http.server.HTTPServer.__init__(self, server_address, RequestHandlerClass) self._run = True def start(self): self.thread = threading.Thread(target=self.serve_forever) self.thread.start() def stop(self): "Stop the server" # Let the server finish the last request and wait for a new one. time.sleep(0.1) self.shutdown() self.thread.join() self.socket.close() def base_url(self): port = self.server_port return f'http://127.0.0.1:{port}/setuptools/tests/indexes/' class RequestRecorder(http.server.BaseHTTPRequestHandler): def do_GET(self): requests = vars(self.server).setdefault('requests', []) requests.append(self) self.send_response(200, 'OK') class MockServer(http.server.HTTPServer, threading.Thread): """ A simple HTTP Server that records the requests made to it. """ def __init__(self, server_address=('', 0), RequestHandlerClass=RequestRecorder): http.server.HTTPServer.__init__(self, server_address, RequestHandlerClass) threading.Thread.__init__(self) self.daemon = True self.requests = [] def run(self): self.serve_forever() @property def netloc(self): return f'localhost:{self.server_port}' @property def url(self): return f'http://{self.netloc}/' def path_to_url(path, authority=None): """Convert a path to a file: URL.""" path = os.path.normpath(os.path.abspath(path)) base = 'file:' if authority is not None: base += '//' + authority return urllib.parse.urljoin(base, urllib.request.pathname2url(path))
.
Edit
..
Edit
__init__.py
Edit
__pycache__
Edit
compat
Edit
config
Edit
contexts.py
Edit
environment.py
Edit
fixtures.py
Edit
indexes
Edit
integration
Edit
mod_with_constant.py
Edit
namespaces.py
Edit
script-with-bom.py
Edit
server.py
Edit
test_archive_util.py
Edit
test_bdist_deprecations.py
Edit
test_bdist_egg.py
Edit
test_bdist_wheel.py
Edit
test_build.py
Edit
test_build_clib.py
Edit
test_build_ext.py
Edit
test_build_meta.py
Edit
test_build_py.py
Edit
test_config_discovery.py
Edit
test_core_metadata.py
Edit
test_depends.py
Edit
test_develop.py
Edit
test_dist.py
Edit
test_dist_info.py
Edit
test_distutils_adoption.py
Edit
test_easy_install.py
Edit
test_editable_install.py
Edit
test_egg_info.py
Edit
test_extern.py
Edit
test_find_packages.py
Edit
test_find_py_modules.py
Edit
test_glob.py
Edit
test_install_scripts.py
Edit
test_logging.py
Edit
test_manifest.py
Edit
test_namespaces.py
Edit
test_packageindex.py
Edit
test_sandbox.py
Edit
test_sdist.py
Edit
test_setopt.py
Edit
test_setuptools.py
Edit
test_shutil_wrapper.py
Edit
test_unicode_utils.py
Edit
test_virtualenv.py
Edit
test_warnings.py
Edit
test_wheel.py
Edit
test_windows_wrappers.py
Edit
text.py
Edit
textwrap.py
Edit