Skip to content

Commit cc4ee6c

Browse files
committed
test: deflake test-http-many-ended-pipelines
The socket might be destroyed by the other peer while data is still being written. Add the missing error handler. PR-URL: #38018 Fixes: #37291 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
1 parent 8d63aa8 commit cc4ee6c

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

test/parallel/test-http-many-ended-pipelines.js

+9
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121

2222
'use strict';
2323
const common = require('../common');
24+
const assert = require('assert');
2425
const http = require('http');
2526
const net = require('net');
2627

@@ -43,6 +44,14 @@ const server = http.createServer(function(req, res) {
4344
server.listen(0, function() {
4445
const client = net.connect({ port: this.address().port,
4546
allowHalfOpen: true });
47+
48+
client.on('error', function(err) {
49+
// The socket might be destroyed by the other peer while data is still
50+
// being written. The `'EPIPE'` and `'ECONNABORTED'` codes might also be
51+
// valid but they have not been seen yet.
52+
assert.strictEqual(err.code, 'ECONNRESET');
53+
});
54+
4655
for (let i = 0; i < numRequests; i++) {
4756
client.write('GET / HTTP/1.1\r\n' +
4857
'Host: some.host.name\r\n' +

0 commit comments

Comments
 (0)