forked from expressjs/express
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathResAttachment.mjs
78 lines (62 loc) · 1.85 KB
/
ResAttachment.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
'use strict'
import { describe, it } from 'node:test'
import express from '../lib/express.js'
import request from 'supertest'
describe('res', () => {
describe('.attachment()', () => {
it('should Content-Disposition to attachment', (t, done) => {
const app = express()
app.use((req, res) => {
res.attachment().send('foo')
})
request(app)
.get('/')
.expect('Content-Disposition', 'attachment', done)
})
})
describe('.attachment(filename)', () => {
it('should add the filename param', (t, done) => {
const app = express()
app.use((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', (t, done) => {
const app = express()
app.use((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)', () => {
it('should add the filename and filename* params', (t, done) => {
const app = express()
app.use((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', (t, done) => {
const app = express()
app.use((req, res) => {
res.attachment('/locales/日本語.txt')
res.send('japanese')
})
request(app)
.get('/')
.expect('Content-Type', 'text/plain; charset=utf-8', done)
})
})
})