express/test/req.acceptsEncoding.js
2016-11-18 13:47:28 -05:00

37 lines
850 B
JavaScript

var express = require('../')
, request = require('supertest');
describe('req', function(){
describe('.acceptsEncoding', function(){
it('should be true if encoding accepted', function(done){
var app = express();
app.use(function(req, res){
req.acceptsEncoding('gzip').should.be.ok;
req.acceptsEncoding('deflate').should.be.ok;
res.end();
});
request(app)
.get('/')
.set('Accept-Encoding', ' gzip, deflate')
.expect(200, done);
})
it('should be false if encoding not accepted', function(done){
var app = express();
app.use(function(req, res){
req.acceptsEncoding('bogus').should.not.be.ok;
res.end();
});
request(app)
.get('/')
.set('Accept-Encoding', ' gzip, deflate')
.expect(200, done);
})
})
})