Skip to content

Commit aaa9a56

Browse files
allenlucegr2m
authored andcommitted
fix: use aborted property on http request (#1134)
I had some difficulty with this code: httpRequest.on('timeout', function () { trackFailure('timeout') httpRequest.abort() }) httpRequest.on('error', function (err) { // Count error if request wasn't aborted due to timeout if (!httpRequest.aborted) { trackFailure(err) } callback(err) } When `nock` was not in use, `trackFailure()` would be called once on timeout. With `nock` enabled, `trackFailure()` would be called twice because `httpRequest.aborted` would be undefined. This change creates and uses the `aborted` property in the same fashion as the system `http` module.
1 parent e933b3a commit aaa9a56

File tree

1 file changed

+11
-12
lines changed

1 file changed

+11
-12
lines changed

lib/request_overrider.js

+11-12
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,6 @@ function RequestOverrider(req, options, interceptors, remove, cb) {
8888
}
8989

9090
var requestBodyBuffers = [],
91-
aborted,
9291
emitError,
9392
end,
9493
ended,
@@ -130,7 +129,7 @@ function RequestOverrider(req, options, interceptors, remove, cb) {
130129

131130
req.write = function(buffer, encoding, callback) {
132131
debug('write', arguments);
133-
if (!aborted) {
132+
if (!req.aborted) {
134133
if (buffer) {
135134
if (!Buffer.isBuffer(buffer)) {
136135
buffer = Buffer.from(buffer, encoding);
@@ -154,7 +153,7 @@ function RequestOverrider(req, options, interceptors, remove, cb) {
154153

155154
req.end = function(buffer, encoding, callback) {
156155
debug('req.end');
157-
if (!aborted && !ended) {
156+
if (!req.aborted && !ended) {
158157
req.write(buffer, encoding, function () {
159158
if (typeof callback === 'function') {
160159
callback();
@@ -164,27 +163,27 @@ function RequestOverrider(req, options, interceptors, remove, cb) {
164163
req.emit('end');
165164
});
166165
}
167-
if (aborted) {
166+
if (req.aborted) {
168167
emitError(new Error('Request aborted'));
169168
}
170169
};
171170

172171
req.flushHeaders = function() {
173172
debug('req.flushHeaders');
174-
if (!aborted && !ended) {
173+
if (!req.aborted && !ended) {
175174
end(cb);
176175
}
177-
if (aborted) {
176+
if (req.aborted) {
178177
emitError(new Error('Request aborted'));
179178
}
180179
};
181180

182181
req.abort = function() {
183-
if (aborted) {
182+
if (req.aborted) {
184183
return;
185184
}
186185
debug('req.abort');
187-
aborted = true;
186+
req.aborted = Date.now();
188187
if (!ended) {
189188
end();
190189
}
@@ -456,7 +455,7 @@ function RequestOverrider(req, options, interceptors, remove, cb) {
456455
remove(interceptor);
457456
interceptor.discard();
458457

459-
if (aborted) { return; }
458+
if (req.aborted) { return; }
460459

461460
/// response.client.authorized = true
462461
/// fixes https://github.com/pgte/nock/issues/158
@@ -493,7 +492,7 @@ function RequestOverrider(req, options, interceptors, remove, cb) {
493492

494493
function respond() {
495494

496-
if (aborted) { return; }
495+
if (req.aborted) { return; }
497496

498497
if (interceptor.socketDelayInMs && interceptor.socketDelayInMs > 0) {
499498
req.socket.applyDelay(interceptor.socketDelayInMs);
@@ -507,7 +506,7 @@ function RequestOverrider(req, options, interceptors, remove, cb) {
507506
}
508507

509508
function _respond() {
510-
if (aborted) { return; }
509+
if (req.aborted) { return; }
511510

512511
debug('emitting response');
513512

@@ -516,7 +515,7 @@ function RequestOverrider(req, options, interceptors, remove, cb) {
516515
cb(response);
517516
}
518517

519-
if (aborted) {
518+
if (req.aborted) {
520519
emitError(new Error('Request aborted'));
521520
}
522521
else {

0 commit comments

Comments
 (0)