Files
express/test/res.format.js

125 lines
2.8 KiB
JavaScript
Raw Normal View History

2012-02-18 17:13:40 -08:00
var express = require('../')
, request = require('./support/http')
, utils = require('../lib/utils')
, assert = require('assert');
2012-02-18 17:13:40 -08:00
var app = express();
app.use(function(req, res, next){
res.format({
2012-02-18 17:13:40 -08:00
'text/plain': function(){
res.send('hey');
2012-02-18 17:13:40 -08:00
},
'text/html': function(){
res.send('<p>hey</p>');
},
2012-02-21 10:23:20 -08:00
'application/json': function(a, b, c){
assert(req == a);
assert(res == b);
assert(next == c);
2012-02-18 17:13:40 -08:00
res.send({ message: 'hey' });
}
});
});
app.use(function(err, req, res, next){
2012-03-23 17:58:15 -07:00
if (!err.types) throw err;
res.send(err.status, 'Supports: ' + err.types.join(', '));
})
var app2 = express();
app2.use(function(req, res, next){
res.format({
text: function(){ res.send('hey') },
html: function(){ res.send('<p>hey</p>') },
json: function(){ res.send({ message: 'hey' }) }
});
});
app2.use(function(err, req, res, next){
res.send(err.status, 'Supports: ' + err.types.join(', '));
2012-02-18 17:13:40 -08:00
})
var app3 = express();
app3.use(function(req, res, next){
res.format({
text: function(){ res.send('hey') },
default: function(){ res.send('default') }
})
});
2013-08-04 20:32:08 +05:30
describe('res', function(){
describe('.format(obj)', function(){
describe('with canonicalized mime types', function(){
test(app);
})
describe('with extnames', function(){
test(app2);
2012-02-18 17:13:40 -08:00
})
describe('given .default', function(){
it('should be invoked instead of auto-responding', function(done){
request(app3)
.get('/')
.set('Accept: text/html')
.expect('default', done);
})
})
})
})
2012-02-18 17:13:40 -08:00
function test(app) {
it('should utilize qvalues in negotiation', function(done){
request(app)
.get('/')
.set('Accept', 'text/html; q=.5, application/json, */*; q=.1')
2013-08-04 20:32:08 +05:30
.expect({"message":"hey"}, done);
})
it('should allow wildcard type/subtypes', function(done){
request(app)
.get('/')
.set('Accept', 'text/html; q=.5, application/*, */*; q=.1')
2013-08-04 20:32:08 +05:30
.expect({"message":"hey"}, done);
})
it('should default the Content-Type', function(done){
request(app)
.get('/')
.set('Accept', 'text/html; q=.5, text/plain')
2012-06-26 17:14:07 -07:00
.expect('Content-Type', 'text/plain')
.expect('hey', done);
})
it('should Vary: Accept', function(done){
request(app)
.get('/')
.set('Accept', 'text/html; q=.5, text/plain')
2012-06-26 17:14:07 -07:00
.expect('Vary', 'Accept', done);
})
describe('when Accept is not present', function(){
it('should invoke the first callback', function(done){
2012-02-18 17:13:40 -08:00
request(app)
.get('/')
.expect('hey', done);
2012-02-18 17:13:40 -08:00
})
})
2012-02-18 17:13:40 -08:00
describe('when no match is made', function(){
it('should should respond with 406 not acceptable', function(done){
request(app)
.get('/')
.set('Accept', 'foo/bar')
2012-06-26 17:14:07 -07:00
.expect('Supports: text/plain, text/html, application/json')
.expect(406, done)
})
2012-02-18 17:13:40 -08:00
})
}