res.attachment.js — express Source File
Architecture documentation for res.attachment.js, a javascript file in the express codebase.
Entity Profile
Source Code
'use strict'
const { Buffer } = require('node:buffer');
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(Buffer.alloc(4, '.'))
});
request(app)
.get('/')
.expect('Content-Type', 'image/png', done);
})
})
describe('.attachment(utf8filename)', function(){
it('should add the filename and filename* params', function(done){
var app = express();
app.use(function(req, res){
res.attachment('/locales/日本語.txt');
res.send('japanese');
});
request(app)
.get('/')
.expect('Content-Disposition', 'attachment; filename="???.txt"; filename*=UTF-8\'\'%E6%97%A5%E6%9C%AC%E8%AA%9E.txt')
.expect(200, done);
})
it('should set the Content-Type', function(done){
var app = express();
app.use(function(req, res){
res.attachment('/locales/日本語.txt');
res.send('japanese');
});
request(app)
.get('/')
.expect('Content-Type', 'text/plain; charset=utf-8', done);
})
})
})
Source
Frequently Asked Questions
What does res.attachment.js do?
res.attachment.js is a source file in the express codebase, written in javascript.
Where is res.attachment.js in the architecture?
res.attachment.js is located at test/res.attachment.js (directory: test).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free