-
-
Notifications
You must be signed in to change notification settings - Fork 683
/
Copy pathend-event-emitted-twice.test.js
63 lines (57 loc) · 1.44 KB
/
end-event-emitted-twice.test.js
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
import {strictEqual} from 'node:assert';
import { createServer, request } from 'node:http';
import formidable from '../../src/index.js';
import test from 'node:test';
const PORT = 13539;
test('end event emitted twice', (t,done) => {
const server = createServer((req, res) => {
const form = formidable();
let i = 0;
form.on('end', () => {
i += 1;
strictEqual(i, 1, 'end should be emitted once (on end)');
});
form.parse(req, () => {
try {
strictEqual(i, 1, 'end should be emitted once (callback)');
} catch (e) {
done(e);
}
res.writeHead(200);
res.end("ok")
});
});
server.listen(PORT, () => {
const chosenPort = server.address().port;
const body = `----13068458571765726332503797717\r
Content-Disposition: form-data; name="title"\r
\r
a\r
----13068458571765726332503797717\r
Content-Disposition: form-data; name="multipleFiles"; filename="x.txt"\r
Content-Type: application/x-javascript\r
\r
\r
\r
a\r
b\r
c\r
d\r
\r
----13068458571765726332503797717--\r
`;
fetch(String(new URL(`http:localhost:${chosenPort}/`)), {
method: 'POST',
headers: {
'Content-Length': body.length,
Host: `localhost:${chosenPort}`,
'Content-Type': 'multipart/form-data; boundary=--13068458571765726332503797717',
},
body
}).then(res => {
strictEqual(res.status, 200);
server.close();
done();
});
});
});