File tree 3 files changed +21
-3
lines changed
3 files changed +21
-3
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " pac-proxy-agent " : minor
3
+ ---
4
+
5
+ Expose ` PacProxyAgent.getResolver() ` publicly
Original file line number Diff line number Diff line change @@ -118,10 +118,8 @@ export class PacProxyAgent<Uri extends string> extends Agent {
118
118
/**
119
119
* Loads the PAC proxy file from the source if necessary, and returns
120
120
* a generated `FindProxyForURL()` resolver function to use.
121
- *
122
- * @api private
123
121
*/
124
- private getResolver ( ) : Promise < FindProxyForURL > {
122
+ getResolver ( ) : Promise < FindProxyForURL > {
125
123
if ( ! this . resolverPromise ) {
126
124
this . resolverPromise = this . loadResolver ( ) ;
127
125
this . resolverPromise . then (
Original file line number Diff line number Diff line change @@ -130,6 +130,21 @@ describe('PacProxyAgent', () => {
130
130
} ) ;
131
131
} ) ;
132
132
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
+
133
148
describe ( '"http" module' , ( ) => {
134
149
it ( 'should work over an HTTP proxy' , async ( ) => {
135
150
httpServer . once ( 'request' , function ( req , res ) {
You can’t perform that action at this time.
0 commit comments