summaryrefslogtreecommitdiff
path: root/test/parallel
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2019-11-26 15:48:26 -0800
committerRich Trott <rtrott@gmail.com>2019-11-28 22:41:13 -0800
commit99d1f6fea49e92bc3b3993d1f74ca9a8772c5d02 (patch)
tree91b9bc17435b76e7941c7a3e13c8414f540e6a75 /test/parallel
parent721076b0b9365f5f9e7c6882d28af912de7657a9 (diff)
downloadandroid-node-v8-99d1f6fea49e92bc3b3993d1f74ca9a8772c5d02.tar.gz
android-node-v8-99d1f6fea49e92bc3b3993d1f74ca9a8772c5d02.tar.bz2
android-node-v8-99d1f6fea49e92bc3b3993d1f74ca9a8772c5d02.zip
test: move test-https-server-consumed-timeout to parallel
Change the test to be robust in slow environments and move to parallel. The previous version of the test failed for me in parallel with just two or four simultaneous versions running. This version passes 96 simultaneous versions running, but still fails as designed if the request writes fail to prevent the request timeout from occurring. PR-URL: https://github.com/nodejs/node/pull/30677 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'test/parallel')
-rw-r--r--test/parallel/test-http-server-consumed-timeout.js86
1 files changed, 86 insertions, 0 deletions
diff --git a/test/parallel/test-http-server-consumed-timeout.js b/test/parallel/test-http-server-consumed-timeout.js
new file mode 100644
index 0000000000..865169ca01
--- /dev/null
+++ b/test/parallel/test-http-server-consumed-timeout.js
@@ -0,0 +1,86 @@
+'use strict';
+
+const common = require('../common');
+
+const assert = require('assert');
+const http = require('http');
+
+const durationBetweenIntervals = [];
+let timeoutTooShort = false;
+const TIMEOUT = common.platformTimeout(200);
+const INTERVAL = Math.floor(TIMEOUT / 8);
+
+runTest(TIMEOUT);
+
+function runTest(timeoutDuration) {
+ let intervalWasInvoked = false;
+ let newTimeoutDuration = 0;
+ const closeCallback = (err) => {
+ assert.ifError(err);
+ if (newTimeoutDuration) {
+ runTest(newTimeoutDuration);
+ }
+ };
+
+ const server = http.createServer((req, res) => {
+ server.close(common.mustCall(closeCallback));
+
+ res.writeHead(200);
+ res.flushHeaders();
+
+ req.setTimeout(timeoutDuration, () => {
+ if (!intervalWasInvoked) {
+ // Interval wasn't invoked, probably because the machine is busy with
+ // other things. Try again with a longer timeout.
+ newTimeoutDuration = timeoutDuration * 2;
+ console.error('The interval was not invoked.');
+ console.error(`Trying w/ timeout of ${newTimeoutDuration}.`);
+ return;
+ }
+
+ if (timeoutTooShort) {
+ intervalWasInvoked = false;
+ timeoutTooShort = false;
+ newTimeoutDuration =
+ Math.max(...durationBetweenIntervals, timeoutDuration) * 2;
+ console.error(`Time between intervals: ${durationBetweenIntervals}`);
+ console.error(`Trying w/ timeout of ${newTimeoutDuration}`);
+ return;
+ }
+
+ assert.fail('Request timeout should not fire');
+ });
+
+ req.resume();
+ req.once('end', () => {
+ res.end();
+ });
+ });
+
+ server.listen(0, common.mustCall(() => {
+ const req = http.request({
+ port: server.address().port,
+ method: 'POST'
+ }, () => {
+ let lastIntervalTimestamp = Date.now();
+ const interval = setInterval(() => {
+ const lastDuration = Date.now() - lastIntervalTimestamp;
+ durationBetweenIntervals.push(lastDuration);
+ lastIntervalTimestamp = Date.now();
+ if (lastDuration > timeoutDuration / 2) {
+ // The interval is supposed to be about 1/8 of the timeout duration.
+ // If it's running so infrequently that it's greater than 1/2 the
+ // timeout duration, then run the test again with a longer timeout.
+ timeoutTooShort = true;
+ }
+ intervalWasInvoked = true;
+ req.write('a');
+ }, INTERVAL);
+ setTimeout(() => {
+ clearInterval(interval);
+ req.end();
+ }, timeoutDuration);
+ });
+ req.write('.');
+ }));
+}