mirror of
https://github.com/wekan/wekan.git
synced 2025-12-24 19:30:12 +01:00
39 lines
914 B
JavaScript
39 lines
914 B
JavaScript
var server = require('./server')
|
|
, events = require('events')
|
|
, stream = require('stream')
|
|
, assert = require('assert')
|
|
, fs = require('fs')
|
|
, request = require('../index')
|
|
, path = require('path')
|
|
, util = require('util')
|
|
;
|
|
|
|
var port = 6768
|
|
, called = false
|
|
, proxiedHost = 'google.com'
|
|
;
|
|
|
|
// set up environment variable
|
|
process.env.HTTP_PROXY = 'http://localhost:'+port;
|
|
|
|
var s = server.createServer(port)
|
|
s.listen(port, function () {
|
|
s.on('http://google.com/', function (req, res) {
|
|
called = true
|
|
assert.equal(req.headers.host, proxiedHost)
|
|
res.writeHeader(200)
|
|
res.end()
|
|
})
|
|
request ({
|
|
url: 'http://'+proxiedHost,
|
|
// should not read from HTTP_PROXY env var
|
|
proxy: null,
|
|
timeout: 500,
|
|
}, function (err, res, body) {
|
|
s.close()
|
|
})
|
|
})
|
|
|
|
process.on('exit', function () {
|
|
assert.ok(!called, 'the request must not be made to the proxy server')
|
|
})
|