-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: use Teffen's solution for useEnv
- Loading branch information
Showing
3 changed files
with
64 additions
and
33 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
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 |
---|---|---|
@@ -1,59 +1,39 @@ | ||
import { shouldEnableProxy } from "../../../src/node/proxy_agent" | ||
|
||
/** | ||
* Helper function to set an env variable. | ||
* | ||
* Returns a function to cleanup the env variable. | ||
*/ | ||
function setEnv(name: string, value: string) { | ||
process.env[name] = value | ||
|
||
return { | ||
cleanup() { | ||
delete process.env[name] | ||
}, | ||
} | ||
} | ||
import { useEnv } from "../../utils/helpers" | ||
|
||
describe("shouldEnableProxy", () => { | ||
// Source: https://stackoverflow.com/a/48042799 | ||
const OLD_ENV = process.env | ||
const [setHTTPProxy, resetHTTPProxy] = useEnv("HTTP_PROXY") | ||
const [setHTTPSProxy, resetHTTPSProxy] = useEnv("HTTPS_PROXY") | ||
const [setNoProxy, resetNoProxy] = useEnv("NO_PROXY") | ||
|
||
beforeEach(() => { | ||
jest.resetModules() // Most important - it clears the cache | ||
process.env = { ...OLD_ENV } // Make a copy | ||
}) | ||
|
||
afterAll(() => { | ||
process.env = OLD_ENV // Restore old environment | ||
resetHTTPProxy() | ||
resetNoProxy() | ||
resetHTTPSProxy() | ||
}) | ||
|
||
it("returns true when HTTP_PROXY is set", () => { | ||
const { cleanup } = setEnv("HTTP_PROXY", "http://proxy.example.com") | ||
setHTTPProxy("http://proxy.example.com") | ||
expect(shouldEnableProxy()).toBe(true) | ||
cleanup() | ||
}) | ||
it("returns true when HTTPS_PROXY is set", () => { | ||
const { cleanup } = setEnv("HTTPS_PROXY", "http://proxy.example.com") | ||
setHTTPSProxy("https://proxy.example.com") | ||
expect(shouldEnableProxy()).toBe(true) | ||
cleanup() | ||
}) | ||
it("returns false when NO_PROXY is set", () => { | ||
const { cleanup } = setEnv("NO_PROXY", "*") | ||
setNoProxy("*") | ||
expect(shouldEnableProxy()).toBe(false) | ||
cleanup() | ||
}) | ||
it("should return false when neither HTTP_PROXY nor HTTPS_PROXY is set", () => { | ||
expect(shouldEnableProxy()).toBe(false) | ||
}) | ||
it("should return false when NO_PROXY is set to https://example.com", () => { | ||
const { cleanup } = setEnv("NO_PROXY", "https://example.com") | ||
setNoProxy("https://example.com") | ||
expect(shouldEnableProxy()).toBe(false) | ||
cleanup() | ||
}) | ||
it("should return false when NO_PROXY is set to http://example.com", () => { | ||
const { cleanup } = setEnv("NO_PROXY", "http://example.com") | ||
setNoProxy("http://example.com") | ||
expect(shouldEnableProxy()).toBe(false) | ||
cleanup() | ||
}) | ||
}) |
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