mirror of
https://github.com/zebrajr/express.git
synced 2025-12-06 12:19:51 +01:00
48 lines
1.1 KiB
JavaScript
48 lines
1.1 KiB
JavaScript
|
|
var express = require('../')
|
|
, request = require('supertest');
|
|
|
|
describe('res', function(){
|
|
describe('.attachment()', function(){
|
|
it('should Content-Disposition to attachment', function(done){
|
|
var app = express();
|
|
|
|
app.use(function(req, res){
|
|
res.attachment().send('foo');
|
|
});
|
|
|
|
request(app)
|
|
.get('/')
|
|
.expect('Content-Disposition', 'attachment', done);
|
|
})
|
|
})
|
|
|
|
describe('.attachment(filename)', function(){
|
|
it('should add the filename param', function(done){
|
|
var app = express();
|
|
|
|
app.use(function(req, res){
|
|
res.attachment('/path/to/image.png');
|
|
res.send('foo');
|
|
});
|
|
|
|
request(app)
|
|
.get('/')
|
|
.expect('Content-Disposition', 'attachment; filename="image.png"', done);
|
|
})
|
|
|
|
it('should set the Content-Type', function(done){
|
|
var app = express();
|
|
|
|
app.use(function(req, res){
|
|
res.attachment('/path/to/image.png');
|
|
res.send('foo');
|
|
});
|
|
|
|
request(app)
|
|
.get('/')
|
|
.expect('Content-Type', 'image/png', done);
|
|
})
|
|
})
|
|
})
|