-
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,net: add tests for server.connections
There were no tests confirming situations where server.connections should return `null`. Add a test for that situation. Expand existing server.connection test slightly to check value. Refactor (mostly spacing) code for server.connections setter. PR-URL: #10762 Reviewed-By: James M Snell <[email protected]>
- Loading branch information
Showing
3 changed files
with
56 additions
and
7 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
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,44 @@ | ||
'use strict'; | ||
const common = require('../common'); | ||
const assert = require('assert'); | ||
const fork = require('child_process').fork; | ||
const net = require('net'); | ||
|
||
if (process.argv[2] === 'child') { | ||
|
||
process.on('message', (msg, socket) => { | ||
socket.end('goodbye'); | ||
}); | ||
|
||
process.send('hello'); | ||
|
||
} else { | ||
|
||
const child = fork(process.argv[1], ['child']); | ||
|
||
const runTest = common.mustCall(() => { | ||
|
||
const server = net.createServer(); | ||
|
||
// server.connections should start as 0 | ||
assert.strictEqual(server.connections, 0); | ||
server.on('connection', (socket) => { | ||
child.send({what: 'socket'}, socket); | ||
}); | ||
server.on('close', () => { | ||
child.kill(); | ||
}); | ||
|
||
server.listen(0, common.mustCall(() => { | ||
const connect = net.connect(server.address().port); | ||
|
||
connect.on('close', common.mustCall(() => { | ||
// now server.connections should be null | ||
assert.strictEqual(server.connections, null); | ||
server.close(); | ||
})); | ||
})); | ||
}); | ||
|
||
child.on('message', runTest); | ||
} |
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 |
---|---|---|
@@ -1,12 +1,18 @@ | ||
'use strict'; | ||
require('../common'); | ||
const common = require('../common'); | ||
const assert = require('assert'); | ||
|
||
const net = require('net'); | ||
|
||
// test that server.connections property is no longer enumerable now that it | ||
// has been marked as deprecated | ||
|
||
const server = new net.Server(); | ||
|
||
const expectedWarning = 'Server.connections property is deprecated. ' + | ||
'Use Server.getConnections method instead.'; | ||
|
||
common.expectWarning('DeprecationWarning', expectedWarning); | ||
|
||
// test that server.connections property is no longer enumerable now that it | ||
// has been marked as deprecated | ||
assert.strictEqual(Object.keys(server).indexOf('connections'), -1); | ||
|
||
assert.strictEqual(server.connections, 0); |