summaryrefslogtreecommitdiff
path: root/test/parallel/test-https-set-timeout-server.js
diff options
context:
space:
mode:
authorGibson Fahnestock <gib@uk.ibm.com>2017-01-08 13:19:00 +0000
committerGibson Fahnestock <gib@uk.ibm.com>2017-01-11 11:43:52 +0000
commit7a0e462f9facfff8ccd7b37eb5b65db1c2b2f55f (patch)
treea971102d320e17e6cb3d00c48fe708b2b86c8136 /test/parallel/test-https-set-timeout-server.js
parent1ef401ce92d6195878b9d041cc969612628f5852 (diff)
downloadandroid-node-v8-7a0e462f9facfff8ccd7b37eb5b65db1c2b2f55f.tar.gz
android-node-v8-7a0e462f9facfff8ccd7b37eb5b65db1c2b2f55f.tar.bz2
android-node-v8-7a0e462f9facfff8ccd7b37eb5b65db1c2b2f55f.zip
test: use eslint to fix var->const/let
Manually fix issues that eslint --fix couldn't do automatically. PR-URL: https://github.com/nodejs/node/pull/10685 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io>
Diffstat (limited to 'test/parallel/test-https-set-timeout-server.js')
-rw-r--r--test/parallel/test-https-set-timeout-server.js40
1 files changed, 20 insertions, 20 deletions
diff --git a/test/parallel/test-https-set-timeout-server.js b/test/parallel/test-https-set-timeout-server.js
index fbf16a0ce3..4cf999667d 100644
--- a/test/parallel/test-https-set-timeout-server.js
+++ b/test/parallel/test-https-set-timeout-server.js
@@ -11,9 +11,9 @@ const https = require('https');
const tls = require('tls');
const fs = require('fs');
-var tests = [];
+const tests = [];
-var serverOptions = {
+const serverOptions = {
key: fs.readFileSync(common.fixturesDir + '/keys/agent1-key.pem'),
cert: fs.readFileSync(common.fixturesDir + '/keys/agent1-cert.pem')
};
@@ -25,7 +25,7 @@ function test(fn) {
}
function run() {
- var fn = tests.shift();
+ const fn = tests.shift();
if (fn) {
console.log('# %s', fn.name);
fn(run);
@@ -35,11 +35,11 @@ function run() {
}
test(function serverTimeout(cb) {
- var server = https.createServer(serverOptions, function(req, res) {
+ const server = https.createServer(serverOptions, function(req, res) {
// just do nothing, we should get a timeout event.
});
server.listen(0, common.mustCall(function() {
- var s = server.setTimeout(50, common.mustCall(function(socket) {
+ const s = server.setTimeout(50, common.mustCall(function(socket) {
socket.destroy();
server.close();
cb();
@@ -62,9 +62,9 @@ test(function serverRequestTimeout(cb) {
}));
}
- var server = https.createServer(serverOptions, common.mustCall(handler));
+ const server = https.createServer(serverOptions, common.mustCall(handler));
server.listen(0, function() {
- var req = https.request({
+ const req = https.request({
port: this.address().port,
method: 'POST',
rejectUnauthorized: false
@@ -85,7 +85,7 @@ test(function serverResponseTimeout(cb) {
}));
}
- var server = https.createServer(serverOptions, common.mustCall(handler));
+ const server = https.createServer(serverOptions, common.mustCall(handler));
server.listen(0, function() {
https.get({
port: this.address().port,
@@ -100,7 +100,7 @@ test(function serverRequestNotTimeoutAfterEnd(cb) {
req.setTimeout(50, common.fail);
res.on('timeout', common.mustCall(function(socket) {}));
}
- var server = https.createServer(serverOptions, common.mustCall(handler));
+ const server = https.createServer(serverOptions, common.mustCall(handler));
server.on('timeout', function(socket) {
socket.destroy();
server.close();
@@ -115,11 +115,11 @@ test(function serverRequestNotTimeoutAfterEnd(cb) {
});
test(function serverResponseTimeoutWithPipeline(cb) {
- var caughtTimeout = '';
+ let caughtTimeout = '';
process.on('exit', function() {
assert.equal(caughtTimeout, '/2');
});
- var server = https.createServer(serverOptions, function(req, res) {
+ const server = https.createServer(serverOptions, function(req, res) {
res.setTimeout(50, function() {
caughtTimeout += req.url;
});
@@ -131,12 +131,12 @@ test(function serverResponseTimeoutWithPipeline(cb) {
cb();
});
server.listen(0, function() {
- var options = {
+ const options = {
port: this.address().port,
allowHalfOpen: true,
rejectUnauthorized: false
};
- var c = tls.connect(options, function() {
+ const c = tls.connect(options, function() {
c.write('GET /1 HTTP/1.1\r\nHost: localhost\r\n\r\n');
c.write('GET /2 HTTP/1.1\r\nHost: localhost\r\n\r\n');
c.write('GET /3 HTTP/1.1\r\nHost: localhost\r\n\r\n');
@@ -145,19 +145,19 @@ test(function serverResponseTimeoutWithPipeline(cb) {
});
test(function idleTimeout(cb) {
- var server = https.createServer(serverOptions,
- common.mustCall(function(req, res) {
- req.on('timeout', common.fail);
- res.on('timeout', common.fail);
- res.end();
- }));
+ const server = https.createServer(serverOptions,
+ common.mustCall(function(req, res) {
+ req.on('timeout', common.fail);
+ res.on('timeout', common.fail);
+ res.end();
+ }));
server.setTimeout(50, common.mustCall(function(socket) {
socket.destroy();
server.close();
cb();
}));
server.listen(0, function() {
- var options = {
+ const options = {
port: this.address().port,
allowHalfOpen: true,
rejectUnauthorized: false