node/test/parallel/test-tls-cipher-list.js
Ruben Bridgewater f8763bb077
benchmark,doc,lib,test: capitalize comments
PR-URL: https://github.com/nodejs/node/pull/26483
Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
2019-03-10 00:44:40 +01:00

31 lines
812 B
JavaScript

'use strict';
const common = require('../common');
if (!common.hasCrypto)
common.skip('missing crypto');
const assert = require('assert');
const spawn = require('child_process').spawn;
const defaultCoreList = require('crypto').constants.defaultCoreCipherList;
function doCheck(arg, check) {
let out = '';
arg = arg.concat([
'-pe',
'require("crypto").constants.defaultCipherList'
]);
spawn(process.execPath, arg, {})
.on('error', common.mustNotCall())
.stdout.on('data', function(chunk) {
out += chunk;
}).on('end', function() {
assert.strictEqual(out.trim(), check);
}).on('error', common.mustNotCall());
}
// Test the default unmodified version
doCheck([], defaultCoreList);
// Test the command line switch by itself
doCheck(['--tls-cipher-list=ABC'], 'ABC');