2013-11-13 17:01:15 +00:00
|
|
|
|
2015-10-11 22:59:51 +00:00
|
|
|
'use strict';
|
|
|
|
|
2017-05-11 03:30:32 +00:00
|
|
|
const assert = require('assert');
|
2015-10-12 04:59:30 +00:00
|
|
|
const context = require('../helpers/context');
|
2013-11-13 17:01:15 +00:00
|
|
|
|
2015-10-25 07:54:57 +00:00
|
|
|
describe('ctx.get(name)', () => {
|
|
|
|
it('should return the field value', () => {
|
2015-10-05 18:23:47 +00:00
|
|
|
const ctx = context();
|
2013-11-13 17:01:15 +00:00
|
|
|
ctx.req.headers.host = 'http://google.com';
|
2014-07-06 08:43:14 +00:00
|
|
|
ctx.req.headers.referer = 'http://google.com';
|
2017-05-11 03:30:32 +00:00
|
|
|
assert.equal(ctx.get('HOST'), 'http://google.com');
|
|
|
|
assert.equal(ctx.get('Host'), 'http://google.com');
|
|
|
|
assert.equal(ctx.get('host'), 'http://google.com');
|
|
|
|
assert.equal(ctx.get('referer'), 'http://google.com');
|
|
|
|
assert.equal(ctx.get('referrer'), 'http://google.com');
|
2015-10-12 20:36:41 +00:00
|
|
|
});
|
|
|
|
});
|