-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11091 from q0w/override-proxy
- Loading branch information
Showing
4 changed files
with
95 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Make the ``--proxy`` parameter take precedence over environment variables. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
import ssl | ||
from pathlib import Path | ||
from typing import Any, Dict | ||
|
||
import proxy | ||
import pytest | ||
from proxy.http.proxy import HttpProxyBasePlugin | ||
|
||
from tests.conftest import CertFactory | ||
from tests.lib import PipTestEnvironment, TestData | ||
from tests.lib.server import ( | ||
authorization_response, | ||
make_mock_server, | ||
package_page, | ||
server_running, | ||
) | ||
|
||
|
||
class AccessLogPlugin(HttpProxyBasePlugin): | ||
def on_access_log(self, context: Dict[str, Any]) -> None: | ||
print(context) | ||
|
||
|
||
@pytest.mark.network | ||
def test_proxy_overrides_env( | ||
script: PipTestEnvironment, capfd: pytest.CaptureFixture[str] | ||
) -> None: | ||
with proxy.Proxy( | ||
port=8899, | ||
num_acceptors=1, | ||
), proxy.Proxy(plugins=[AccessLogPlugin], port=8888, num_acceptors=1): | ||
script.environ["http_proxy"] = "127.0.0.1:8888" | ||
script.environ["https_proxy"] = "127.0.0.1:8888" | ||
result = script.pip( | ||
"download", | ||
"--proxy", | ||
"http://127.0.0.1:8899", | ||
"--trusted-host", | ||
"127.0.0.1", | ||
"-d", | ||
"pip_downloads", | ||
"INITools==0.1", | ||
) | ||
result.did_create(Path("scratch") / "pip_downloads" / "INITools-0.1.tar.gz") | ||
out, _ = capfd.readouterr() | ||
assert "CONNECT" not in out | ||
|
||
|
||
def test_proxy_does_not_override_netrc( | ||
script: PipTestEnvironment, | ||
data: TestData, | ||
cert_factory: CertFactory, | ||
) -> None: | ||
cert_path = cert_factory() | ||
ctx = ssl.SSLContext(ssl.PROTOCOL_SSLv23) | ||
ctx.load_cert_chain(cert_path, cert_path) | ||
ctx.load_verify_locations(cafile=cert_path) | ||
ctx.verify_mode = ssl.CERT_REQUIRED | ||
|
||
server = make_mock_server(ssl_context=ctx) | ||
server.mock.side_effect = [ | ||
package_page( | ||
{ | ||
"simple-3.0.tar.gz": "/files/simple-3.0.tar.gz", | ||
} | ||
), | ||
authorization_response(data.packages / "simple-3.0.tar.gz"), | ||
authorization_response(data.packages / "simple-3.0.tar.gz"), | ||
] | ||
|
||
url = f"https://{server.host}:{server.port}/simple" | ||
|
||
netrc = script.scratch_path / ".netrc" | ||
netrc.write_text(f"machine {server.host} login USERNAME password PASSWORD") | ||
with proxy.Proxy(port=8888, num_acceptors=1), server_running(server): | ||
script.environ["NETRC"] = netrc | ||
script.pip( | ||
"install", | ||
"--proxy", | ||
"http://127.0.0.1:8888", | ||
"--trusted-host", | ||
"127.0.0.1", | ||
"--no-cache-dir", | ||
"--index-url", | ||
url, | ||
"--cert", | ||
cert_path, | ||
"--client-cert", | ||
cert_path, | ||
"simple", | ||
) | ||
script.assert_installed(simple="3.0") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,3 +12,4 @@ virtualenv >= 20.0 ; python_version >= '3.10' | |
werkzeug | ||
wheel | ||
tomli-w | ||
proxy.py |