summaryrefslogtreecommitdiff
path: root/test/parallel/test-cluster-net-send.js
blob: 17d77171c5053453aa399dd6193ad028b6390a1f (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
var common = require('../common');
var assert = require('assert');
var fork = require('child_process').fork;
var net = require('net');

if (process.argv[2] !== 'child') {
  console.error('[%d] master', process.pid);

  var worker = fork(__filename, ['child']);
  var called = false;

  worker.once('message', function(msg, handle) {
    assert.equal(msg, 'handle');
    assert.ok(handle);
    worker.send('got');

    handle.on('data', function(data) {
      called = true;
      assert.equal(data.toString(), 'hello');
    });

    handle.on('end', function() {
      worker.kill();
    });
  });

  process.once('exit', function() {
    assert.ok(called);
  });
} else {
  console.error('[%d] worker', process.pid);

  var server = net.createServer(function(c) {
    process.once('message', function(msg) {
      assert.equal(msg, 'got');
      c.end('hello');
    });
  });
  server.listen(common.PORT, function() {
    var socket = net.connect(common.PORT, '127.0.0.1', function() {
      process.send('handle', socket);
    });
  });

  process.on('disconnect', function() {
    process.exit();
    server.close();
  });
}