koa-lite/test/application/context.js

35 lines
714 B
JavaScript

'use strict';
const request = require('supertest');
const assert = require('assert');
const Koa = require('../..');
describe('app.context', function(){
const app1 = new Koa();
app1.context.msg = 'hello';
const app2 = new Koa();
it('should merge properties', function(done){
app1.use(function *(ctx, next){
assert.equal(ctx.msg, 'hello');
ctx.status = 204;
});
request(app1.listen())
.get('/')
.expect(204, done);
});
it('should not affect the original prototype', function(done){
app2.use(function *(ctx, next){
assert.equal(ctx.msg, undefined);
ctx.status = 204;
});
request(app2.listen())
.get('/')
.expect(204, done);
});
});