Skip to content

Commit

Permalink
test: refactor test after review
Browse files Browse the repository at this point in the history
PR-URL: nodejs#18999
Reviewed-By: Shingo Inoue <[email protected]>
Reviewed-By: Matteo Collina <[email protected]>
Reviewed-By: James M Snell <[email protected]>
  • Loading branch information
billywhizz authored and jasnell committed Aug 17, 2018
1 parent 33cd733 commit b80c59b
Showing 1 changed file with 12 additions and 20 deletions.
32 changes: 12 additions & 20 deletions test/parallel/test-http-client-spurious-aborted.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,37 +3,26 @@
const common = require('../common');
const http = require('http');
const assert = require('assert');
const fs = require('fs');
const { Writable } = require('stream');
const Countdown = require('../common/countdown');

function cleanup(fname) {
try {
if (fs.statSync(fname)) fs.unlinkSync(fname);
} catch (err) {}
}

const N = 2;
const fname = '/dev/null';
let abortRequest = true;

const server = http.Server(common.mustCall((req, res) => {
const headers = { 'Content-Type': 'text/plain' };
headers['Content-Length'] = 50;
const socket = res.socket;
res.writeHead(200, headers);
setTimeout(() => res.write('aaaaaaaaaa'), 100);
setTimeout(() => res.write('bbbbbbbbbb'), 200);
setTimeout(() => res.write('cccccccccc'), 300);
setTimeout(() => res.write('dddddddddd'), 400);
res.write('aaaaaaaaaabbbbbbbbbbccccccccccdddddddddd');
if (abortRequest) {
setTimeout(() => socket.destroy(), 600);
process.nextTick(() => socket.destroy());
} else {
setTimeout(() => res.end('eeeeeeeeee'), 1000);
process.nextTick(() => res.end('eeeeeeeeee'));
}
}, N));

server.listen(0, common.mustCall(() => {
cleanup(fname);
download();
}));

Expand All @@ -53,13 +42,17 @@ function download() {
assert.strictEqual(res.statusCode, 200);
assert.strictEqual(res.headers.connection, 'close');
let aborted = false;
const fstream = fs.createWriteStream(fname);
res.pipe(fstream);
const writable = new Writable({
write(chunk, encoding, callback) {
callback();
}
});
res.pipe(writable);
const _handle = res.socket._handle;
_handle._close = res.socket._handle.close;
_handle.close = function(callback) {
_handle._close();
// set readable to true event though request is complete
// set readable to true even though request is complete
if (res.complete) res.readable = true;
callback();
};
Expand All @@ -70,9 +63,8 @@ function download() {
aborted = true;
});
res.on('error', common.mustNotCall());
fstream.on('finish', () => {
writable.on('finish', () => {
assert.strictEqual(aborted, abortRequest);
cleanup(fname);
finishCountdown.dec();
if (finishCountdown.remaining === 0) return;
abortRequest = false; // next one should be a good response
Expand Down

0 comments on commit b80c59b

Please sign in to comment.