Skip to content

Commit

Permalink
fix: IncomingForm end event emitted twice (#852)
Browse files Browse the repository at this point in the history
* fix: IncomingForm end event emitted twice

* tests: add test for end emitted once

* tests: change old test

Co-authored-by: Cyril Walle <cyril.walle@protonmail.com>
  • Loading branch information
jimmyolo and GrosSacASac committed Apr 26, 2022
1 parent 21efa7d commit 92df3c8
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/Formidable.js
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,6 @@ class IncomingForm extends EventEmitter {
if (this._parser) {
this._parser.end();
}
this._maybeEnd();
});

return this;
Expand Down
57 changes: 57 additions & 0 deletions test/standalone/end-event-emitted-twice.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
import {strictEqual} from 'node:assert';
import { createServer } from 'node:http';
import { connect } from 'node:net';
import formidable from '../../src/index.js';

const PORT = 13539;

test('end event emitted twice', (done) => {
const server = createServer((req) => {
const form = formidable();

let i = 0;
form.on('end', () => {
i += 1;
strictEqual(i, 1, 'end should be emitted once');
});
form.parse(req, () => {

server.close();
strictEqual(i, 1, 'end should be emitted once');
done();
});
});

server.listen(PORT, 'localhost', () => {
const choosenPort = server.address().port;

const client = connect(choosenPort);

client.write(
`POST /api/upload HTTP/1.1
Host: localhost:${choosenPort}
User-Agent: N
Content-Type: multipart/form-data; boundary=---------------------------13068458571765726332503797717
-----------------------------13068458571765726332503797717
Content-Disposition: form-data; name="title"
a
-----------------------------13068458571765726332503797717
Content-Disposition: form-data; name="multipleFiles"; filename="x.txt"
Content-Type: application/x-javascript
a
b
c
d
-----------------------------13068458571765726332503797717--
`,
);
client.end();
});
});
3 changes: 1 addition & 2 deletions test/standalone/keep-alive-error.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,7 @@ test('keep alive error', (done) => {
clientTwo.end();

setTimeout(() => {
// ? yup, quite true, it makes sense to be 2
strictEqual(ok, 2, `should "ok" count === 2, has: ${ok}`);
strictEqual(ok, 1, `should "ok" count === 1, has: ${ok}`);

server.close();
done();
Expand Down

0 comments on commit 92df3c8

Please sign in to comment.