Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2021-06-11 07:42:44 +0300
committerRich Trott <rtrott@gmail.com>2021-06-13 16:11:41 +0300
commit5b3587dbc64cc298701b62f8767d37976d57a451 (patch)
tree2cc02bc5608329ffec5f5aa5443db68543f36594 /test
parent174b191f70b5587c8e9005bca063a193a36a1352 (diff)
test: remove obsolete TLS test
The test involving melissadata.net was to make sure Node.js still tolerated ValiCert 1024-bit certs. It has been several years since melissadata.net used ValiCert as a root certificate and for that matter, we removed ValiCert in a4dbf45b5958d7be95d5aec8de934526c36a7b12 so it would have broken then if it was still using it. The test is no longer valid or needed and hasn't been for several years. PR-URL: https://github.com/nodejs/node/pull/39001 Reviewed-By: Zijian Liu <lxxyxzj@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Diffstat (limited to 'test')
-rw-r--r--test/internet/test-tls-connnect-melissadata.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/internet/test-tls-connnect-melissadata.js b/test/internet/test-tls-connnect-melissadata.js
deleted file mode 100644
index ab5aa395093..00000000000
--- a/test/internet/test-tls-connnect-melissadata.js
+++ /dev/null
@@ -1,13 +0,0 @@
-'use strict';
-// Test for authorized access to the server which has a cross root
-// certification between Starfield Class 2 and ValiCert Class 2
-
-const common = require('../common');
-if (!common.hasCrypto)
- common.skip('missing crypto');
-
-const tls = require('tls');
-const socket = tls.connect(443, 'address.melissadata.net', function() {
- socket.resume();
- socket.destroy();
-});