@@ -2,7 +2,8 @@ var helpers = require('./helpers'),
2
2
should = require ( 'should' ) ,
3
3
sinon = require ( 'sinon' ) ,
4
4
http = require ( 'http' ) ,
5
- needle = require ( './../' ) ;
5
+ needle = require ( './../' ) ,
6
+ should_proxy_to = require ( './../lib/proxy' ) . should_proxy_to ;
6
7
7
8
var port = 7707 ;
8
9
var url = 'localhost:' + port ;
@@ -137,9 +138,9 @@ describe('proxy option', function() {
137
138
} ) )
138
139
} )
139
140
140
- it ( 'proxies request if matching host in list but different port' , function ( done ) {
141
+ it ( 'does not proxy request if matching host in list and just has a different port' , function ( done ) {
141
142
process . env . NO_PROXY = 'localhost' ;
142
- send_request ( { proxy : nonexisting_host + ':123/done' } , proxied ( nonexisting_host , '123' , function ( ) {
143
+ send_request ( { proxy : nonexisting_host + ':123/done' } , not_proxied ( function ( ) {
143
144
delete process . env . NO_PROXY ;
144
145
done ( ) ;
145
146
} ) )
@@ -152,6 +153,103 @@ describe('proxy option', function() {
152
153
done ( ) ;
153
154
} ) )
154
155
} )
156
+
157
+ describe ( 'should_proxy_to()' , function ( ) {
158
+
159
+ const noProxy = ".ic1.mycorp,localhost,127.0.0.1,*.mycorp.org" ;
160
+ const noProxyWithPorts = " ,.mycorp.org:1234,.ic1.mycorp,localhost,127.0.0.1" ;
161
+ const URI = "http://registry.random.opr.mycorp.org" ;
162
+ const URIWithPort = "http://registry.random.opr.mycorp.org:9874" ;
163
+ const URIWithPort1234 = "http://registry.random.opr.mycorp.org:1234" ;
164
+ const URIlocalhost = "http://localhost" ;
165
+ const URIip = "http://127.0.0.1" ;
166
+
167
+ it ( "shall return true if NO_PROXY is undefined" , function ( done ) {
168
+ process . env . NO_PROXY = undefined ;
169
+ should_proxy_to ( URI ) . should . true ( )
170
+ delete process . env . NO_PROXY ;
171
+ done ( ) ;
172
+ } ) ;
173
+
174
+ it ( "shall return true if NO_PROXY is empty" , function ( done ) {
175
+ process . env . NO_PROXY = "" ;
176
+ should_proxy_to ( URI ) . should . true ( )
177
+ delete process . env . NO_PROXY ;
178
+ done ( ) ;
179
+ } ) ;
180
+
181
+ it ( "shall return false if NO_PROXY is a wildcard" , function ( done ) {
182
+ process . env . NO_PROXY = "*" ;
183
+ should_proxy_to ( URI ) . should . false ( )
184
+ delete process . env . NO_PROXY ;
185
+ done ( ) ;
186
+ } ) ;
187
+
188
+ it ( "shall return true if the host matches and the ports don't (URI doesn't have port specified)" , function ( done ) {
189
+ process . env . NO_PROXY = noProxyWithPorts ;
190
+ should_proxy_to ( URI ) . should . true ( )
191
+ delete process . env . NO_PROXY ;
192
+ done ( ) ;
193
+ } ) ;
194
+
195
+ it ( "shall return true if the host matches and the ports don't (both have a port specified but just different values)" , function ( done ) {
196
+ process . env . NO_PROXY = noProxyWithPorts ;
197
+ should_proxy_to ( URIWithPort ) . should . true ( )
198
+ delete process . env . NO_PROXY ;
199
+ done ( ) ;
200
+ } ) ;
201
+
202
+ it ( "shall return false if the host matches and the ports don't (no_proxy pattern doesn't have a port)" , function ( done ) {
203
+ process . env . NO_PROXY = noProxy ;
204
+ should_proxy_to ( URIWithPort ) . should . false ( )
205
+ delete process . env . NO_PROXY ;
206
+ done ( ) ;
207
+ } ) ;
208
+
209
+ it ( "shall return false if host matches" , function ( done ) {
210
+ process . env . NO_PROXY = noProxy ;
211
+ should_proxy_to ( URI ) . should . false ( )
212
+ delete process . env . NO_PROXY ;
213
+ done ( ) ;
214
+ } ) ;
215
+
216
+ it ( "shall return false if the host and port matches" , function ( done ) {
217
+ process . env . NO_PROXY = noProxyWithPorts ;
218
+ should_proxy_to ( URIWithPort1234 ) . should . false ( )
219
+ delete process . env . NO_PROXY ;
220
+ done ( ) ;
221
+ } ) ;
222
+
223
+ it ( "shall return false if the host matches (localhost)" , function ( done ) {
224
+ process . env . NO_PROXY = noProxy ;
225
+ should_proxy_to ( URIlocalhost ) . should . false ( )
226
+ delete process . env . NO_PROXY ;
227
+ done ( ) ;
228
+ } ) ;
229
+
230
+ it ( "shall return false if the host matches (ip)" , function ( done ) {
231
+ process . env . NO_PROXY = noProxy ;
232
+ should_proxy_to ( URIip ) . should . false ( )
233
+ delete process . env . NO_PROXY ;
234
+ done ( ) ;
235
+ } ) ;
236
+
237
+ it ( "shall return false if the host matches (ip)" , function ( done ) {
238
+ process . env . NO_PROXY = noProxy . replace ( / , g / , " " ) ;
239
+ should_proxy_to ( URIip ) . should . false ( )
240
+ delete process . env . NO_PROXY ;
241
+ done ( ) ;
242
+ } ) ;
243
+
244
+ it ( "shall return false if the host matches (ip)" , function ( done ) {
245
+ process . env . NO_PROXY = noProxy . replace ( / , g / , " " ) ;
246
+ should_proxy_to ( URIip ) . should . false ( )
247
+ delete process . env . NO_PROXY ;
248
+ done ( ) ;
249
+ } ) ;
250
+
251
+ } )
252
+
155
253
} )
156
254
157
255
describe ( 'and proxy url contains user:pass' , function ( ) {
0 commit comments