-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add connections to stats (opened, closed, attempted) (#174)
* Add connections to stats (opened, closed, attempted) * Rename connections->connects * Also keep track of server connections * Fix server opened + no server attempted + split out client and server stats
- Loading branch information
Showing
3 changed files
with
84 additions
and
1 deletion.
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
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,58 @@ | ||
const test = require('brittle') | ||
const createTestnet = require('hyperdht/testnet') | ||
|
||
const Hyperswarm = require('..') | ||
|
||
test('connectionsOpened and connectionsClosed stats', async (t) => { | ||
const { bootstrap } = await createTestnet(3, t.teardown) | ||
|
||
const swarm1 = new Hyperswarm({ bootstrap }) | ||
const swarm2 = new Hyperswarm({ bootstrap }) | ||
|
||
const tOpen = t.test('Open connection') | ||
tOpen.plan(3) | ||
const tClose = t.test('Close connection') | ||
tClose.plan(4) | ||
|
||
t.teardown(async () => { | ||
await swarm1.destroy() | ||
await swarm2.destroy() | ||
}) | ||
|
||
swarm2.on('connection', (conn) => { | ||
conn.on('error', noop) | ||
|
||
tOpen.is(swarm2.stats.connects.client.opened, 1, 'opened connection is in stats') | ||
tOpen.is(swarm2.stats.connects.client.attempted, 1, 'attemped connection is in stats') | ||
tClose.is(swarm2.stats.connects.client.closed, 0, 'sanity check') | ||
|
||
conn.on('close', () => { | ||
tClose.is(swarm2.stats.connects.client.closed, 1, 'closed connection is in stats') | ||
}) | ||
|
||
conn.end() | ||
}) | ||
|
||
swarm1.on('connection', (conn) => { | ||
conn.on('error', () => noop) | ||
|
||
conn.on('open', () => { | ||
tOpen.is(swarm1.stats.connects.server.opened, 1, 'opened server connection is in stats') | ||
tClose.is(swarm1.stats.connects.server.closed, 0, 'Sanity check') | ||
}) | ||
|
||
conn.on('close', () => { | ||
tClose.is(swarm1.stats.connects.server.closed, 1, 'closed connections is in stats') | ||
}) | ||
|
||
conn.end() | ||
}) | ||
|
||
const topic = Buffer.alloc(32).fill('hello world') | ||
await swarm1.join(topic, { server: true, client: false }).flushed() | ||
swarm2.join(topic, { client: true, server: false }) | ||
|
||
await tClose | ||
}) | ||
|
||
function noop () {} |