-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Call serverDisconnected only if connection was closed without error - it should otherwise be handled by the .on('error') event - Refs #123 * Reset the remainingRetries after a successful connection
- Loading branch information
Showing
2 changed files
with
49 additions
and
3 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
41 changes: 41 additions & 0 deletions
41
tests/issues/#123-reconnect-after-serverDisconnected.test.js
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,41 @@ | ||
const { expect } = require("chai"); | ||
const Jaysonic = require("../../src"); | ||
const { server } = require("../test-server"); | ||
const intercept = require("intercept-stdout"); | ||
|
||
const tcpclient = new Jaysonic.client.tcp({ | ||
retries: 10 | ||
}); | ||
|
||
describe("#123 Reconnect after serverDisconnected", () => { | ||
beforeEach(async () => { | ||
await server.listen(); | ||
}); | ||
afterEach(async () => { | ||
await tcpclient.end(); | ||
}); | ||
it("should attempt to reconnect at the default rate after receiving a serverDisconnected", async () => { | ||
let reconnectAttempts = 0; | ||
let capturedText = ""; | ||
const unhook = intercept((text) => { | ||
capturedText = text; | ||
}); | ||
tcpclient.serverDisconnected(async () => { | ||
reconnectAttempts = 1; | ||
tcpclient.pcolInstance = null; | ||
await tcpclient.connect(); | ||
}); | ||
await tcpclient.connect(); | ||
await server.close(); | ||
await new Promise((r) => setTimeout(r, 10000)); | ||
unhook(); | ||
// first re-connect attempt is done without error | ||
// second is done with error and does not trigger the serverDisconnected call | ||
// after which the test should timeout | ||
// 2 attempts, 5s apart 10s total | ||
expect(capturedText).to.equal( | ||
`Failed to connect. Address [127.0.0.1:8100]. Retrying. 9 attempts left.\nFailed to connect. Address [127.0.0.1:8100]. Retrying. 8 attempts left.\n` | ||
); | ||
expect(reconnectAttempts).to.equal(1); | ||
}).timeout(30000); | ||
}); |