File: test-tunnel.js

package info (click to toggle)
node-request 2.88.1-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 960 kB
  • sloc: javascript: 9,687; sh: 46; makefile: 2
file content (466 lines) | stat: -rw-r--r-- 10,746 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
'use strict'

var server = require('./server')
var tape = require('tape')
var request = require('../index')
var https = require('https')
var net = require('net')
var fs = require('fs')
var path = require('path')
var util = require('util')
var url = require('url')
var destroyable = require('server-destroy')

var events = []
var caFile = path.resolve(__dirname, 'ssl/ca/ca.crt')
var ca = fs.readFileSync(caFile)
var clientCert = fs.readFileSync(path.resolve(__dirname, 'ssl/ca/client.crt'))
var clientKey = fs.readFileSync(path.resolve(__dirname, 'ssl/ca/client-enc.key'))
var clientPassword = 'password'
var sslOpts = {
  key: path.resolve(__dirname, 'ssl/ca/localhost.key'),
  cert: path.resolve(__dirname, 'ssl/ca/localhost.crt')
}

var mutualSSLOpts = {
  key: path.resolve(__dirname, 'ssl/ca/localhost.key'),
  cert: path.resolve(__dirname, 'ssl/ca/localhost.crt'),
  ca: caFile,
  requestCert: true,
  rejectUnauthorized: true
}

// this is needed for 'https over http, tunnel=false' test
// from https://github.com/coolaj86/node-ssl-root-cas/blob/v1.1.9-beta/ssl-root-cas.js#L4267-L4281
var httpsOpts = https.globalAgent.options
httpsOpts.ca = httpsOpts.ca || []
httpsOpts.ca.push(ca)

var s = server.createServer()
var ss = server.createSSLServer(sslOpts)
var ss2 = server.createSSLServer(mutualSSLOpts)

// XXX when tunneling https over https, connections get left open so the server
// doesn't want to close normally (and same issue with http server on v0.8.x)
destroyable(s)
destroyable(ss)
destroyable(ss2)

function event () {
  events.push(util.format.apply(null, arguments))
}

function setListeners (server, type) {
  server.on('/', function (req, res) {
    event('%s response', type)
    res.end(type + ' ok')
  })

  server.on('request', function (req, res) {
    if (/^https?:/.test(req.url)) {
      // This is a proxy request
      var dest = req.url.split(':')[0]
      // Is it a redirect?
      var match = req.url.match(/\/redirect\/(https?)$/)
      if (match) {
        dest += '->' + match[1]
      }
      event('%s proxy to %s', type, dest)
      request(req.url, { followRedirect: false }).pipe(res)
    }
  })

  server.on('/redirect/http', function (req, res) {
    event('%s redirect to http', type)
    res.writeHead(301, {
      location: s.url
    })
    res.end()
  })

  server.on('/redirect/https', function (req, res) {
    event('%s redirect to https', type)
    res.writeHead(301, {
      location: ss.url
    })
    res.end()
  })

  server.on('connect', function (req, client, head) {
    var u = url.parse(req.url)
    var server = net.connect(u.host, u.port, function () {
      event('%s connect to %s', type, req.url)
      client.write('HTTP/1.1 200 Connection established\r\n\r\n')
      client.pipe(server)
      server.write(head)
      server.pipe(client)
    })
  })
}

setListeners(s, 'http')
setListeners(ss, 'https')
setListeners(ss2, 'https')

// monkey-patch since you can't set a custom certificate authority for the
// proxy in tunnel-agent (this is necessary for "* over https" tests)
var customCaCount = 0
var httpsRequestOld = https.request
https.request = function (options) {
  if (customCaCount) {
    options.ca = ca
    customCaCount--
  }
  return httpsRequestOld.apply(this, arguments)
}

function runTest (name, opts, expected) {
  tape(name, function (t) {
    opts.ca = ca
    if (opts.proxy === ss.url) {
      customCaCount = (opts.url === ss.url ? 2 : 1)
    }
    request(opts, function (err, res, body) {
      event(err ? 'err ' + err.message : res.statusCode + ' ' + body)
      t.deepEqual(events, expected)
      events = []
      t.end()
    })
  })
}

function addTests () {
  // HTTP OVER HTTP

  runTest('http over http, tunnel=true', {
    url: s.url,
    proxy: s.url,
    tunnel: true
  }, [
    'http connect to localhost:' + s.port,
    'http response',
    '200 http ok'
  ])

  runTest('http over http, tunnel=false', {
    url: s.url,
    proxy: s.url,
    tunnel: false
  }, [
    'http proxy to http',
    'http response',
    '200 http ok'
  ])

  runTest('http over http, tunnel=default', {
    url: s.url,
    proxy: s.url
  }, [
    'http proxy to http',
    'http response',
    '200 http ok'
  ])

  // HTTP OVER HTTPS

  runTest('http over https, tunnel=true', {
    url: s.url,
    proxy: ss.url,
    tunnel: true
  }, [
    'https connect to localhost:' + s.port,
    'http response',
    '200 http ok'
  ])

  runTest('http over https, tunnel=false', {
    url: s.url,
    proxy: ss.url,
    tunnel: false
  }, [
    'https proxy to http',
    'http response',
    '200 http ok'
  ])

  runTest('http over https, tunnel=default', {
    url: s.url,
    proxy: ss.url
  }, [
    'https proxy to http',
    'http response',
    '200 http ok'
  ])

  // HTTPS OVER HTTP

  runTest('https over http, tunnel=true', {
    url: ss.url,
    proxy: s.url,
    tunnel: true
  }, [
    'http connect to localhost:' + ss.port,
    'https response',
    '200 https ok'
  ])

  runTest('https over http, tunnel=false', {
    url: ss.url,
    proxy: s.url,
    tunnel: false
  }, [
    'http proxy to https',
    'https response',
    '200 https ok'
  ])

  runTest('https over http, tunnel=default', {
    url: ss.url,
    proxy: s.url
  }, [
    'http connect to localhost:' + ss.port,
    'https response',
    '200 https ok'
  ])

  // HTTPS OVER HTTPS

  runTest('https over https, tunnel=true', {
    url: ss.url,
    proxy: ss.url,
    tunnel: true
  }, [
    'https connect to localhost:' + ss.port,
    'https response',
    '200 https ok'
  ])

  runTest('https over https, tunnel=false', {
    url: ss.url,
    proxy: ss.url,
    tunnel: false,
    pool: false // must disable pooling here or Node.js hangs
  }, [
    'https proxy to https',
    'https response',
    '200 https ok'
  ])

  runTest('https over https, tunnel=default', {
    url: ss.url,
    proxy: ss.url
  }, [
    'https connect to localhost:' + ss.port,
    'https response',
    '200 https ok'
  ])

  // HTTP->HTTP OVER HTTP

  runTest('http->http over http, tunnel=true', {
    url: s.url + '/redirect/http',
    proxy: s.url,
    tunnel: true
  }, [
    'http connect to localhost:' + s.port,
    'http redirect to http',
    'http connect to localhost:' + s.port,
    'http response',
    '200 http ok'
  ])

  runTest('http->http over http, tunnel=false', {
    url: s.url + '/redirect/http',
    proxy: s.url,
    tunnel: false
  }, [
    'http proxy to http->http',
    'http redirect to http',
    'http proxy to http',
    'http response',
    '200 http ok'
  ])

  runTest('http->http over http, tunnel=default', {
    url: s.url + '/redirect/http',
    proxy: s.url
  }, [
    'http proxy to http->http',
    'http redirect to http',
    'http proxy to http',
    'http response',
    '200 http ok'
  ])

  // HTTP->HTTPS OVER HTTP

  runTest('http->https over http, tunnel=true', {
    url: s.url + '/redirect/https',
    proxy: s.url,
    tunnel: true
  }, [
    'http connect to localhost:' + s.port,
    'http redirect to https',
    'http connect to localhost:' + ss.port,
    'https response',
    '200 https ok'
  ])

  runTest('http->https over http, tunnel=false', {
    url: s.url + '/redirect/https',
    proxy: s.url,
    tunnel: false
  }, [
    'http proxy to http->https',
    'http redirect to https',
    'http proxy to https',
    'https response',
    '200 https ok'
  ])

  runTest('http->https over http, tunnel=default', {
    url: s.url + '/redirect/https',
    proxy: s.url
  }, [
    'http proxy to http->https',
    'http redirect to https',
    'http connect to localhost:' + ss.port,
    'https response',
    '200 https ok'
  ])

  // HTTPS->HTTP OVER HTTP

  runTest('https->http over http, tunnel=true', {
    url: ss.url + '/redirect/http',
    proxy: s.url,
    tunnel: true
  }, [
    'http connect to localhost:' + ss.port,
    'https redirect to http',
    'http connect to localhost:' + s.port,
    'http response',
    '200 http ok'
  ])

  runTest('https->http over http, tunnel=false', {
    url: ss.url + '/redirect/http',
    proxy: s.url,
    tunnel: false
  }, [
    'http proxy to https->http',
    'https redirect to http',
    'http proxy to http',
    'http response',
    '200 http ok'
  ])

  runTest('https->http over http, tunnel=default', {
    url: ss.url + '/redirect/http',
    proxy: s.url
  }, [
    'http connect to localhost:' + ss.port,
    'https redirect to http',
    'http proxy to http',
    'http response',
    '200 http ok'
  ])

  // HTTPS->HTTPS OVER HTTP

  runTest('https->https over http, tunnel=true', {
    url: ss.url + '/redirect/https',
    proxy: s.url,
    tunnel: true
  }, [
    'http connect to localhost:' + ss.port,
    'https redirect to https',
    'http connect to localhost:' + ss.port,
    'https response',
    '200 https ok'
  ])

  runTest('https->https over http, tunnel=false', {
    url: ss.url + '/redirect/https',
    proxy: s.url,
    tunnel: false
  }, [
    'http proxy to https->https',
    'https redirect to https',
    'http proxy to https',
    'https response',
    '200 https ok'
  ])

  runTest('https->https over http, tunnel=default', {
    url: ss.url + '/redirect/https',
    proxy: s.url
  }, [
    'http connect to localhost:' + ss.port,
    'https redirect to https',
    'http connect to localhost:' + ss.port,
    'https response',
    '200 https ok'
  ])

  // MUTUAL HTTPS OVER HTTP

  runTest('mutual https over http, tunnel=true', {
    url: ss2.url,
    proxy: s.url,
    tunnel: true,
    cert: clientCert,
    key: clientKey,
    passphrase: clientPassword
  }, [
    'http connect to localhost:' + ss2.port,
    'https response',
    '200 https ok'
  ])

  // XXX causes 'Error: socket hang up'
  // runTest('mutual https over http, tunnel=false', {
  //   url        : ss2.url,
  //   proxy      : s.url,
  //   tunnel     : false,
  //   cert       : clientCert,
  //   key        : clientKey,
  //   passphrase : clientPassword
  // }, [
  //   'http connect to localhost:' + ss2.port,
  //   'https response',
  //   '200 https ok'
  // ])

  runTest('mutual https over http, tunnel=default', {
    url: ss2.url,
    proxy: s.url,
    cert: clientCert,
    key: clientKey,
    passphrase: clientPassword
  }, [
    'http connect to localhost:' + ss2.port,
    'https response',
    '200 https ok'
  ])
}

tape('setup', function (t) {
  s.listen(0, function () {
    ss.listen(0, function () {
      ss2.listen(0, 'localhost', function () {
        addTests()
        tape('cleanup', function (t) {
          s.destroy(function () {
            ss.destroy(function () {
              ss2.destroy(function () {
                t.end()
              })
            })
          })
        })
        t.end()
      })
    })
  })
})