Skip to content

Commit

Permalink
res.status(code) test
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Nov 9, 2011
1 parent e303dcc commit cc2513f
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 43 deletions.
86 changes: 43 additions & 43 deletions test/middleware.basic.js
@@ -1,43 +1,43 @@

var express = require('../')
, request = require('./support/http');

describe('middleware', function(){
describe('.next()', function(){
it('should behave like connect', function(done){
var app = express()
, calls = [];

app.use(function(req, res, next){
calls.push('one');
next();
});

app.use(function(req, res, next){
calls.push('two');
next();
});

app.use(function(req, res){
var buf = '';
res.setHeader('Content-Type', 'application/json');
req.setEncoding('utf8');
req.on('data', function(chunk){ buf += chunk });
req.on('end', function(){
res.end(buf);
});
});

request(app)
.get('/')
.set('Content-Type', 'application/json')
.write('{"foo":"bar"}')
.end(function(res){
res.headers.should.have.property('content-type', 'application/json');
res.statusCode.should.equal(200);
res.body.should.equal('{"foo":"bar"}');
done();
})
})
})
})
//
// var express = require('../')
// , request = require('./support/http');
//
// describe('middleware', function(){
// describe('.next()', function(){
// it('should behave like connect', function(done){
// var app = express()
// , calls = [];
//
// app.use(function(req, res, next){
// calls.push('one');
// next();
// });
//
// app.use(function(req, res, next){
// calls.push('two');
// next();
// });
//
// app.use(function(req, res){
// var buf = '';
// res.setHeader('Content-Type', 'application/json');
// req.setEncoding('utf8');
// req.on('data', function(chunk){ buf += chunk });
// req.on('end', function(){
// res.end(buf);
// });
// });
//
// request(app)
// .get('/')
// .set('Content-Type', 'application/json')
// .write('{"foo":"bar"}')
// .end(function(res){
// res.headers.should.have.property('content-type', 'application/json');
// res.statusCode.should.equal(200);
// res.body.should.equal('{"foo":"bar"}');
// done();
// })
// })
// })
// })
13 changes: 13 additions & 0 deletions test/res.status.js
@@ -0,0 +1,13 @@

var express = require('../')
, res = require('http').ServerResponse.prototype;

describe('res', function(){
describe('.status()', function(){
it('should set the response .statusCode', function(){
var obj = {};
res.status.call(obj, 200).should.equal(obj);
obj.statusCode.should.equal(200);
})
})
})

0 comments on commit cc2513f

Please sign in to comment.