koa-lite/test/request/hostname.js
Tejas Manohar e8f79d43f9 modularize tests for application
closes #517

add index test for Application

add app.toJSON test

add test for app.inspect()

add tests for app.use()

add tests for app.onerror()

add tests for app.respond()

add tests for app.context()

add tests for app.request()

add tests for app.response

refactor for non-existence of test/app...js

no need for *.js

use helpers/ dir for non-tests
2015-10-12 00:08:06 -07:00

41 lines
1.1 KiB
JavaScript

'use strict';
const request = require('../helpers/context').request;
const assert = require('assert');
describe('req.hostname', function(){
it('should return hostname void of port', function(){
const req = request();
req.header.host = 'foo.com:3000';
req.hostname.should.equal('foo.com');
})
describe('with no host present', function(){
it('should return ""', function(){
const req = request();
assert.equal(req.hostname, '');
})
})
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';
req.header['host'] = 'foo.com';
req.hostname.should.equal('foo.com')
})
})
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';
req.header['host'] = 'foo.com';
req.hostname.should.equal('bar.com')
})
})
})
})