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