summaryrefslogtreecommitdiff
path: root/test/parallel/test-tls-alpn-server-client.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-tls-alpn-server-client.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-tls-alpn-server-client.js')
-rw-r--r--test/parallel/test-tls-alpn-server-client.js76
1 files changed, 38 insertions, 38 deletions
diff --git a/test/parallel/test-tls-alpn-server-client.js b/test/parallel/test-tls-alpn-server-client.js
index 0da2086f4d..ca5785b09a 100644
--- a/test/parallel/test-tls-alpn-server-client.js
+++ b/test/parallel/test-tls-alpn-server-client.js
@@ -24,7 +24,7 @@ function loadPEM(n) {
return fs.readFileSync(filenamePEM(n));
}
-var serverIP = common.localhostIPv4;
+const serverIP = common.localhostIPv4;
function checkResults(result, expected) {
assert.strictEqual(result.server.ALPN, expected.server.ALPN);
@@ -36,9 +36,9 @@ function checkResults(result, expected) {
function runTest(clientsOptions, serverOptions, cb) {
serverOptions.key = loadPEM('agent2-key');
serverOptions.cert = loadPEM('agent2-cert');
- var results = [];
- var index = 0;
- var server = tls.createServer(serverOptions, function(c) {
+ const results = [];
+ let index = 0;
+ const server = tls.createServer(serverOptions, function(c) {
results[index].server = {ALPN: c.alpnProtocol, NPN: c.npnProtocol};
});
@@ -47,13 +47,13 @@ function runTest(clientsOptions, serverOptions, cb) {
});
function connectClient(options) {
- var opt = options.shift();
+ const opt = options.shift();
opt.port = server.address().port;
opt.host = serverIP;
opt.rejectUnauthorized = false;
results[index] = {};
- var client = tls.connect(opt, function() {
+ const client = tls.connect(opt, function() {
results[index].client = {ALPN: client.alpnProtocol,
NPN: client.npnProtocol};
client.destroy();
@@ -71,12 +71,12 @@ function runTest(clientsOptions, serverOptions, cb) {
// Server: ALPN/NPN, Client: ALPN/NPN
function Test1() {
- var serverOptions = {
+ const serverOptions = {
ALPNProtocols: ['a', 'b', 'c'],
NPNProtocols: ['a', 'b', 'c']
};
- var clientsOptions = [{
+ const clientsOptions = [{
ALPNProtocols: ['a', 'b', 'c'],
NPNProtocols: ['a', 'b', 'c']
}, {
@@ -107,12 +107,12 @@ function Test1() {
// Server: ALPN/NPN, Client: ALPN
function Test2() {
- var serverOptions = {
+ const serverOptions = {
ALPNProtocols: ['a', 'b', 'c'],
NPNProtocols: ['a', 'b', 'c']
};
- var clientsOptions = [{
+ const clientsOptions = [{
ALPNProtocols: ['a', 'b', 'c']
}, {
ALPNProtocols: ['c', 'b', 'e']
@@ -140,12 +140,12 @@ function Test2() {
// Server: ALPN/NPN, Client: NPN
function Test3() {
- var serverOptions = {
+ const serverOptions = {
ALPNProtocols: ['a', 'b', 'c'],
NPNProtocols: ['a', 'b', 'c']
};
- var clientsOptions = [{
+ const clientsOptions = [{
NPNProtocols: ['a', 'b', 'c']
}, {
NPPNProtocols: ['c', 'b', 'e']
@@ -173,12 +173,12 @@ function Test3() {
// Server: ALPN/NPN, Client: Nothing
function Test4() {
- var serverOptions = {
+ const serverOptions = {
ALPNProtocols: ['a', 'b', 'c'],
NPNProtocols: ['a', 'b', 'c']
};
- var clientsOptions = [{}, {}, {}];
+ const clientsOptions = [{}, {}, {}];
runTest(clientsOptions, serverOptions, function(results) {
// nothing is selected by ALPN
@@ -200,11 +200,11 @@ function Test4() {
// Server: ALPN, Client: ALPN/NPN
function Test5() {
- var serverOptions = {
+ const serverOptions = {
ALPNProtocols: ['a', 'b', 'c']
};
- var clientsOptions = [{
+ const clientsOptions = [{
ALPNProtocols: ['a', 'b', 'c'],
NPNProtocols: ['a', 'b', 'c']
}, {
@@ -233,11 +233,11 @@ function Test5() {
// Server: ALPN, Client: ALPN
function Test6() {
- var serverOptions = {
+ const serverOptions = {
ALPNProtocols: ['a', 'b', 'c']
};
- var clientsOptions = [{
+ const clientsOptions = [{
ALPNProtocols: ['a', 'b', 'c']
}, {
ALPNProtocols: ['c', 'b', 'e']
@@ -262,11 +262,11 @@ function Test6() {
// Server: ALPN, Client: NPN
function Test7() {
- var serverOptions = {
+ const serverOptions = {
ALPNProtocols: ['a', 'b', 'c']
};
- var clientsOptions = [{
+ const clientsOptions = [{
NPNProtocols: ['a', 'b', 'c']
}, {
NPNProtocols: ['c', 'b', 'e']
@@ -292,11 +292,11 @@ function Test7() {
// Server: ALPN, Client: Nothing
function Test8() {
- var serverOptions = {
+ const serverOptions = {
ALPNProtocols: ['a', 'b', 'c']
};
- var clientsOptions = [{}, {}, {}];
+ const clientsOptions = [{}, {}, {}];
runTest(clientsOptions, serverOptions, function(results) {
// nothing is selected by ALPN
@@ -316,11 +316,11 @@ function Test8() {
// Server: NPN, Client: ALPN/NPN
function Test9() {
- var serverOptions = {
+ const serverOptions = {
NPNProtocols: ['a', 'b', 'c']
};
- var clientsOptions = [{
+ const clientsOptions = [{
ALPNrotocols: ['a', 'b', 'c'],
NPNProtocols: ['a', 'b', 'c']
}, {
@@ -349,11 +349,11 @@ function Test9() {
// Server: NPN, Client: ALPN
function Test10() {
- var serverOptions = {
+ const serverOptions = {
NPNProtocols: ['a', 'b', 'c']
};
- var clientsOptions = [{
+ const clientsOptions = [{
ALPNProtocols: ['a', 'b', 'c']
}, {
ALPNProtocols: ['c', 'b', 'e']
@@ -378,11 +378,11 @@ function Test10() {
// Server: NPN, Client: NPN
function Test11() {
- var serverOptions = {
+ const serverOptions = {
NPNProtocols: ['a', 'b', 'c']
};
- var clientsOptions = [{
+ const clientsOptions = [{
NPNProtocols: ['a', 'b', 'c']
}, {
NPNProtocols: ['c', 'b', 'e']
@@ -408,11 +408,11 @@ function Test11() {
// Server: NPN, Client: Nothing
function Test12() {
- var serverOptions = {
+ const serverOptions = {
NPNProtocols: ['a', 'b', 'c']
};
- var clientsOptions = [{}, {}, {}];
+ const clientsOptions = [{}, {}, {}];
runTest(clientsOptions, serverOptions, function(results) {
// nothing is selected
@@ -432,9 +432,9 @@ function Test12() {
// Server: Nothing, Client: ALPN/NPN
function Test13() {
- var serverOptions = {};
+ const serverOptions = {};
- var clientsOptions = [{
+ const clientsOptions = [{
ALPNrotocols: ['a', 'b', 'c'],
NPNProtocols: ['a', 'b', 'c']
}, {
@@ -463,9 +463,9 @@ function Test13() {
// Server: Nothing, Client: ALPN
function Test14() {
- var serverOptions = {};
+ const serverOptions = {};
- var clientsOptions = [{
+ const clientsOptions = [{
ALPNrotocols: ['a', 'b', 'c']
}, {
ALPNProtocols: ['c', 'b', 'e']
@@ -491,9 +491,9 @@ function Test14() {
// Server: Nothing, Client: NPN
function Test15() {
- var serverOptions = {};
+ const serverOptions = {};
- var clientsOptions = [{
+ const clientsOptions = [{
NPNProtocols: ['a', 'b', 'c']
}, {
NPNProtocols: ['c', 'b', 'e']
@@ -519,9 +519,9 @@ function Test15() {
// Server: Nothing, Client: Nothing
function Test16() {
- var serverOptions = {};
+ const serverOptions = {};
- var clientsOptions = [{}, {}, {}];
+ const clientsOptions = [{}, {}, {}];
runTest(clientsOptions, serverOptions, function(results) {
// nothing is selected