forked from node-apn/node-apn
-
-
Notifications
You must be signed in to change notification settings - Fork 71
fix: Reconnect after receiving goaway #202
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
Open
ionutmanolache-okta
wants to merge
5
commits into
parse-community:master
Choose a base branch
from
ionutmanolache-okta:fix_reconnect_after_goaway
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
3d728af
fix: retry transient write failures after receiving goaway
ionutmanolache-okta 5a67c8a
fix: update session state management to handle closing state
ionutmanolache-okta 2f14c4e
chore: add methods to check session connection status for standard an…
ionutmanolache-okta 2796bf2
fix: update session closing state management to use private property
ionutmanolache-okta e9481de
chore: improve session health check conditions for standard and manag…
ionutmanolache-okta File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,4 +1,5 @@ | ||
| { | ||
| "esversion": 11, | ||
| "expr": true, | ||
| "strict": false, | ||
| "mocha": true, | ||
|
|
||
This file contains hidden or 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 hidden or 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,61 @@ | ||
| const { expect } = require('chai'); | ||
| const Client = require('../lib/client')({ | ||
| logger: { enabled: false, log: () => {} }, | ||
| errorLogger: { enabled: false, log: () => {} }, | ||
| config: () => ({}), | ||
| http2: { constants: {} }, | ||
| }); | ||
|
|
||
| describe('Client.isRequestRetryable', () => { | ||
| it('returns true for error.message starting with "apn write failed"', () => { | ||
| const error = { error: { message: 'apn write failed: socket hang up' } }; | ||
| expect(Client.isRequestRetryable(error)).to.be.true; | ||
| }); | ||
|
|
||
| it('returns false for error.message starting with "apn write timeout" (not retryable)', () => { | ||
| const error = { error: { message: 'apn write timeout: timed out' } }; | ||
| expect(Client.isRequestRetryable(error)).to.be.false; | ||
| }); | ||
|
|
||
| it('returns false for error.message starting with "apn write aborted" (not retryable)', () => { | ||
| const error = { error: { message: 'apn write aborted: aborted' } }; | ||
| expect(Client.isRequestRetryable(error)).to.be.false; | ||
| }); | ||
|
|
||
| it('returns false for error.message with other apn messages', () => { | ||
| const error = { error: { message: 'apn connection closed' } }; | ||
| expect(Client.isRequestRetryable(error)).to.be.false; | ||
| }); | ||
|
|
||
| it('returns false for null error.error', () => { | ||
| const error = { error: null }; | ||
| expect(Client.isRequestRetryable(error)).to.be.false; | ||
| }); | ||
|
|
||
| it('returns false for undefined error.error', () => { | ||
| const error = {}; | ||
| expect(Client.isRequestRetryable(error)).to.be.false; | ||
| }); | ||
|
|
||
| it('returns false for error.error.message not matching', () => { | ||
| const error = { error: { message: 'some other error' } }; | ||
| expect(Client.isRequestRetryable(error)).to.be.false; | ||
| }); | ||
|
|
||
| it('returns true for retryable status codes', () => { | ||
| [408, 429, 500, 502, 503, 504].forEach(status => { | ||
| expect(Client.isRequestRetryable({ status })).to.be.true; | ||
| }); | ||
| }); | ||
|
|
||
| it('returns true for ExpiredProviderToken', () => { | ||
| const error = { status: 403, error: { message: 'ExpiredProviderToken' } }; | ||
| expect(Client.isRequestRetryable(error)).to.be.true; | ||
| }); | ||
|
|
||
| it('returns false for non-retryable status codes', () => { | ||
| [200, 201, 400, 404, 401, 403].forEach(status => { | ||
| expect(Client.isRequestRetryable({ status })).to.be.false; | ||
| }); | ||
| }); | ||
| }); |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.