blob: c25ccdd16f965af44237c60823ace4800760ff32 (
plain)
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
|
'use strict'
const { test } = require('tap')
const Dicer = require('../deps/dicer/lib/Dicer')
test('dicer-malformed-header', t => {
t.plan(1)
t.test('should gracefully handle headers with leading whitespace', t => {
t.plan(3)
const d = new Dicer({ boundary: '----WebKitFormBoundaryoo6vortfDzBsDiro' })
d.on('part', function (p) {
p.on('header', function (header) {
t.hasProp(header, ' content-disposition')
t.strictSame(header[' content-disposition'], ['form-data; name="bildbeschreibung"'])
})
p.on('data', function (data) {
})
p.on('end', function () {
})
})
d.on('finish', function () {
t.pass()
})
d.write(Buffer.from('------WebKitFormBoundaryoo6vortfDzBsDiro\r\n Content-Disposition: form-data; name="bildbeschreibung"\r\n\r\n\r\n------WebKitFormBoundaryoo6vortfDzBsDiro--'))
})
})
|