koa-lite/test/response/length.js

69 lines
1.7 KiB
JavaScript
Raw Normal View History

'use strict';
const response = require('../helpers/context').response;
const assert = require('assert');
const fs = require('fs');
describe('res.length', () => {
describe('when Content-Length is defined', () => {
it('should return a number', () => {
const res = response();
res.header['content-length'] = '120';
2017-05-11 03:30:32 +00:00
assert.equal(res.length, 120);
2015-10-12 20:36:41 +00:00
});
});
});
describe('res.length', () => {
describe('when Content-Length is defined', () => {
it('should return a number', () => {
const res = response();
res.set('Content-Length', '1024');
2017-05-11 03:30:32 +00:00
assert.equal(res.length, 1024);
2015-10-12 20:36:41 +00:00
});
});
describe('when Content-Length is not defined', () => {
describe('and a .body is set', () => {
it('should return a number', () => {
const res = response();
res.body = 'foo';
res.remove('Content-Length');
2017-05-11 03:30:32 +00:00
assert.equal(res.length, 3);
res.body = 'foo';
2017-05-11 03:30:32 +00:00
assert.equal(res.length, 3);
2017-03-20 06:48:37 +00:00
res.body = Buffer.from('foo bar');
res.remove('Content-Length');
2017-05-11 03:30:32 +00:00
assert.equal(res.length, 7);
2017-03-20 06:48:37 +00:00
res.body = Buffer.from('foo bar');
2017-05-11 03:30:32 +00:00
assert.equal(res.length, 7);
res.body = { hello: 'world' };
res.remove('Content-Length');
2017-05-11 03:30:32 +00:00
assert.equal(res.length, 17);
res.body = { hello: 'world' };
2017-05-11 03:30:32 +00:00
assert.equal(res.length, 17);
res.body = fs.createReadStream('package.json');
2017-05-11 03:30:32 +00:00
assert.equal(res.length, undefined);
res.body = null;
2017-05-11 03:30:32 +00:00
assert.equal(res.length, undefined);
2015-10-12 20:36:41 +00:00
});
});
describe('and .body is not', () => {
it('should return undefined', () => {
const res = response();
2017-05-11 03:30:32 +00:00
assert.equal(res.length, undefined);
2015-10-12 20:36:41 +00:00
});
});
});
});