2013-11-13 17:01:15 +00:00
|
|
|
|
|
|
|
var context = require('../context');
|
|
|
|
|
|
|
|
describe('ctx.acceptsEncodings()', function(){
|
|
|
|
describe('with no arguments', function(){
|
|
|
|
describe('when Accept-Encoding is populated', function(){
|
|
|
|
it('should return accepted types', function(){
|
|
|
|
var ctx = context();
|
|
|
|
ctx.req.headers['accept-encoding'] = 'gzip, compress;q=0.2';
|
|
|
|
ctx.acceptsEncodings().should.eql(['gzip', 'compress', 'identity']);
|
2013-11-21 01:46:11 +00:00
|
|
|
ctx.acceptsEncodings('gzip', 'compress').should.equal('gzip');
|
2013-11-13 17:01:15 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('when Accept-Encoding is not populated', function(){
|
|
|
|
it('should return identity', function(){
|
|
|
|
var ctx = context();
|
|
|
|
ctx.acceptsEncodings().should.eql(['identity']);
|
2013-11-21 01:46:11 +00:00
|
|
|
ctx.acceptsEncodings('gzip', 'deflate').should.equal('identity');
|
2013-11-13 17:01:15 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('with multiple arguments', function(){
|
|
|
|
it('should return the best fit', function(){
|
|
|
|
var ctx = context();
|
|
|
|
ctx.req.headers['accept-encoding'] = 'gzip, compress;q=0.2';
|
|
|
|
ctx.acceptsEncodings('compress', 'gzip').should.eql('gzip');
|
|
|
|
ctx.acceptsEncodings('gzip', 'compress').should.eql('gzip');
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('with an array', function(){
|
|
|
|
it('should return the best fit', function(){
|
|
|
|
var ctx = context();
|
|
|
|
ctx.req.headers['accept-encoding'] = 'gzip, compress;q=0.2';
|
|
|
|
ctx.acceptsEncodings(['compress', 'gzip']).should.eql('gzip');
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|