2013-08-17 07:15:57 +00:00
|
|
|
|
|
|
|
var request = require('supertest');
|
2014-10-01 12:12:20 +00:00
|
|
|
var statuses = require('statuses');
|
2013-08-17 07:15:57 +00:00
|
|
|
var assert = require('assert');
|
|
|
|
var http = require('http');
|
|
|
|
var koa = require('..');
|
|
|
|
var fs = require('fs');
|
2014-10-31 19:15:45 +00:00
|
|
|
var stderr = require('test-console').stderr;
|
2014-09-08 22:53:46 +00:00
|
|
|
var AssertionError = assert.AssertionError;
|
2013-08-17 07:15:57 +00:00
|
|
|
|
2013-12-18 01:37:35 +00:00
|
|
|
describe('app', function(){
|
|
|
|
it('should handle socket errors', function(done){
|
|
|
|
var app = koa();
|
|
|
|
|
|
|
|
app.use(function *(next){
|
|
|
|
// triggers this.socket.writable == false
|
|
|
|
this.socket.emit('error', new Error('boom'));
|
|
|
|
});
|
|
|
|
|
|
|
|
app.on('error', function(err){
|
|
|
|
err.message.should.equal('boom');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
|
|
|
|
request(app.listen())
|
|
|
|
.get('/')
|
|
|
|
.end(function(){});
|
|
|
|
})
|
2013-12-25 08:13:54 +00:00
|
|
|
|
|
|
|
it('should not .writeHead when !socket.writable', function(done){
|
|
|
|
var app = koa();
|
|
|
|
|
|
|
|
app.use(function *(next){
|
|
|
|
// set .writable to false
|
|
|
|
this.socket.writable = false;
|
|
|
|
this.status = 204;
|
|
|
|
// throw if .writeHead or .end is called
|
|
|
|
this.res.writeHead =
|
2014-03-24 18:21:15 +00:00
|
|
|
this.res.end = function(){
|
2013-12-25 08:13:54 +00:00
|
|
|
throw new Error('response sent');
|
|
|
|
};
|
|
|
|
})
|
|
|
|
|
|
|
|
// hackish, but the response should occur in a single ticket
|
|
|
|
setImmediate(done);
|
|
|
|
|
|
|
|
request(app.listen())
|
|
|
|
.get('/')
|
|
|
|
.end(function(){});
|
|
|
|
})
|
2013-12-18 01:37:35 +00:00
|
|
|
})
|
|
|
|
|
2014-03-11 18:01:33 +00:00
|
|
|
describe('app.toJSON()', function(){
|
|
|
|
it('should work', function(){
|
|
|
|
var app = koa();
|
|
|
|
var obj = app.toJSON();
|
|
|
|
|
|
|
|
obj.should.eql({
|
|
|
|
subdomainOffset: 2,
|
|
|
|
poweredBy: true,
|
|
|
|
env: 'test'
|
|
|
|
});
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2014-03-11 18:06:57 +00:00
|
|
|
describe('app.inspect()', function(){
|
|
|
|
it('should work', function(){
|
|
|
|
var app = koa();
|
|
|
|
var util = require('util');
|
|
|
|
var str = util.inspect(app);
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2013-08-17 07:15:57 +00:00
|
|
|
describe('app.use(fn)', function(){
|
|
|
|
it('should compose middleware', function(done){
|
|
|
|
var app = koa();
|
|
|
|
var calls = [];
|
|
|
|
|
2013-11-08 00:15:47 +00:00
|
|
|
app.use(function *(next){
|
|
|
|
calls.push(1);
|
|
|
|
yield next;
|
|
|
|
calls.push(6);
|
2013-08-17 07:15:57 +00:00
|
|
|
});
|
|
|
|
|
2013-11-08 00:15:47 +00:00
|
|
|
app.use(function *(next){
|
|
|
|
calls.push(2);
|
|
|
|
yield next;
|
|
|
|
calls.push(5);
|
2013-08-17 07:15:57 +00:00
|
|
|
});
|
|
|
|
|
2013-11-08 00:15:47 +00:00
|
|
|
app.use(function *(next){
|
|
|
|
calls.push(3);
|
|
|
|
yield next;
|
|
|
|
calls.push(4);
|
2013-08-17 07:15:57 +00:00
|
|
|
});
|
|
|
|
|
2013-09-01 22:07:54 +00:00
|
|
|
var server = app.listen();
|
2013-08-17 07:15:57 +00:00
|
|
|
|
|
|
|
request(server)
|
|
|
|
.get('/')
|
|
|
|
.end(function(err){
|
|
|
|
if (err) return done(err);
|
|
|
|
calls.should.eql([1,2,3,4,5,6]);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
})
|
2013-12-19 18:03:08 +00:00
|
|
|
|
|
|
|
it('should error when a non-generator function is passed', function(done){
|
|
|
|
var app = koa();
|
|
|
|
|
|
|
|
try {
|
|
|
|
app.use(function(){});
|
|
|
|
} catch (err) {
|
|
|
|
err.message.should.equal('app.use() requires a generator function');
|
|
|
|
done();
|
|
|
|
}
|
|
|
|
})
|
2013-08-17 07:15:57 +00:00
|
|
|
})
|
|
|
|
|
2014-09-08 22:53:46 +00:00
|
|
|
describe('app.onerror(err)', function(){
|
|
|
|
it('should throw an error if a non-error is given', function(done){
|
|
|
|
var app = koa();
|
|
|
|
|
|
|
|
try {
|
|
|
|
app.onerror('foo');
|
|
|
|
|
|
|
|
should.fail();
|
|
|
|
} catch (err) {
|
|
|
|
err.should.be.instanceOf(AssertionError);
|
|
|
|
err.message.should.equal('non-error thrown: foo');
|
|
|
|
}
|
|
|
|
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should do nothing if status is 404', function(done){
|
|
|
|
var app = koa();
|
|
|
|
var err = new Error();
|
|
|
|
|
|
|
|
err.status = 404;
|
|
|
|
|
|
|
|
var output = stderr.inspectSync(function() {
|
|
|
|
app.onerror(err);
|
|
|
|
});
|
|
|
|
|
|
|
|
output.should.eql([]);
|
|
|
|
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should do nothing if env is test', function(done){
|
|
|
|
var app = koa();
|
|
|
|
var err = new Error();
|
|
|
|
|
|
|
|
var output = stderr.inspectSync(function() {
|
|
|
|
app.onerror(err);
|
|
|
|
});
|
|
|
|
|
|
|
|
output.should.eql([]);
|
|
|
|
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should log the error to stderr', function(done){
|
|
|
|
var app = koa();
|
|
|
|
app.env = 'dev';
|
|
|
|
|
|
|
|
var err = new Error();
|
|
|
|
err.stack = 'Foo';
|
|
|
|
|
|
|
|
var output = stderr.inspectSync(function() {
|
|
|
|
app.onerror(err);
|
|
|
|
});
|
|
|
|
|
|
|
|
output.should.eql(["\n", " Foo\n", "\n"]);
|
|
|
|
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2013-08-17 07:15:57 +00:00
|
|
|
describe('app.respond', function(){
|
2014-01-24 22:38:40 +00:00
|
|
|
describe('when this.respond === false', function(){
|
|
|
|
it('should bypass app.respond', function(done){
|
|
|
|
var app = koa();
|
|
|
|
|
|
|
|
app.use(function *(){
|
|
|
|
this.body = 'Hello';
|
|
|
|
this.respond = false;
|
|
|
|
|
|
|
|
var res = this.res;
|
2014-04-29 04:17:30 +00:00
|
|
|
res.statusCode = 200;
|
2014-03-24 18:21:15 +00:00
|
|
|
setImmediate(function(){
|
2014-01-24 22:38:40 +00:00
|
|
|
res.setHeader('Content-Type', 'text/plain');
|
|
|
|
res.end('lol');
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
var server = app.listen();
|
|
|
|
|
|
|
|
request(server)
|
|
|
|
.get('/')
|
|
|
|
.expect(200)
|
|
|
|
.expect('lol')
|
|
|
|
.end(done);
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2013-08-17 07:15:57 +00:00
|
|
|
describe('when HEAD is used', function(){
|
|
|
|
it('should not respond with the body', function(done){
|
|
|
|
var app = koa();
|
|
|
|
|
2013-11-08 00:15:47 +00:00
|
|
|
app.use(function *(){
|
|
|
|
this.body = 'Hello';
|
2013-08-17 07:15:57 +00:00
|
|
|
});
|
|
|
|
|
2013-09-01 22:07:54 +00:00
|
|
|
var server = app.listen();
|
2013-08-17 07:15:57 +00:00
|
|
|
|
|
|
|
request(server)
|
|
|
|
.head('/')
|
|
|
|
.expect(200)
|
|
|
|
.end(function(err, res){
|
|
|
|
if (err) return done(err);
|
2014-04-15 02:06:32 +00:00
|
|
|
res.should.have.header('Content-Type', 'text/plain; charset=utf-8');
|
2013-08-17 07:15:57 +00:00
|
|
|
res.should.have.header('Content-Length', '5');
|
|
|
|
assert(0 == res.text.length);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
})
|
2013-11-19 19:11:26 +00:00
|
|
|
|
2014-04-15 15:37:48 +00:00
|
|
|
it('should keep json headers', function(done){
|
2014-04-15 02:06:32 +00:00
|
|
|
var app = koa();
|
|
|
|
|
|
|
|
app.use(function *(){
|
|
|
|
this.body = { hello: 'world' };
|
|
|
|
});
|
|
|
|
|
|
|
|
var server = app.listen();
|
|
|
|
|
|
|
|
request(server)
|
|
|
|
.head('/')
|
|
|
|
.expect(200)
|
|
|
|
.end(function(err, res){
|
|
|
|
if (err) return done(err);
|
2014-06-04 04:44:25 +00:00
|
|
|
res.should.have.header('Content-Type', 'application/json; charset=utf-8');
|
2014-04-15 02:06:32 +00:00
|
|
|
res.should.have.header('Content-Length', '17');
|
|
|
|
assert(0 == res.text.length);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
})
|
|
|
|
|
2014-04-15 15:37:48 +00:00
|
|
|
it('should keep string headers', function(done){
|
|
|
|
var app = koa();
|
|
|
|
|
|
|
|
app.use(function *(){
|
|
|
|
this.body = 'hello world';
|
|
|
|
});
|
|
|
|
|
|
|
|
var server = app.listen();
|
|
|
|
|
|
|
|
request(server)
|
|
|
|
.head('/')
|
|
|
|
.expect(200)
|
|
|
|
.end(function(err, res){
|
|
|
|
if (err) return done(err);
|
|
|
|
res.should.have.header('Content-Type', 'text/plain; charset=utf-8');
|
|
|
|
res.should.have.header('Content-Length', '11');
|
|
|
|
assert(0 == res.text.length);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
})
|
|
|
|
|
2014-04-15 15:38:32 +00:00
|
|
|
it('should keep buffer headers', function(done){
|
|
|
|
var app = koa();
|
|
|
|
|
|
|
|
app.use(function *(){
|
|
|
|
this.body = new Buffer('hello world');
|
|
|
|
});
|
|
|
|
|
|
|
|
var server = app.listen();
|
|
|
|
|
|
|
|
request(server)
|
|
|
|
.head('/')
|
|
|
|
.expect(200)
|
|
|
|
.end(function(err, res){
|
|
|
|
if (err) return done(err);
|
|
|
|
res.should.have.header('Content-Type', 'application/octet-stream');
|
|
|
|
res.should.have.header('Content-Length', '11');
|
|
|
|
assert(0 == res.text.length);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
})
|
|
|
|
|
2013-11-19 19:11:26 +00:00
|
|
|
it('should respond with a 404 if no body was set', function(done){
|
|
|
|
var app = koa();
|
|
|
|
|
|
|
|
app.use(function *(){
|
2013-12-30 06:26:19 +00:00
|
|
|
|
2013-11-19 19:11:26 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
var server = app.listen();
|
|
|
|
|
|
|
|
request(server)
|
|
|
|
.head('/')
|
|
|
|
.expect(404, done);
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should respond with a 200 if body = ""', function(done){
|
|
|
|
var app = koa();
|
|
|
|
|
|
|
|
app.use(function *(){
|
|
|
|
this.body = '';
|
|
|
|
})
|
|
|
|
|
|
|
|
var server = app.listen();
|
|
|
|
|
|
|
|
request(server)
|
|
|
|
.head('/')
|
|
|
|
.expect(200, done);
|
|
|
|
})
|
2014-03-23 11:01:14 +00:00
|
|
|
|
|
|
|
it('should not overwrite the content-type', function(done){
|
|
|
|
var app = koa();
|
|
|
|
|
|
|
|
app.use(function *(){
|
|
|
|
this.status = 200;
|
|
|
|
this.type = 'application/javascript';
|
|
|
|
})
|
|
|
|
|
|
|
|
var server = app.listen();
|
|
|
|
|
|
|
|
request(server)
|
|
|
|
.head('/')
|
2014-08-04 20:28:26 +00:00
|
|
|
.expect('content-type', /application\/javascript/)
|
2014-03-23 11:01:14 +00:00
|
|
|
.expect(200, done);
|
|
|
|
})
|
2013-08-17 07:15:57 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
describe('when no middleware are present', function(){
|
|
|
|
it('should 404', function(done){
|
|
|
|
var app = koa();
|
|
|
|
|
2013-09-01 22:07:54 +00:00
|
|
|
var server = app.listen();
|
2013-08-17 07:15:57 +00:00
|
|
|
|
|
|
|
request(server)
|
|
|
|
.get('/')
|
|
|
|
.expect(404, done);
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2013-12-22 17:26:21 +00:00
|
|
|
describe('when res has already been written to', function(){
|
|
|
|
it('should not cause an app error', function(done){
|
|
|
|
var app = koa();
|
|
|
|
|
|
|
|
app.use(function *(next){
|
|
|
|
var res = this.res;
|
2014-04-29 04:17:30 +00:00
|
|
|
this.status = 200;
|
2013-12-22 17:26:21 +00:00
|
|
|
res.setHeader("Content-Type", "text/html")
|
|
|
|
res.write('Hello');
|
2014-03-24 18:21:15 +00:00
|
|
|
setTimeout(function(){
|
2013-12-22 17:26:21 +00:00
|
|
|
res.end("Goodbye")
|
|
|
|
}, 0);
|
|
|
|
});
|
|
|
|
|
|
|
|
var errorCaught = false;
|
|
|
|
|
2014-03-24 18:21:15 +00:00
|
|
|
app.on('error', function(err){
|
2013-12-22 17:26:21 +00:00
|
|
|
errorCaught = err;
|
|
|
|
});
|
|
|
|
|
|
|
|
var server = app.listen();
|
|
|
|
|
|
|
|
request(server)
|
|
|
|
.get('/')
|
|
|
|
.expect(200)
|
|
|
|
.end(function(err, res){
|
|
|
|
if (err) return done(err);
|
|
|
|
if (errorCaught) return done(errorCaught);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should send the right body', function(done){
|
|
|
|
var app = koa();
|
|
|
|
|
|
|
|
app.use(function *(next){
|
|
|
|
var res = this.res;
|
2014-04-29 04:17:30 +00:00
|
|
|
this.status = 200;
|
2013-12-22 17:26:21 +00:00
|
|
|
res.setHeader("Content-Type", "text/html")
|
|
|
|
res.write('Hello');
|
2014-03-24 18:21:15 +00:00
|
|
|
setTimeout(function(){
|
2014-04-09 16:02:13 +00:00
|
|
|
res.end("Goodbye");
|
2013-12-22 17:26:21 +00:00
|
|
|
}, 0);
|
|
|
|
});
|
|
|
|
|
|
|
|
var server = app.listen();
|
|
|
|
|
|
|
|
request(server)
|
|
|
|
.get('/')
|
|
|
|
.expect(200)
|
|
|
|
.expect('HelloGoodbye', done);
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2013-08-17 07:15:57 +00:00
|
|
|
describe('when .body is missing', function(){
|
2013-11-20 06:20:17 +00:00
|
|
|
describe('with status=400', function(){
|
|
|
|
it('should respond with the associated status message', function(done){
|
|
|
|
var app = koa();
|
2013-08-17 07:15:57 +00:00
|
|
|
|
2013-11-20 06:20:17 +00:00
|
|
|
app.use(function *(){
|
|
|
|
this.status = 400;
|
|
|
|
});
|
2013-08-17 07:15:57 +00:00
|
|
|
|
2013-11-20 06:20:17 +00:00
|
|
|
var server = app.listen();
|
2013-08-17 07:15:57 +00:00
|
|
|
|
2013-11-20 06:20:17 +00:00
|
|
|
request(server)
|
|
|
|
.get('/')
|
|
|
|
.expect(400)
|
2014-04-13 02:23:57 +00:00
|
|
|
.expect('Content-Length', 11)
|
2013-11-20 06:20:17 +00:00
|
|
|
.expect('Bad Request', done);
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('with status=204', function(){
|
|
|
|
it('should respond without a body', function(done){
|
|
|
|
var app = koa();
|
|
|
|
|
|
|
|
app.use(function *(){
|
|
|
|
this.status = 204;
|
|
|
|
})
|
|
|
|
|
|
|
|
var server = app.listen();
|
|
|
|
|
|
|
|
request(server)
|
|
|
|
.get('/')
|
|
|
|
.expect(204)
|
|
|
|
.expect('')
|
2014-03-24 18:21:15 +00:00
|
|
|
.end(function(err, res){
|
2013-11-20 06:20:17 +00:00
|
|
|
if (err) return done(err);
|
|
|
|
|
|
|
|
res.header.should.not.have.property('content-type');
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('with status=205', function(){
|
|
|
|
it('should respond without a body', function(done){
|
|
|
|
var app = koa();
|
|
|
|
|
|
|
|
app.use(function *(){
|
|
|
|
this.status = 205;
|
|
|
|
})
|
|
|
|
|
|
|
|
var server = app.listen();
|
|
|
|
|
|
|
|
request(server)
|
|
|
|
.get('/')
|
|
|
|
.expect(205)
|
|
|
|
.expect('')
|
2014-03-24 18:21:15 +00:00
|
|
|
.end(function(err, res){
|
2013-11-20 06:20:17 +00:00
|
|
|
if (err) return done(err);
|
|
|
|
|
|
|
|
res.header.should.not.have.property('content-type');
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('with status=304', function(){
|
|
|
|
it('should respond without a body', function(done){
|
|
|
|
var app = koa();
|
|
|
|
|
|
|
|
app.use(function *(){
|
|
|
|
this.status = 304;
|
|
|
|
})
|
|
|
|
|
|
|
|
var server = app.listen();
|
|
|
|
|
|
|
|
request(server)
|
|
|
|
.get('/')
|
|
|
|
.expect(304)
|
|
|
|
.expect('')
|
2014-03-24 18:21:15 +00:00
|
|
|
.end(function(err, res){
|
2013-11-20 06:20:17 +00:00
|
|
|
if (err) return done(err);
|
|
|
|
|
|
|
|
res.header.should.not.have.property('content-type');
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
})
|
2013-08-17 07:15:57 +00:00
|
|
|
})
|
2014-10-01 12:12:20 +00:00
|
|
|
|
|
|
|
describe('with custom status=700', function(){
|
|
|
|
it('should respond with the associated status message', function (done){
|
|
|
|
var app = koa();
|
|
|
|
statuses['700'] = 'custom status';
|
|
|
|
|
|
|
|
app.use(function *(){
|
|
|
|
this.status = 700;
|
|
|
|
})
|
|
|
|
|
|
|
|
var server = app.listen();
|
|
|
|
|
|
|
|
request(server)
|
|
|
|
.get('/')
|
|
|
|
.expect(700)
|
|
|
|
.expect('custom status')
|
|
|
|
.end(function(err, res){
|
|
|
|
if (err) return done(err);
|
|
|
|
res.res.statusMessage.should.equal('custom status');
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('with custom statusMessage=ok', function(){
|
|
|
|
it('should respond with the custom status message', function (done){
|
|
|
|
var app = koa();
|
|
|
|
|
|
|
|
app.use(function *(){
|
|
|
|
this.status = 200;
|
|
|
|
this.message = 'ok';
|
|
|
|
})
|
|
|
|
|
|
|
|
var server = app.listen();
|
|
|
|
|
|
|
|
request(server)
|
|
|
|
.get('/')
|
|
|
|
.expect(200)
|
|
|
|
.expect('ok')
|
|
|
|
.end(function(err, res){
|
|
|
|
if (err) return done(err);
|
|
|
|
res.res.statusMessage.should.equal('ok');
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('with custom status without message', function (){
|
|
|
|
it('should respond with the status code number', function (done){
|
|
|
|
var app = koa();
|
|
|
|
|
|
|
|
app.use(function *(){
|
|
|
|
this.res.statusCode = 701;
|
|
|
|
})
|
|
|
|
|
|
|
|
var server = app.listen();
|
|
|
|
|
|
|
|
request(server)
|
|
|
|
.get('/')
|
|
|
|
.expect(701)
|
|
|
|
.expect('701', done);
|
|
|
|
})
|
|
|
|
})
|
2013-08-17 07:15:57 +00:00
|
|
|
})
|
|
|
|
|
2014-04-09 16:21:15 +00:00
|
|
|
describe('when .body is a null', function(){
|
|
|
|
it('should respond 204 by default', function(done){
|
|
|
|
var app = koa();
|
|
|
|
|
|
|
|
app.use(function *(){
|
|
|
|
this.body = null;
|
|
|
|
})
|
|
|
|
|
|
|
|
var server = app.listen();
|
|
|
|
|
|
|
|
request(server)
|
|
|
|
.get('/')
|
|
|
|
.expect(204)
|
|
|
|
.expect('')
|
|
|
|
.end(function(err, res){
|
|
|
|
if (err) return done(err);
|
|
|
|
|
|
|
|
res.header.should.not.have.property('content-type');
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should respond 204 with status=200', function(done){
|
|
|
|
var app = koa();
|
|
|
|
|
|
|
|
app.use(function *(){
|
|
|
|
this.status = 200;
|
|
|
|
this.body = null;
|
|
|
|
})
|
|
|
|
|
|
|
|
var server = app.listen();
|
|
|
|
|
|
|
|
request(server)
|
|
|
|
.get('/')
|
|
|
|
.expect(204)
|
|
|
|
.expect('')
|
|
|
|
.end(function(err, res){
|
|
|
|
if (err) return done(err);
|
|
|
|
|
|
|
|
res.header.should.not.have.property('content-type');
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should respond 205 with status=205', function(done){
|
|
|
|
var app = koa();
|
|
|
|
|
|
|
|
app.use(function *(){
|
|
|
|
this.status = 205;
|
|
|
|
this.body = null;
|
|
|
|
})
|
|
|
|
|
|
|
|
var server = app.listen();
|
|
|
|
|
|
|
|
request(server)
|
|
|
|
.get('/')
|
|
|
|
.expect(205)
|
|
|
|
.expect('')
|
|
|
|
.end(function(err, res){
|
|
|
|
if (err) return done(err);
|
|
|
|
|
|
|
|
res.header.should.not.have.property('content-type');
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should respond 304 with status=304', function(done){
|
|
|
|
var app = koa();
|
|
|
|
|
|
|
|
app.use(function *(){
|
|
|
|
this.status = 304;
|
|
|
|
this.body = null;
|
|
|
|
})
|
|
|
|
|
|
|
|
var server = app.listen();
|
|
|
|
|
|
|
|
request(server)
|
|
|
|
.get('/')
|
|
|
|
.expect(304)
|
|
|
|
.expect('')
|
|
|
|
.end(function(err, res){
|
|
|
|
if (err) return done(err);
|
|
|
|
|
|
|
|
res.header.should.not.have.property('content-type');
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2013-08-17 07:15:57 +00:00
|
|
|
describe('when .body is a string', function(){
|
|
|
|
it('should respond', function(done){
|
|
|
|
var app = koa();
|
|
|
|
|
2013-11-08 00:15:47 +00:00
|
|
|
app.use(function *(){
|
|
|
|
this.body = 'Hello';
|
2013-08-17 07:15:57 +00:00
|
|
|
});
|
|
|
|
|
2013-09-01 22:07:54 +00:00
|
|
|
var server = app.listen();
|
2013-08-17 07:15:57 +00:00
|
|
|
|
|
|
|
request(server)
|
|
|
|
.get('/')
|
|
|
|
.expect('Hello', done);
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('when .body is a Buffer', function(){
|
|
|
|
it('should respond', function(done){
|
|
|
|
var app = koa();
|
|
|
|
|
2013-11-08 00:15:47 +00:00
|
|
|
app.use(function *(){
|
|
|
|
this.body = new Buffer('Hello');
|
2013-08-17 07:15:57 +00:00
|
|
|
});
|
|
|
|
|
2013-09-01 22:07:54 +00:00
|
|
|
var server = app.listen();
|
2013-08-17 07:15:57 +00:00
|
|
|
|
|
|
|
request(server)
|
|
|
|
.get('/')
|
|
|
|
.expect('Hello', done);
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('when .body is a Stream', function(){
|
|
|
|
it('should respond', function(done){
|
|
|
|
var app = koa();
|
|
|
|
|
2013-11-08 00:15:47 +00:00
|
|
|
app.use(function *(){
|
|
|
|
this.body = fs.createReadStream('package.json');
|
2014-06-04 04:44:25 +00:00
|
|
|
this.set('Content-Type', 'application/json; charset=utf-8');
|
2013-08-17 07:15:57 +00:00
|
|
|
});
|
|
|
|
|
2013-09-01 22:07:54 +00:00
|
|
|
var server = app.listen();
|
2013-08-17 07:15:57 +00:00
|
|
|
|
|
|
|
request(server)
|
|
|
|
.get('/')
|
2014-06-04 04:44:25 +00:00
|
|
|
.expect('Content-Type', 'application/json; charset=utf-8')
|
2013-08-17 07:15:57 +00:00
|
|
|
.end(function(err, res){
|
|
|
|
if (err) return done(err);
|
|
|
|
var pkg = require('../package');
|
2014-04-29 03:34:26 +00:00
|
|
|
res.should.not.have.header('Content-Length');
|
2013-08-17 07:15:57 +00:00
|
|
|
res.body.should.eql(pkg);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
})
|
2013-09-08 19:07:50 +00:00
|
|
|
|
2014-04-29 03:34:26 +00:00
|
|
|
it('should strip content-length when overwriting', function(done){
|
|
|
|
var app = koa();
|
|
|
|
|
|
|
|
app.use(function *(){
|
|
|
|
this.body = 'hello';
|
|
|
|
this.body = fs.createReadStream('package.json');
|
2014-06-04 04:44:25 +00:00
|
|
|
this.set('Content-Type', 'application/json; charset=utf-8');
|
2014-04-29 03:34:26 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
var server = app.listen();
|
|
|
|
|
|
|
|
request(server)
|
|
|
|
.get('/')
|
2014-06-04 04:44:25 +00:00
|
|
|
.expect('Content-Type', 'application/json; charset=utf-8')
|
2014-04-29 03:34:26 +00:00
|
|
|
.end(function(err, res){
|
|
|
|
if (err) return done(err);
|
|
|
|
var pkg = require('../package');
|
|
|
|
res.should.not.have.header('Content-Length');
|
|
|
|
res.body.should.eql(pkg);
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should keep content-length if not overwritten', function(done){
|
|
|
|
var app = koa();
|
|
|
|
|
|
|
|
app.use(function *(){
|
|
|
|
this.length = fs.readFileSync('package.json').length;
|
|
|
|
this.body = fs.createReadStream('package.json');
|
2014-06-04 04:44:25 +00:00
|
|
|
this.set('Content-Type', 'application/json; charset=utf-8');
|
2014-04-29 03:34:26 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
var server = app.listen();
|
|
|
|
|
|
|
|
request(server)
|
|
|
|
.get('/')
|
2014-06-04 04:44:25 +00:00
|
|
|
.expect('Content-Type', 'application/json; charset=utf-8')
|
2014-04-29 03:34:26 +00:00
|
|
|
.end(function(err, res){
|
|
|
|
if (err) return done(err);
|
|
|
|
var pkg = require('../package');
|
|
|
|
res.should.have.header('Content-Length');
|
|
|
|
res.body.should.eql(pkg);
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should keep content-length if overwritten with the same stream', function(done){
|
|
|
|
var app = koa();
|
|
|
|
|
|
|
|
app.use(function *(){
|
|
|
|
this.length = fs.readFileSync('package.json').length;
|
|
|
|
var stream = fs.createReadStream('package.json');
|
|
|
|
this.body = stream;
|
|
|
|
this.body = stream;
|
2014-06-04 04:44:25 +00:00
|
|
|
this.set('Content-Type', 'application/json; charset=utf-8');
|
2014-04-29 03:34:26 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
var server = app.listen();
|
|
|
|
|
|
|
|
request(server)
|
|
|
|
.get('/')
|
2014-06-04 04:44:25 +00:00
|
|
|
.expect('Content-Type', 'application/json; charset=utf-8')
|
2014-04-29 03:34:26 +00:00
|
|
|
.end(function(err, res){
|
|
|
|
if (err) return done(err);
|
|
|
|
var pkg = require('../package');
|
|
|
|
res.should.have.header('Content-Length');
|
|
|
|
res.body.should.eql(pkg);
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2013-09-08 19:07:50 +00:00
|
|
|
it('should handle errors', function(done){
|
|
|
|
var app = koa();
|
|
|
|
|
2013-11-08 00:15:47 +00:00
|
|
|
app.use(function *(){
|
2014-06-04 04:44:25 +00:00
|
|
|
this.set('Content-Type', 'application/json; charset=utf-8');
|
2013-11-08 00:15:47 +00:00
|
|
|
this.body = fs.createReadStream('does not exist');
|
2013-09-08 19:07:50 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
var server = app.listen();
|
|
|
|
|
|
|
|
request(server)
|
|
|
|
.get('/')
|
2013-09-14 21:48:33 +00:00
|
|
|
.expect('Content-Type', 'text/plain; charset=utf-8')
|
2013-09-08 19:11:02 +00:00
|
|
|
.expect(404)
|
2013-09-08 19:07:50 +00:00
|
|
|
.end(done);
|
|
|
|
})
|
2014-04-09 16:02:13 +00:00
|
|
|
|
|
|
|
it('should handle errors when no content status', function(done){
|
|
|
|
var app = koa();
|
|
|
|
|
|
|
|
app.use(function *(){
|
|
|
|
this.status = 204;
|
|
|
|
this.body = fs.createReadStream('does not exist');
|
|
|
|
});
|
|
|
|
|
|
|
|
var server = app.listen();
|
|
|
|
|
|
|
|
request(server)
|
|
|
|
.get('/')
|
|
|
|
.expect(204, done);
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
it('should handle all intermediate stream body errors', function(done){
|
|
|
|
var app = koa();
|
|
|
|
|
|
|
|
app.use(function *(){
|
|
|
|
this.body = fs.createReadStream('does not exist');
|
|
|
|
this.body = fs.createReadStream('does not exist');
|
|
|
|
this.body = fs.createReadStream('does not exist');
|
|
|
|
});
|
|
|
|
|
|
|
|
var server = app.listen();
|
|
|
|
|
|
|
|
request(server)
|
|
|
|
.get('/')
|
|
|
|
.expect(404, done);
|
|
|
|
})
|
2013-08-17 07:15:57 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
describe('when .body is an Object', function(){
|
|
|
|
it('should respond with json', function(done){
|
|
|
|
var app = koa();
|
|
|
|
|
2013-11-08 00:15:47 +00:00
|
|
|
app.use(function *(){
|
|
|
|
this.body = { hello: 'world' };
|
2013-08-17 07:15:57 +00:00
|
|
|
});
|
|
|
|
|
2013-09-01 22:07:54 +00:00
|
|
|
var server = app.listen();
|
2013-08-17 07:15:57 +00:00
|
|
|
|
|
|
|
request(server)
|
|
|
|
.get('/')
|
2014-06-04 04:44:25 +00:00
|
|
|
.expect('Content-Type', 'application/json; charset=utf-8')
|
2014-02-01 02:39:47 +00:00
|
|
|
.expect('{"hello":"world"}', done);
|
2013-08-17 07:15:57 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('when an error occurs', function(){
|
2013-09-08 16:37:19 +00:00
|
|
|
it('should emit "error" on the app', function(done){
|
|
|
|
var app = koa();
|
|
|
|
|
2013-11-08 00:15:47 +00:00
|
|
|
app.use(function *(){
|
|
|
|
throw new Error('boom');
|
2013-09-08 16:37:19 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
app.on('error', function(err){
|
|
|
|
err.message.should.equal('boom');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
|
|
|
|
request(app.listen())
|
|
|
|
.get('/')
|
|
|
|
.end(function(){});
|
|
|
|
})
|
|
|
|
|
2013-09-12 15:05:50 +00:00
|
|
|
describe('with an .expose property', function(){
|
|
|
|
it('should expose the message', function(done){
|
|
|
|
var app = koa();
|
|
|
|
|
2013-11-08 00:15:47 +00:00
|
|
|
app.use(function *(){
|
|
|
|
var err = new Error('sorry!');
|
|
|
|
err.status = 403;
|
|
|
|
err.expose = true;
|
|
|
|
throw err;
|
2013-09-12 15:05:50 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
request(app.listen())
|
|
|
|
.get('/')
|
|
|
|
.expect(403, 'sorry!')
|
|
|
|
.end(done);
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2013-08-22 02:47:56 +00:00
|
|
|
describe('with a .status property', function(){
|
|
|
|
it('should respond with .status', function(done){
|
|
|
|
var app = koa();
|
|
|
|
|
2013-11-08 00:15:47 +00:00
|
|
|
app.use(function *(){
|
|
|
|
var err = new Error('s3 explodes');
|
|
|
|
err.status = 403;
|
|
|
|
throw err;
|
2013-08-22 02:47:56 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
request(app.listen())
|
|
|
|
.get('/')
|
|
|
|
.expect(403, 'Forbidden')
|
|
|
|
.end(done);
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2013-08-17 07:15:57 +00:00
|
|
|
it('should respond with 500', function(done){
|
|
|
|
var app = koa();
|
|
|
|
|
2013-11-08 00:15:47 +00:00
|
|
|
app.use(function *(){
|
|
|
|
throw new Error('boom!');
|
2013-08-17 07:15:57 +00:00
|
|
|
});
|
|
|
|
|
2013-09-01 22:07:54 +00:00
|
|
|
var server = app.listen();
|
2013-08-17 07:15:57 +00:00
|
|
|
|
|
|
|
request(server)
|
|
|
|
.get('/')
|
|
|
|
.expect(500, 'Internal Server Error')
|
|
|
|
.end(done);
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should be catchable', function(done){
|
|
|
|
var app = koa();
|
|
|
|
|
2013-11-08 00:15:47 +00:00
|
|
|
app.use(function *(next){
|
|
|
|
try {
|
|
|
|
yield next;
|
|
|
|
this.body = 'Hello';
|
|
|
|
} catch (err) {
|
|
|
|
error = err;
|
|
|
|
this.body = 'Got error';
|
2013-08-17 07:15:57 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2013-11-08 00:15:47 +00:00
|
|
|
app.use(function *(next){
|
|
|
|
throw new Error('boom!');
|
|
|
|
this.body = 'Oh no';
|
2013-08-17 07:15:57 +00:00
|
|
|
});
|
|
|
|
|
2013-09-01 22:07:54 +00:00
|
|
|
var server = app.listen();
|
2013-08-17 07:15:57 +00:00
|
|
|
|
|
|
|
request(server)
|
|
|
|
.get('/')
|
|
|
|
.expect(200, 'Got error')
|
|
|
|
.end(done);
|
|
|
|
})
|
|
|
|
})
|
2014-04-09 16:21:15 +00:00
|
|
|
|
|
|
|
describe('when status and body property', function(){
|
|
|
|
it('should 200', function(done){
|
|
|
|
var app = koa();
|
|
|
|
|
|
|
|
app.use(function *(){
|
|
|
|
this.status = 304;
|
|
|
|
this.body = 'hello';
|
|
|
|
this.status = 200;
|
|
|
|
});
|
|
|
|
|
|
|
|
var server = app.listen();
|
|
|
|
|
|
|
|
request(server)
|
|
|
|
.get('/')
|
|
|
|
.expect(200)
|
|
|
|
.expect('hello', done);
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should 204', function(done) {
|
|
|
|
var app = koa();
|
|
|
|
|
|
|
|
app.use(function *(){
|
|
|
|
this.status = 200;
|
|
|
|
this.body = 'hello';
|
|
|
|
this.set('content-type', 'text/plain; charset=utf8');
|
|
|
|
this.status = 204;
|
|
|
|
});
|
|
|
|
|
|
|
|
var server = app.listen();
|
|
|
|
|
|
|
|
request(server)
|
|
|
|
.get('/')
|
|
|
|
.expect(204)
|
|
|
|
.end(function (err, res) {
|
|
|
|
res.should.not.have.header('content-type');
|
|
|
|
done(err);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
})
|
2013-08-17 22:36:51 +00:00
|
|
|
})
|
2013-11-14 02:41:01 +00:00
|
|
|
|
|
|
|
describe('app.context', function(){
|
|
|
|
var app1 = koa();
|
2014-10-01 12:12:20 +00:00
|
|
|
app1.context.msg = 'hello';
|
2013-11-14 02:41:01 +00:00
|
|
|
var app2 = koa();
|
|
|
|
|
2014-03-11 17:50:34 +00:00
|
|
|
it('should merge properties', function(done){
|
2013-11-14 02:41:01 +00:00
|
|
|
app1.use(function *(next){
|
2014-10-01 12:12:20 +00:00
|
|
|
assert.equal(this.msg, 'hello')
|
2013-11-14 02:41:01 +00:00
|
|
|
this.status = 204
|
|
|
|
});
|
|
|
|
|
|
|
|
request(app1.listen())
|
|
|
|
.get('/')
|
2014-03-11 17:50:34 +00:00
|
|
|
.expect(204, done);
|
2013-11-14 02:41:01 +00:00
|
|
|
})
|
|
|
|
|
2014-03-11 17:50:34 +00:00
|
|
|
it('should not affect the original prototype', function(done){
|
2013-11-14 02:41:01 +00:00
|
|
|
app2.use(function *(next){
|
2014-10-01 12:12:20 +00:00
|
|
|
assert.equal(this.msg, undefined)
|
2013-11-14 02:41:01 +00:00
|
|
|
this.status = 204;
|
|
|
|
});
|
|
|
|
|
|
|
|
request(app2.listen())
|
|
|
|
.get('/')
|
2014-03-11 17:50:34 +00:00
|
|
|
.expect(204, done);
|
2013-11-14 02:41:01 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('app.request', function(){
|
|
|
|
var app1 = koa();
|
|
|
|
app1.request.message = 'hello';
|
|
|
|
var app2 = koa();
|
|
|
|
|
2014-03-11 17:50:34 +00:00
|
|
|
it('should merge properties', function(done){
|
2013-11-14 02:41:01 +00:00
|
|
|
app1.use(function *(next){
|
|
|
|
assert.equal(this.request.message, 'hello')
|
|
|
|
this.status = 204
|
|
|
|
});
|
|
|
|
|
|
|
|
request(app1.listen())
|
|
|
|
.get('/')
|
2014-03-11 17:50:34 +00:00
|
|
|
.expect(204, done);
|
2013-11-14 02:41:01 +00:00
|
|
|
})
|
|
|
|
|
2014-03-11 17:50:34 +00:00
|
|
|
it('should not affect the original prototype', function(done){
|
2013-11-14 02:41:01 +00:00
|
|
|
app2.use(function *(next){
|
|
|
|
assert.equal(this.request.message, undefined)
|
|
|
|
this.status = 204;
|
|
|
|
});
|
|
|
|
|
|
|
|
request(app2.listen())
|
|
|
|
.get('/')
|
2014-03-11 17:50:34 +00:00
|
|
|
.expect(204, done);
|
2013-11-14 02:41:01 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('app.response', function(){
|
|
|
|
var app1 = koa();
|
2014-10-01 12:12:20 +00:00
|
|
|
app1.response.msg = 'hello';
|
2013-11-14 02:41:01 +00:00
|
|
|
var app2 = koa();
|
|
|
|
|
2014-03-11 17:50:34 +00:00
|
|
|
it('should merge properties', function(done){
|
2013-11-14 02:41:01 +00:00
|
|
|
app1.use(function *(next){
|
2014-10-01 12:12:20 +00:00
|
|
|
assert.equal(this.response.msg, 'hello')
|
2013-11-14 02:41:01 +00:00
|
|
|
this.status = 204
|
|
|
|
});
|
|
|
|
|
|
|
|
request(app1.listen())
|
|
|
|
.get('/')
|
2014-03-11 17:50:34 +00:00
|
|
|
.expect(204, done);
|
2013-11-14 02:41:01 +00:00
|
|
|
})
|
|
|
|
|
2014-03-11 17:50:34 +00:00
|
|
|
it('should not affect the original prototype', function(done){
|
2013-11-14 02:41:01 +00:00
|
|
|
app2.use(function *(next){
|
2014-10-01 12:12:20 +00:00
|
|
|
assert.equal(this.response.msg, undefined)
|
2013-11-14 02:41:01 +00:00
|
|
|
this.status = 204;
|
|
|
|
});
|
|
|
|
|
|
|
|
request(app2.listen())
|
|
|
|
.get('/')
|
2014-03-11 17:50:34 +00:00
|
|
|
.expect(204, done);
|
2013-11-14 02:41:01 +00:00
|
|
|
})
|
2014-03-24 18:21:15 +00:00
|
|
|
})
|