koa-lite/test/application/request.js

35 lines
720 B
JavaScript
Raw Normal View History

'use strict';
const request = require('supertest');
const assert = require('assert');
2015-10-13 06:19:42 +00:00
const Koa = require('../..');
describe('app.request', () => {
2015-10-13 06:19:42 +00:00
const app1 = new Koa();
app1.request.message = 'hello';
2015-10-13 06:19:42 +00:00
const app2 = new Koa();
2017-05-11 03:30:32 +00:00
it('should merge properties', () => {
app1.use((ctx, next) => {
assert.equal(ctx.request.message, 'hello');
ctx.status = 204;
});
2017-05-11 03:30:32 +00:00
return request(app1.listen())
.get('/')
2017-05-11 03:30:32 +00:00
.expect(204);
2015-10-12 20:36:41 +00:00
});
2017-05-11 03:30:32 +00:00
it('should not affect the original prototype', () => {
app2.use((ctx, next) => {
assert.equal(ctx.request.message, undefined);
ctx.status = 204;
});
2017-05-11 03:30:32 +00:00
return request(app2.listen())
.get('/')
2017-05-11 03:30:32 +00:00
.expect(204);
2015-10-12 20:36:41 +00:00
});
});