summaryrefslogtreecommitdiff
path: root/test/parallel/test-net-connect-options-path.js
blob: 927bd95207370d9794eeeb8afd62ae12c1aa2e3a (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
'use strict';
const common = require('../common');
const net = require('net');

// This file tests the option handling of net.connect,
// net.createConnect, and new Socket().connect

common.refreshTmpDir();

const CLIENT_VARIANTS = 12;

// Test connect(path)
{
  const prefix = `${common.PIPE}-net-connect-options-path`;
  const serverPath = `${prefix}-server`;
  let counter = 0;
  const server = net.createServer()
  .on('connection', common.mustCall(function(socket) {
    socket.end('ok');
  }, CLIENT_VARIANTS))
  .listen(serverPath, common.mustCall(function() {
    const getConnectCb = () => common.mustCall(function() {
      const client = this;
      client.end();
      client.on('close', common.mustCall(function() {
        counter++;
        if (counter === CLIENT_VARIANTS) {
          server.close();
        }
      }));
    });

    // CLIENT_VARIANTS depends on the following code
    net.connect(serverPath, getConnectCb());
    net.connect(serverPath)
      .on('connect', getConnectCb());
    net.createConnection(serverPath, getConnectCb());
    net.createConnection(serverPath)
      .on('connect', getConnectCb());
    new net.Socket().connect(serverPath, getConnectCb());
    new net.Socket().connect(serverPath)
      .on('connect', getConnectCb());
    net.connect({path: serverPath}, getConnectCb());
    net.connect({path: serverPath})
      .on('connect', getConnectCb());
    net.createConnection({path: serverPath}, getConnectCb());
    net.createConnection({path: serverPath})
      .on('connect', getConnectCb());
    new net.Socket().connect({path: serverPath}, getConnectCb());
    new net.Socket().connect({path: serverPath})
      .on('connect', getConnectCb());
  }));
}