Skip to content

Commit

Permalink
Merge f8a6abe into 5bfddd5
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacgr committed Oct 7, 2023
2 parents 5bfddd5 + f8a6abe commit 7f66241
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 3 deletions.
11 changes: 8 additions & 3 deletions src/client/protocol/base.js
Expand Up @@ -91,13 +91,18 @@ class JsonRpcClientProtocol {
this.connector.connect(this.server);
this.connector.setEncoding("utf8");
this.connector.on("connect", () => {
this.factory.remainingRetries = this.factory.options.retries;
this.listener = this.connector;
this.listen();
resolve(this.server);
});
this.connector.on("error", error => this._onConnectionFailed(error, resolve, reject));
this.connector.on("close", () => {
this.factory.emit("serverDisconnected");
this.connector.on("error", (error) =>
this._onConnectionFailed(error, resolve, reject)
);
this.connector.on("close", (hadError) => {
if (!hadError) {
this.factory.emit("serverDisconnected");
}
});
}

Expand Down
41 changes: 41 additions & 0 deletions tests/issues/#123-reconnect-after-serverDisconnected.test.js
@@ -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);
});

0 comments on commit 7f66241

Please sign in to comment.