-
-
Notifications
You must be signed in to change notification settings - Fork 32.7k
cli: add --use-env-proxy #59151
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
cli: add --use-env-proxy #59151
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
---|---|---|
|
@@ -78,8 +78,6 @@ if (!common.isWindows) { | |
REQUEST_URL: requestUrl, | ||
http_proxy: `http://localhost:${proxy.address().port}`, | ||
HTTP_PROXY: `http://localhost:${proxy2.address().port}`, | ||
}, { | ||
stdout: 'Hello world', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These were copy-pasta from #58980 - |
||
}); | ||
assert.deepStrictEqual(logs, expectedLogs); | ||
assert.strictEqual(stderr.trim(), ''); | ||
|
This file contains hidden or 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 hidden or 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,75 @@ | ||
// This tests that --use-env-proxy works the same as NODE_USE_ENV_PROXY=1 | ||
// for HTTP requests using the built-in http module and fetch API. | ||
|
||
import * as common from '../common/index.mjs'; | ||
import assert from 'node:assert'; | ||
import http from 'node:http'; | ||
import { once } from 'events'; | ||
import { createProxyServer, runProxiedRequest, checkProxiedFetch } from '../common/proxy-server.js'; | ||
|
||
// Start a minimal proxy server. | ||
const { proxy, logs } = createProxyServer(); | ||
proxy.listen(0); | ||
await once(proxy, 'listening'); | ||
|
||
delete process.env.NODE_USE_ENV_PROXY; // Ensure the environment variable is not set. | ||
|
||
// Start a HTTP server to process the final request. | ||
const server = http.createServer(common.mustCall((req, res) => { | ||
res.end('Hello world'); | ||
}, 2)); | ||
server.on('error', common.mustNotCall((err) => { console.error('Server error', err); })); | ||
server.listen(0); | ||
await once(server, 'listening'); | ||
|
||
const serverHost = `localhost:${server.address().port}`; | ||
const requestUrl = `http://${serverHost}/test`; | ||
|
||
// Tests --use-env-proxy works with http builtins. | ||
{ | ||
const { code, signal, stderr, stdout } = await runProxiedRequest({ | ||
REQUEST_URL: requestUrl, | ||
HTTP_PROXY: `http://localhost:${proxy.address().port}`, | ||
}, ['--use-env-proxy']); | ||
assert.strictEqual(stderr.trim(), ''); | ||
assert.match(stdout, /Hello world/); | ||
assert.strictEqual(code, 0); | ||
assert.strictEqual(signal, null); | ||
assert.deepStrictEqual(logs, [{ | ||
method: 'GET', | ||
url: requestUrl, | ||
headers: { | ||
'connection': 'keep-alive', | ||
'proxy-connection': 'keep-alive', | ||
'host': serverHost, | ||
}, | ||
}]); | ||
} | ||
|
||
// Tests --use-env-proxy works with fetch and http. | ||
{ | ||
logs.splice(0, logs.length); | ||
await checkProxiedFetch({ | ||
FETCH_URL: requestUrl, | ||
HTTP_PROXY: `http://localhost:${proxy.address().port}`, | ||
}, { | ||
stdout: 'Hello world', | ||
}, ['--use-env-proxy']); | ||
|
||
// FIXME(undici:4083): undici currently always tunnels the request over | ||
// CONNECT if proxyTunnel is not explicitly set to false, but what we | ||
// need is for it to be automatically false for HTTP requests to be | ||
// consistent with curl. | ||
assert.deepStrictEqual(logs, [{ | ||
method: 'CONNECT', | ||
url: serverHost, | ||
headers: { | ||
'connection': 'close', | ||
'proxy-connection': 'keep-alive', | ||
'host': serverHost, | ||
}, | ||
}]); | ||
} | ||
|
||
server.close(); | ||
proxy.close(); |
This file contains hidden or 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,81 @@ | ||
// This tests that --use-env-proxy works the same as NODE_USE_ENV_PROXY=1 | ||
// for HTTPS requests using the built-in https module and fetch API. | ||
|
||
import * as common from '../common/index.mjs'; | ||
import fixtures from '../common/fixtures.js'; | ||
import assert from 'node:assert'; | ||
import { once } from 'events'; | ||
import { createProxyServer, runProxiedRequest, checkProxiedFetch } from '../common/proxy-server.js'; | ||
|
||
if (!common.hasCrypto) { | ||
common.skip('missing crypto'); | ||
} | ||
|
||
// https must be dynamically imported so that builds without crypto support | ||
// can skip it. | ||
const { default: https } = await import('node:https'); | ||
|
||
// Start a minimal proxy server. | ||
const { proxy, logs } = createProxyServer(); | ||
proxy.listen(0); | ||
await once(proxy, 'listening'); | ||
|
||
delete process.env.NODE_USE_ENV_PROXY; // Ensure the environment variable is not set. | ||
// Start a HTTPS server to process the final request. | ||
const server = https.createServer({ | ||
cert: fixtures.readKey('agent8-cert.pem'), | ||
key: fixtures.readKey('agent8-key.pem'), | ||
}, common.mustCall((req, res) => { | ||
res.end('Hello world'); | ||
}, 2)); | ||
server.on('error', common.mustNotCall((err) => { console.error('Server error', err); })); | ||
server.listen(0); | ||
await once(server, 'listening'); | ||
|
||
const serverHost = `localhost:${server.address().port}`; | ||
const requestUrl = `https://${serverHost}/test`; | ||
|
||
// Tests --use-env-proxy works with https builtins. | ||
{ | ||
const { code, signal, stderr, stdout } = await runProxiedRequest({ | ||
REQUEST_URL: requestUrl, | ||
HTTPS_PROXY: `http://localhost:${proxy.address().port}`, | ||
NODE_EXTRA_CA_CERTS: fixtures.path('keys', 'fake-startcom-root-cert.pem'), | ||
}, ['--use-env-proxy']); | ||
assert.strictEqual(stderr.trim(), ''); | ||
assert.match(stdout, /Hello world/); | ||
assert.strictEqual(code, 0); | ||
assert.strictEqual(signal, null); | ||
assert.deepStrictEqual(logs, [{ | ||
method: 'CONNECT', | ||
url: serverHost, | ||
headers: { | ||
'proxy-connection': 'keep-alive', | ||
'host': serverHost, | ||
}, | ||
}]); | ||
} | ||
|
||
// Tests --use-env-proxy works with fetch and https. | ||
{ | ||
logs.splice(0, logs.length); | ||
await checkProxiedFetch({ | ||
FETCH_URL: `https://${serverHost}/test`, | ||
HTTPS_PROXY: `http://localhost:${proxy.address().port}`, | ||
NODE_EXTRA_CA_CERTS: fixtures.path('keys', 'fake-startcom-root-cert.pem'), | ||
}, { | ||
stdout: 'Hello world', | ||
}, ['--use-env-proxy']); | ||
assert.deepStrictEqual(logs, [{ | ||
method: 'CONNECT', | ||
url: serverHost, | ||
headers: { | ||
'connection': 'close', | ||
'proxy-connection': 'keep-alive', | ||
'host': serverHost, | ||
}, | ||
}]); | ||
} | ||
|
||
server.close(); | ||
proxy.close(); |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.