我需要创建一个代理从端口A到端口B的请求的应用程序。 例如,如果用户在端口3000上连接,他将被路由(在引擎盖下)到端口3001,因此"原始"应用程序将在端口3001上运行,但在客户端(浏览器)中,用户将输入端口3000。 不重定向......
http://example.com:3000/foo/bar
将创建一个新服务器,该服务器将侦听端口3001,并且所有呼叫实际上都是使用新服务器和新端口运行的端口3000。 由于端口3000实际被占用,我的反向代理应用程序?我应该如何测试...
有没有办法对此进行测试以验证这是否有效,例如。通过单元测试?
我发现这个模块https://github.com/nodejitsu/node-http-proxy可以提供帮助。
答案 0 :(得分:8)
直接node-http-proxy
docs,这很简单。您可以通过向端口3000发出HTTP请求来测试它 - 如果您获得与端口3001相同的响应,则它正在工作:
var http = require('http'),
httpProxy = require('http-proxy');
//
// Create a proxy server with custom application logic
//
var proxy = httpProxy.createProxyServer({});
var server = http.createServer(function(req, res) {
// You can define here your custom logic to handle the request
// and then proxy the request.
proxy.web(req, res, {
// Your real Node app
target: 'http://127.0.0.1:3001'
});
});
console.log("proxy listening on port 3000")
server.listen(3000);
我强烈建议您为项目使用mocha之类的东西编写一套集成测试 - 这样,您可以直接针对服务器和代理运行测试。如果测试通过两者,那么您可以确保您的代理按预期运行。
var should = require('should');
describe('server', function() {
it('should respond', function(done) {
// ^ optional synchronous callback
request.get({
url: "http://locahost:3000"
// ^ Port of your proxy
}, function(e, r, body) {
if (e)
throw new Error(e);
body.result.should.equal("It works!");
done(); // call the optional synchronous callback
});
});
});
然后您只需运行测试(一旦安装了Mocha):
$ mocha path/to/your/test.js
答案 1 :(得分:3)
您可以通过添加以下内容来验证这是否有效 到代理请求(如Remus回答中所述)
proxy.on('proxyReq', function (proxyReq, req, res, options) {
res.setHeader('App-Proxy', 'proxy');
});
通过这种方式,您可以验证您的“原始”呼叫是否适用于新服务器代理,甚至可以创建UT,此外您还可以使用changeOrigin:true
属性...