-
-
Notifications
You must be signed in to change notification settings - Fork 683
/
Copy pathcreateDirsFromUploads.test.js
65 lines (59 loc) · 1.59 KB
/
createDirsFromUploads.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
64
65
import {strictEqual, deepEqual} from 'node:assert';
import { createServer, request } from 'node:http';
import formidable from '../../src/index.js';
import test from 'node:test';
import fs from 'node:fs';
const PORT = 13539;
const uploads = './uploads';
test('folder created', (t,done) => {
const server = createServer((req, res) => {
const form = formidable({
createDirsFromUploads: true,
uploadDir: uploads,
filename: (x) => {
return 'x/y/z.txt'
}
});
form.parse(req, () => {
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 => {
//may also contain tests from other tests
deepEqual(fs.readdirSync(uploads).includes('x'), true);
deepEqual(fs.readdirSync(`${uploads}/x`), ['y']);
deepEqual(fs.readdirSync(`${uploads}/x/y`), ['z.txt']);
strictEqual(res.status, 200);
server.close();
done();
});
});
});