'use strict';
const response = require('../helpers/context').response;
const assert = require('assert');
const fs = require('fs');
describe('res.body=', () => {
describe('when Content-Type is set', () => {
it('should not override', () => {
const res = response();
res.type = 'png';
res.body = Buffer.from('something');
assert.equal('image/png', res.header['content-type']);
});
describe('when body is an object', () => {
it('should override as json', () => {
const res = response();
res.body = 'hey';
assert.equal('text/html; charset=utf-8', res.header['content-type']);
res.body = { foo: 'bar' };
assert.equal('application/json; charset=utf-8', res.header['content-type']);
});
});
it('should override length', () => {
const res = response();
res.type = 'html';
res.body = 'something';
assert.equal(res.length, 9);
});
});
describe('when a string is given', () => {
it('should default to text', () => {
const res = response();
res.body = 'Tobi';
assert.equal('text/plain; charset=utf-8', res.header['content-type']);
});
it('should set length', () => {
const res = response();
res.body = 'Tobi';
assert.equal('4', res.header['content-length']);
});
describe('and contains a non-leading <', () => {
it('should default to text', () => {
const res = response();
res.body = 'aklsdjf < klajsdlfjasd';
assert.equal('text/plain; charset=utf-8', res.header['content-type']);
});
});
});
describe('when an html string is given', () => {
it('should default to html', () => {
const res = response();
res.body = '
Tobi
';
assert.equal('text/html; charset=utf-8', res.header['content-type']);
});
it('should set length', () => {
const string = 'Tobi
';
const res = response();
res.body = string;
assert.equal(res.length, Buffer.byteLength(string));
});
it('should set length when body is overridden', () => {
const string = 'Tobi
';
const res = response();
res.body = string;
res.body = string + string;
assert.equal(res.length, 2 * Buffer.byteLength(string));
});
describe('when it contains leading whitespace', () => {
it('should default to html', () => {
const res = response();
res.body = ' Tobi
';
assert.equal('text/html; charset=utf-8', res.header['content-type']);
});
});
});
describe('when an xml string is given', () => {
it('should default to html', () => {
/**
* ctx test is to show that we're not going
* to be stricter with the html sniff
* or that we will sniff other string types.
* You should `.type=` if ctx simple test fails.
*/
const res = response();
res.body = '\n<俄语>данные俄语>';
assert.equal('text/html; charset=utf-8', res.header['content-type']);
});
});
describe('when a stream is given', () => {
it('should default to an octet stream', () => {
const res = response();
res.body = fs.createReadStream('LICENSE');
assert.equal('application/octet-stream', res.header['content-type']);
});
});
describe('when a buffer is given', () => {
it('should default to an octet stream', () => {
const res = response();
res.body = Buffer.from('hey');
assert.equal('application/octet-stream', res.header['content-type']);
});
it('should set length', () => {
const res = response();
res.body = Buffer.from('Tobi');
assert.equal('4', res.header['content-length']);
});
});
describe('when an object is given', () => {
it('should default to json', () => {
const res = response();
res.body = { foo: 'bar' };
assert.equal('application/json; charset=utf-8', res.header['content-type']);
});
});
});