UNPKG

chai-connect-middleware

Version:

Helpers for testing Connect middleware with the Chai assertion library.

36 lines (30 loc) 730 B
/** * Creates an instance of `Response`. * * This class is used as a mock when testing Connect middleware, substituted in * place of of a Node's `http.ServerResponse`. * * @constructor * @api protected */ function Response(cb) { this.statusCode = 200; this._headers = {}; this._data = ''; this._cb = cb; } Response.prototype.getHeader = function(name) { return this._headers[name]; }; Response.prototype.setHeader = function(name, value) { this._headers[name] = value; }; Response.prototype.end = function(data, encoding) { if (data) { this._data += data; } if (this._data.length) { this.body = this._data; } if (this._cb) { this._cb(); } }; /** * Expose `Response`. */ module.exports = Response;