Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🐛 Fix connect lock issues #1

Merged
merged 1 commit into from
Nov 17, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
71 changes: 71 additions & 0 deletions __tests__/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,29 @@ test('max retries: 0', done => maxRetriesTest(0, done));
test('max retries: 1', done => maxRetriesTest(1, done));
test('max retries: 5', done => maxRetriesTest(5, done));

test('reconnect after max retries', done => {
const ws = new ReconnectingWebSocket(URL, undefined, {
maxRetries: 1,
maxReconnectionDelay: 200,
});

let closed = false;
ws.addEventListener('error', () => {
if (ws.retryCount === 1 && !closed) {
const wss = new WebSocketServer({port: PORT});
ws.reconnect();
ws.addEventListener('open', () => {
wss.close(() => {
closed = true;
setTimeout(() => {
done();
}, 1000);
});
});
}
});
});

test('level0 event listeners are kept after reconnect', done => {
const ws = new ReconnectingWebSocket(URL, undefined, {
maxRetries: 4,
Expand Down Expand Up @@ -866,3 +889,51 @@ test('reconnect after closing', done => {
}
});
});

test('reconnect after closing during connection', done => {
const wss = new WebSocketServer({port: PORT});
const ws = new ReconnectingWebSocket(URL, undefined, {
minReconnectionDelay: 100,
maxReconnectionDelay: 200,
});

ws.close();
setTimeout(() => {
ws.reconnect();

ws.addEventListener('open', () => {
wss.close(() => {
setTimeout(() => {
done();
}, 1000);
});
});
}, 1000);
});

test('rapidly toggling connection', done => {
const wss = new WebSocketServer({port: PORT});
const ws = new ReconnectingWebSocket(URL, undefined, {
minReconnectionDelay: 100,
maxReconnectionDelay: 200,
});

ws.close();
ws.reconnect();
ws.close();
ws.reconnect();

let connections = 0;
wss.on('connection', () => {
connections++;
});

ws.addEventListener('open', () => {
wss.close(() => {
setTimeout(() => {
expect(connections).toBe(1);
done();
}, 1000);
});
});
});
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reedsy/reconnecting-websocket",
"version": "4.4.0-reedsy-1.0.0",
"version": "4.4.0-reedsy-1.0.1",

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we really want to have version with reedsy if the package is called @reedsy/reconnectiong-websocket?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it's nice: it encodes the upstream version we're on (which we can upgrade later if it also upgrades), and specifies our own internal reedsy version. It's what we're already doing in quill

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍 We do not use this in all forked packages I guess we should unify it then

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

how to install it?npm install @reedsy/[email protected],always fail,not found

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link

@FairyWorld FairyWorld Jan 9, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#1 (comment)

Method 1 is not available. I tried to install according to the configuration in the document, but still failed to install. Method 2 is OK, but it is troublesome to configure "@reedsy:registry=https://npm.pkg.github.com" and "github token" of. npmrc by the company owner。

According to the prompts in the figure below, the following configuration failed in the window system

image

"description": "Reconnecting WebSocket",
"main": "./dist/reconnecting-websocket-cjs.js",
"module": "./dist/reconnecting-websocket-mjs.js",
Expand Down
3 changes: 2 additions & 1 deletion reconnecting-websocket.ts
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,6 @@ export default class ReconnectingWebSocket {
if (this._connectLock || !this._shouldReconnect) {
return;
}
this._connectLock = true;

const {
maxRetries = DEFAULT.maxRetries,
Expand All @@ -364,6 +363,7 @@ export default class ReconnectingWebSocket {
return;
}

this._connectLock = true;
this._retryCount++;

this._debug('connect', this._retryCount);
Expand All @@ -376,6 +376,7 @@ export default class ReconnectingWebSocket {
.then(url => {
// close could be called before creating the ws
if (this._closeCalled) {
this._connectLock = false;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

They said to add this._connectLock = false in close also

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think they're incorrect, though. Adding it in the close() method adds a subtle bug. I've added a test case rapidly toggling connection to capture it. You should see if you do as they suggest, the test fails.

The issue is that if you set _connectLock = false in the close() method, you open up this case:

  1. Connect. We pass the _connectLock check, so we start a _wait()
  2. Now call close() which in this case sets _connectLock = false
  3. Call reconnect(), which internally calls _connect(). Now, since we've reset _connectLock = false in close(), we pass the _connect() _connectLock check again, and set up a second _wait(), while the first hasn't finished
  4. If we wait for these promises to resolve, we now create two WebSocket connections instead of one

return;
}
this._debug('connect', {url, protocols: this._protocols});
Expand Down