aboutsummaryrefslogtreecommitdiff
path: root/test/parallel/test-tls-cipher-list.js
blob: f20a0a6a249aeda13a06776a1df6909c311c8de8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
'use strict';
const common = require('../common');

if (!common.hasCrypto) {
  console.log('1..0 # Skipped: missing crypto');
  return;
}

const assert = require('assert');
const spawn = require('child_process').spawn;
const defaultCoreList = require('constants').defaultCoreCipherList;

function doCheck(arg, check) {
  var out = '';
  var arg = arg.concat([
    '-pe',
    'require("constants").defaultCipherList'
  ]);
  spawn(process.execPath, arg, {}).
    on('error', common.fail).
    stdout.on('data', function(chunk) {
      out += chunk;
    }).on('end', function() {
      assert.equal(out.trim(), check);
    }).on('error', common.fail);
}

// test the default unmodified version
doCheck([], defaultCoreList);

// test the command line switch by itself
doCheck(['--tls-cipher-list=ABC'], 'ABC');