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.set(name, val)', () => {
|
|
|
|
it('should set a field value', () => {
|
2015-10-05 18:23:47 +00:00
|
|
|
const ctx = context();
|
2013-11-13 17:01:15 +00:00
|
|
|
ctx.set('x-foo', 'bar');
|
2017-05-11 03:30:32 +00:00
|
|
|
assert.equal(ctx.response.header['x-foo'], 'bar');
|
2015-10-12 20:36:41 +00:00
|
|
|
});
|
2013-11-13 17:01:15 +00:00
|
|
|
|
2015-10-25 07:54:57 +00:00
|
|
|
it('should coerce to a string', () => {
|
2015-10-05 18:23:47 +00:00
|
|
|
const ctx = context();
|
2013-11-13 17:01:15 +00:00
|
|
|
ctx.set('x-foo', 5);
|
2017-05-11 03:30:32 +00:00
|
|
|
assert.equal(ctx.response.header['x-foo'], '5');
|
2015-10-12 20:36:41 +00:00
|
|
|
});
|
2014-07-06 08:43:14 +00:00
|
|
|
|
2015-10-25 07:54:57 +00:00
|
|
|
it('should set a field value of array', () => {
|
2015-10-05 18:23:47 +00:00
|
|
|
const ctx = context();
|
2014-07-06 08:43:14 +00:00
|
|
|
ctx.set('x-foo', ['foo', 'bar']);
|
2017-05-11 03:30:32 +00:00
|
|
|
assert.deepEqual(ctx.response.header['x-foo'], [ 'foo', 'bar' ]);
|
2015-10-12 20:36:41 +00:00
|
|
|
});
|
|
|
|
});
|
2013-11-13 17:01:15 +00:00
|
|
|
|
2015-10-25 07:54:57 +00:00
|
|
|
describe('ctx.set(object)', () => {
|
|
|
|
it('should set multiple fields', () => {
|
2015-10-05 18:23:47 +00:00
|
|
|
const ctx = context();
|
2013-11-13 17:01:15 +00:00
|
|
|
|
|
|
|
ctx.set({
|
|
|
|
foo: '1',
|
|
|
|
bar: '2'
|
|
|
|
});
|
|
|
|
|
2017-05-11 03:30:32 +00:00
|
|
|
assert.equal(ctx.response.header.foo, '1');
|
|
|
|
assert.equal(ctx.response.header.bar, '2');
|
2015-10-12 20:36:41 +00:00
|
|
|
});
|
|
|
|
});
|