PATH: //proc/thread-self/root/opt/cloudlinux/venv/lib/python3.11/site-packages/setuptools/tests
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 __init__.py
↓
X
📁 __pycache__/
X
📁 compat/
X
📁 config/
X
📄 contexts.py
↓
X
📄 environment.py
↓
X
📄 fixtures.py
↓
X
📁 indexes/
X
📁 integration/
X
📄 mod_with_constant.py
↓
X
📄 namespaces.py
↓
X
📄 script-with-bom.py
↓
X
📄 server.py
↓
X
📄 test_archive_util.py
↓
X
📄 test_bdist_deprecations.py
↓
X
📄 test_bdist_egg.py
↓
X
📄 test_bdist_wheel.py
↓
X
📄 test_build.py
↓
X
📄 test_build_clib.py
↓
X
📄 test_build_ext.py
↓
X
📄 test_build_meta.py
↓
X
📄 test_build_py.py
↓
X
📄 test_config_discovery.py
↓
X
📄 test_core_metadata.py
↓
X
📄 test_depends.py
↓
X
📄 test_develop.py
↓
X
📄 test_dist.py
↓
X
📄 test_dist_info.py
↓
X
📄 test_distutils_adoption.py
↓
X
📄 test_easy_install.py
↓
X
📄 test_editable_install.py
↓
X
📄 test_egg_info.py
↓
X
📄 test_extern.py
↓
X
📄 test_find_packages.py
↓
X
📄 test_find_py_modules.py
↓
X
📄 test_glob.py
↓
X
📄 test_install_scripts.py
↓
X
📄 test_logging.py
↓
X
📄 test_manifest.py
↓
X
📄 test_namespaces.py
↓
X
📄 test_packageindex.py
↓
X
📄 test_sandbox.py
↓
X
📄 test_sdist.py
↓
X
📄 test_setopt.py
↓
X
📄 test_setuptools.py
↓
X
📄 test_shutil_wrapper.py
↓
X
📄 test_unicode_utils.py
↓
X
📄 test_virtualenv.py
↓
X
📄 test_warnings.py
↓
X
📄 test_wheel.py
↓
X
📄 test_windows_wrappers.py
↓
X
📄 text.py
↓
X
📄 textwrap.py
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: server.py
"""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))
SIMPAN PERUBAHAN