koa-lite/test/request/host.js

42 lines
1.1 KiB
JavaScript
Raw Normal View History

'use strict';
const request = require('../helpers/context').request;
const assert = require('assert');
describe('req.host', function(){
it('should return host with port', function(){
const req = request();
req.header.host = 'foo.com:3000';
req.host.should.equal('foo.com:3000');
2015-10-12 20:36:41 +00:00
});
2014-07-06 08:43:14 +00:00
describe('with no host present', function(){
it('should return ""', function(){
const req = request();
assert.equal(req.host, '');
2015-10-12 20:36:41 +00:00
});
});
2014-07-06 08:43:14 +00:00
describe('when X-Forwarded-Host is present', function(){
describe('and proxy is not trusted', function(){
it('should be ignored', function(){
const req = request();
req.header['x-forwarded-host'] = 'bar.com';
2015-10-12 20:36:41 +00:00
req.header.host = 'foo.com';
2014-05-04 14:43:58 +00:00
req.host.should.equal('foo.com');
2015-10-12 20:36:41 +00:00
});
});
describe('and proxy is trusted', function(){
it('should be used', function(){
const req = request();
req.app.proxy = true;
req.header['x-forwarded-host'] = 'bar.com, baz.com';
2015-10-12 20:36:41 +00:00
req.header.host = 'foo.com';
2014-05-04 14:43:58 +00:00
req.host.should.equal('bar.com');
2015-10-12 20:36:41 +00:00
});
});
});
});