-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: add internal/socket_list tests
PR-URL: #12109 Reviewed-By: James M Snell <[email protected]>
- Loading branch information
1 parent
7cc68e2
commit 01073bc
Showing
2 changed files
with
181 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
// Flags: --expose-internals | ||
'use strict'; | ||
|
||
const common = require('../common'); | ||
const assert = require('assert'); | ||
const EventEmitter = require('events'); | ||
const SocketListReceive = require('internal/socket_list').SocketListReceive; | ||
|
||
const key = 'test-key'; | ||
|
||
// Verify that the message won't be sent when slave is not connected. | ||
{ | ||
const slave = Object.assign(new EventEmitter(), { | ||
connected: false, | ||
send: common.mustNotCall() | ||
}); | ||
|
||
const list = new SocketListReceive(slave, key); | ||
list.slave.emit('internalMessage', { key, cmd: 'NODE_SOCKET_NOTIFY_CLOSE' }); | ||
} | ||
|
||
// Verify that a "NODE_SOCKET_ALL_CLOSED" message will be sent. | ||
{ | ||
const slave = Object.assign(new EventEmitter(), { | ||
connected: true, | ||
send: common.mustCall((msg) => { | ||
assert.strictEqual(msg.cmd, 'NODE_SOCKET_ALL_CLOSED'); | ||
assert.strictEqual(msg.key, key); | ||
}) | ||
}); | ||
|
||
const list = new SocketListReceive(slave, key); | ||
list.slave.emit('internalMessage', { key, cmd: 'NODE_SOCKET_NOTIFY_CLOSE' }); | ||
} | ||
|
||
// Verify that a "NODE_SOCKET_COUNT" message will be sent. | ||
{ | ||
const slave = Object.assign(new EventEmitter(), { | ||
connected: true, | ||
send: common.mustCall((msg) => { | ||
assert.strictEqual(msg.cmd, 'NODE_SOCKET_COUNT'); | ||
assert.strictEqual(msg.key, key); | ||
assert.strictEqual(msg.count, 0); | ||
}) | ||
}); | ||
|
||
const list = new SocketListReceive(slave, key); | ||
list.slave.emit('internalMessage', { key, cmd: 'NODE_SOCKET_GET_COUNT' }); | ||
} | ||
|
||
// Verify that the connections count is added and an "empty" event | ||
// will be emitted when all sockets in obj were closed. | ||
{ | ||
const slave = new EventEmitter(); | ||
const obj = { socket: new EventEmitter() }; | ||
|
||
const list = new SocketListReceive(slave, key); | ||
assert.strictEqual(list.connections, 0); | ||
|
||
list.add(obj); | ||
assert.strictEqual(list.connections, 1); | ||
|
||
list.on('empty', common.mustCall((self) => assert.strictEqual(self, list))); | ||
|
||
obj.socket.emit('close'); | ||
assert.strictEqual(list.connections, 0); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
// Flags: --expose-internals | ||
'use strict'; | ||
|
||
const common = require('../common'); | ||
const assert = require('assert'); | ||
const EventEmitter = require('events'); | ||
const SocketListSend = require('internal/socket_list').SocketListSend; | ||
|
||
const key = 'test-key'; | ||
|
||
// Verify that an error will be received in callback when slave is not | ||
// connected. | ||
{ | ||
const slave = Object.assign(new EventEmitter(), { connected: false }); | ||
assert.strictEqual(slave.listenerCount('internalMessage'), 0); | ||
|
||
const list = new SocketListSend(slave, 'test'); | ||
|
||
list._request('msg', 'cmd', common.mustCall((err) => { | ||
assert.strictEqual(err.message, 'Slave closed before reply'); | ||
assert.strictEqual(slave.listenerCount('internalMessage'), 0); | ||
})); | ||
} | ||
|
||
// Verify that the given message will be received in callback. | ||
{ | ||
const slave = Object.assign(new EventEmitter(), { | ||
connected: true, | ||
send: function(msg) { | ||
process.nextTick(() => | ||
this.emit('internalMessage', { key, cmd: 'cmd' }) | ||
); | ||
} | ||
}); | ||
|
||
const list = new SocketListSend(slave, key); | ||
|
||
list._request('msg', 'cmd', common.mustCall((err, msg) => { | ||
assert.strictEqual(err, null); | ||
assert.strictEqual(msg.cmd, 'cmd'); | ||
assert.strictEqual(msg.key, key); | ||
assert.strictEqual(slave.listenerCount('internalMessage'), 0); | ||
assert.strictEqual(slave.listenerCount('disconnect'), 0); | ||
})); | ||
} | ||
|
||
// Verify that an error will be received in callback when slave was | ||
// disconnected. | ||
{ | ||
const slave = Object.assign(new EventEmitter(), { | ||
connected: true, | ||
send: function(msg) { process.nextTick(() => this.emit('disconnect')); } | ||
}); | ||
|
||
const list = new SocketListSend(slave, key); | ||
|
||
list._request('msg', 'cmd', common.mustCall((err) => { | ||
assert.strictEqual(err.message, 'Slave closed before reply'); | ||
assert.strictEqual(slave.listenerCount('internalMessage'), 0); | ||
})); | ||
} | ||
|
||
// Verify that a "NODE_SOCKET_ALL_CLOSED" message will be received | ||
// in callback. | ||
{ | ||
const slave = Object.assign(new EventEmitter(), { | ||
connected: true, | ||
send: function(msg) { | ||
assert.strictEqual(msg.cmd, 'NODE_SOCKET_NOTIFY_CLOSE'); | ||
assert.strictEqual(msg.key, key); | ||
process.nextTick(() => | ||
this.emit('internalMessage', { key, cmd: 'NODE_SOCKET_ALL_CLOSED' }) | ||
); | ||
} | ||
}); | ||
|
||
const list = new SocketListSend(slave, key); | ||
|
||
list.close(common.mustCall((err, msg) => { | ||
assert.strictEqual(err, null); | ||
assert.strictEqual(msg.cmd, 'NODE_SOCKET_ALL_CLOSED'); | ||
assert.strictEqual(msg.key, key); | ||
assert.strictEqual(slave.listenerCount('internalMessage'), 0); | ||
assert.strictEqual(slave.listenerCount('disconnect'), 0); | ||
})); | ||
} | ||
|
||
// Verify that the count of connections will be received in callback. | ||
{ | ||
const count = 1; | ||
const slave = Object.assign(new EventEmitter(), { | ||
connected: true, | ||
send: function(msg) { | ||
assert.strictEqual(msg.cmd, 'NODE_SOCKET_GET_COUNT'); | ||
assert.strictEqual(msg.key, key); | ||
process.nextTick(() => | ||
this.emit('internalMessage', { | ||
key, | ||
count, | ||
cmd: 'NODE_SOCKET_COUNT' | ||
}) | ||
); | ||
} | ||
}); | ||
|
||
const list = new SocketListSend(slave, key); | ||
|
||
list.getConnections(common.mustCall((err, msg) => { | ||
assert.strictEqual(err, null); | ||
assert.strictEqual(msg, count); | ||
assert.strictEqual(slave.listenerCount('internalMessage'), 0); | ||
assert.strictEqual(slave.listenerCount('disconnect'), 0); | ||
})); | ||
} |