summaryrefslogtreecommitdiff
path: root/test/parallel/test-tls-socket-default-options.js
blob: 70f24ebf2b80efb6b8cddfa5423334bb5c71707d (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
'use strict';
const common = require('../common');
const assert = require('assert');

if (!common.hasCrypto) {
  common.skip('missing crypto');
  return;
}
const tls = require('tls');

const fs = require('fs');

const sent = 'hello world';

const serverOptions = {
  isServer: true,
  key: fs.readFileSync(common.fixturesDir + '/keys/agent1-key.pem'),
  cert: fs.readFileSync(common.fixturesDir + '/keys/agent1-cert.pem')
};

function testSocketOptions(socket, socketOptions) {
  let received = '';
  const server = tls.createServer(serverOptions, function(s) {
    s.on('data', function(chunk) {
      received += chunk;
    });

    s.on('end', function() {
      server.close();
      s.destroy();
      assert.equal(received, sent);
      setImmediate(runTests);
    });
  }).listen(common.PORT, function() {
    const c = new tls.TLSSocket(socket, socketOptions);
    c.connect(common.PORT, function() {
      c.end(sent);
    });
  });

}

const testArgs = [
  [],
  [undefined, {}]
];

let n = 0;
function runTests() {
  if (n++ < testArgs.length) {
    testSocketOptions.apply(null, testArgs[n]);
  }
}

runTests();