11cf47c8a6
due to https://github.com/expressjs/accepts/commit/5975ce464575bd0fddfdd3d41796 958cd6bfc20b. passing nothing into accepts() is silly anyways.
49 lines
1.7 KiB
JavaScript
49 lines
1.7 KiB
JavaScript
|
|
var context = require('../context');
|
|
|
|
describe('ctx.acceptsCharsets()', function(){
|
|
describe('with no arguments', function(){
|
|
describe('when Accept-Charset is populated', function(){
|
|
it('should return accepted types', function(){
|
|
var ctx = context();
|
|
ctx.req.headers['accept-charset'] = 'utf-8, iso-8859-1;q=0.2, utf-7;q=0.5';
|
|
ctx.acceptsCharsets().should.eql(['utf-8', 'utf-7', 'iso-8859-1']);
|
|
})
|
|
})
|
|
})
|
|
|
|
describe('with multiple arguments', function(){
|
|
describe('when Accept-Charset is populated', function(){
|
|
describe('if any types match', function(){
|
|
it('should return the best fit', function(){
|
|
var ctx = context();
|
|
ctx.req.headers['accept-charset'] = 'utf-8, iso-8859-1;q=0.2, utf-7;q=0.5';
|
|
ctx.acceptsCharsets('utf-7', 'utf-8').should.equal('utf-8');
|
|
})
|
|
})
|
|
|
|
describe('if no types match', function(){
|
|
it('should return false', function(){
|
|
var ctx = context();
|
|
ctx.req.headers['accept-charset'] = 'utf-8, iso-8859-1;q=0.2, utf-7;q=0.5';
|
|
ctx.acceptsCharsets('utf-16').should.be.false;
|
|
})
|
|
})
|
|
})
|
|
|
|
describe('when Accept-Charset is not populated', function(){
|
|
it('should return the first type', function(){
|
|
var ctx = context();
|
|
ctx.acceptsCharsets('utf-7', 'utf-8').should.equal('utf-7');
|
|
})
|
|
})
|
|
})
|
|
|
|
describe('with an array', function(){
|
|
it('should return the best fit', function(){
|
|
var ctx = context();
|
|
ctx.req.headers['accept-charset'] = 'utf-8, iso-8859-1;q=0.2, utf-7;q=0.5';
|
|
ctx.acceptsCharsets(['utf-7', 'utf-8']).should.equal('utf-8');
|
|
})
|
|
})
|
|
})
|