Skip to content

Commit 9d462b8

Browse files
[pac-proxy-agent] Expose PacProxyAgent.getResolver() publicly (#363)
1 parent 3e69150 commit 9d462b8

File tree

3 files changed

+21
-3
lines changed

3 files changed

+21
-3
lines changed

.changeset/popular-toys-happen.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"pac-proxy-agent": minor
3+
---
4+
5+
Expose `PacProxyAgent.getResolver()` publicly

packages/pac-proxy-agent/src/index.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -118,10 +118,8 @@ export class PacProxyAgent<Uri extends string> extends Agent {
118118
/**
119119
* Loads the PAC proxy file from the source if necessary, and returns
120120
* a generated `FindProxyForURL()` resolver function to use.
121-
*
122-
* @api private
123121
*/
124-
private getResolver(): Promise<FindProxyForURL> {
122+
getResolver(): Promise<FindProxyForURL> {
125123
if (!this.resolverPromise) {
126124
this.resolverPromise = this.loadResolver();
127125
this.resolverPromise.then(

packages/pac-proxy-agent/test/test.ts

+15
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,21 @@ describe('PacProxyAgent', () => {
130130
});
131131
});
132132

133+
describe('getResolver', () => {
134+
it('should allow lookups without connecting', async () => {
135+
function FindProxyForURL() {
136+
return 'PROXY http-proxy.example.org:443;';
137+
}
138+
139+
const uri = `data:,${encodeURIComponent(FindProxyForURL.toString())}`;
140+
const agent = new PacProxyAgent(uri);
141+
142+
const resolver = await agent.getResolver();
143+
const proxy = await resolver("https://example.com/test")
144+
assert.equal(proxy, "PROXY http-proxy.example.org:443;")
145+
});
146+
})
147+
133148
describe('"http" module', () => {
134149
it('should work over an HTTP proxy', async () => {
135150
httpServer.once('request', function (req, res) {

0 commit comments

Comments
 (0)