koa-lite/test/application/request.js

35 lines
736 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', function(){
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();
it('should merge properties', function(done){
app1.use(function *(next){
2015-10-12 20:36:41 +00:00
assert.equal(this.request.message, 'hello');
this.status = 204;
});
request(app1.listen())
.get('/')
.expect(204, done);
2015-10-12 20:36:41 +00:00
});
it('should not affect the original prototype', function(done){
app2.use(function *(next){
2015-10-12 20:36:41 +00:00
assert.equal(this.request.message, undefined);
this.status = 204;
});
request(app2.listen())
.get('/')
.expect(204, done);
2015-10-12 20:36:41 +00:00
});
});