-
Notifications
You must be signed in to change notification settings - Fork 21
fix(javascript): ensure requesters work as in v4 #823
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
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
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
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
9 changes: 9 additions & 0 deletions
9
clients/algoliasearch-client-javascript/packages/requester-browser-xhr/jest.config.ts
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,9 @@ | ||
import type { Config } from '@jest/types'; | ||
|
||
const config: Config.InitialOptions = { | ||
preset: 'ts-jest', | ||
roots: ['src/__tests__'], | ||
testEnvironment: 'jsdom', | ||
}; | ||
|
||
export default config; |
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
261 changes: 261 additions & 0 deletions
261
...ent-javascript/packages/requester-browser-xhr/src/__tests__/browser-xhr-requester.test.ts
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,261 @@ | ||
import http from 'http'; | ||
|
||
import type { EndRequest, Headers } from '@algolia/client-common'; | ||
import type { MockRequest, MockResponse } from 'xhr-mock'; | ||
import mock from 'xhr-mock'; | ||
|
||
import { createXhrRequester } from '../..'; | ||
|
||
const requester = createXhrRequester(); | ||
const BASE_URL = 'https://algolia-dns.net/foo?x-algolia-header=bar'; | ||
|
||
function getStringifiedBody( | ||
body: Record<string, any> = { foo: 'bar' } | ||
): string { | ||
return JSON.stringify(body); | ||
} | ||
|
||
const headers: Headers = { | ||
'content-type': 'text/plain', | ||
}; | ||
|
||
const timeoutRequest: EndRequest = { | ||
url: 'missing-url-here', | ||
data: '', | ||
headers: {}, | ||
method: 'GET', | ||
responseTimeout: 2000, | ||
connectTimeout: 1000, | ||
}; | ||
|
||
const requestStub: EndRequest = { | ||
url: BASE_URL, | ||
method: 'POST', | ||
headers, | ||
data: getStringifiedBody(), | ||
responseTimeout: 1000, | ||
connectTimeout: 2000, | ||
}; | ||
|
||
describe('status code handling', () => { | ||
beforeEach(() => mock.setup()); | ||
afterEach(() => mock.teardown()); | ||
|
||
it('sends requests', async () => { | ||
mock.post(BASE_URL, (req: MockRequest, res: MockResponse): MockResponse => { | ||
expect(req.method()).toEqual('POST'); | ||
expect(req.header('content-type')).toEqual('text/plain'); | ||
expect(req.body()).toEqual(JSON.stringify({ foo: 'bar' })); | ||
|
||
return res.status(200); | ||
}); | ||
|
||
await requester.send(requestStub); | ||
}); | ||
|
||
it('resolves status 200', async () => { | ||
const body = getStringifiedBody(); | ||
|
||
mock.post(BASE_URL, { | ||
status: 200, | ||
body: requestStub.data, | ||
}); | ||
|
||
const response = await requester.send(requestStub); | ||
|
||
expect(response.status).toBe(200); | ||
expect(response.content).toBe(body); | ||
expect(response.isTimedOut).toBe(false); | ||
}); | ||
|
||
it('resolves status 300', async () => { | ||
const reason = 'Multiple Choices'; | ||
|
||
mock.post(BASE_URL, { | ||
status: 300, | ||
reason, | ||
}); | ||
|
||
const response = await requester.send(requestStub); | ||
|
||
expect(response.status).toBe(300); | ||
expect(response.content).toBe(''); // No body returned here on xhr | ||
expect(response.isTimedOut).toBe(false); | ||
}); | ||
|
||
it('resolves status 400', async () => { | ||
const body = getStringifiedBody({ | ||
message: 'Invalid Application-Id or API-Key', | ||
}); | ||
|
||
mock.post(BASE_URL, { | ||
status: 400, | ||
body, | ||
}); | ||
|
||
const response = await requester.send(requestStub); | ||
|
||
expect(response.status).toBe(400); | ||
expect(response.content).toBe(body); | ||
expect(response.isTimedOut).toBe(false); | ||
}); | ||
|
||
it('handles the protocol', async () => { | ||
const body = getStringifiedBody(); | ||
|
||
mock.post('http://localhost/', { | ||
status: 200, | ||
body, | ||
}); | ||
|
||
const response = await requester.send({ | ||
...requestStub, | ||
url: 'http://localhost', | ||
}); | ||
|
||
expect(response.status).toBe(200); | ||
expect(response.content).toBe(body); | ||
expect(response.isTimedOut).toBe(false); | ||
}); | ||
}); | ||
|
||
describe('timeout handling', () => { | ||
let server: http.Server; | ||
// setup http server to test timeout | ||
beforeAll(() => { | ||
server = http.createServer(function (_req, res) { | ||
res.writeHead(200, { | ||
'content-type': 'text/plain', | ||
'access-control-allow-origin': '*', | ||
'x-powered-by': 'nodejs', | ||
}); | ||
|
||
res.write('{"foo":'); | ||
|
||
setTimeout(() => { | ||
res.write(' "bar"'); | ||
}, 1000); | ||
|
||
setTimeout(() => { | ||
res.write('}'); | ||
res.end(); | ||
}, 5000); | ||
}); | ||
|
||
server.listen('1111'); | ||
}); | ||
|
||
afterAll((done) => { | ||
server.close(() => done()); | ||
}); | ||
|
||
it('connection timeouts with the given 1 seconds connection timeout', async () => { | ||
const before = Date.now(); | ||
const response = await requester.send({ | ||
...timeoutRequest, | ||
connectTimeout: 1000, | ||
url: 'http://www.google.com:81', | ||
}); | ||
|
||
const now = Date.now(); | ||
|
||
expect(response.content).toBe('Connection timeout'); | ||
expect(now - before).toBeGreaterThan(999); | ||
expect(now - before).toBeLessThan(1200); | ||
}); | ||
|
||
it('connection timeouts with the given 2 seconds connection timeout', async () => { | ||
const before = Date.now(); | ||
const response = await requester.send({ | ||
...timeoutRequest, | ||
connectTimeout: 2000, | ||
url: 'http://www.google.com:81', | ||
}); | ||
|
||
const now = Date.now(); | ||
|
||
expect(response.content).toBe('Connection timeout'); | ||
expect(now - before).toBeGreaterThan(1990); | ||
expect(now - before).toBeLessThan(2200); | ||
}); | ||
|
||
it("socket timeouts if response don't appears before the timeout with 2 seconds timeout", async () => { | ||
const before = Date.now(); | ||
|
||
const response = await requester.send({ | ||
...timeoutRequest, | ||
responseTimeout: 2000, | ||
url: 'http://localhost:1111', | ||
}); | ||
|
||
const now = Date.now(); | ||
|
||
expect(response.content).toBe('Socket timeout'); | ||
expect(now - before).toBeGreaterThan(1990); | ||
expect(now - before).toBeLessThan(2200); | ||
}); | ||
|
||
it("socket timeouts if response don't appears before the timeout with 3 seconds timeout", async () => { | ||
const before = Date.now(); | ||
|
||
const response = await requester.send({ | ||
...timeoutRequest, | ||
responseTimeout: 3000, | ||
url: 'http://localhost:1111', | ||
}); | ||
|
||
const now = Date.now(); | ||
|
||
expect(response.content).toBe('Socket timeout'); | ||
expect(now - before).toBeGreaterThan(2999); | ||
expect(now - before).toBeLessThan(3200); | ||
}); | ||
|
||
it('do not timeouts if response appears before the timeout', async () => { | ||
const before = Date.now(); | ||
const response = await requester.send({ | ||
...requestStub, | ||
responseTimeout: 6000, | ||
url: 'http://localhost:1111', | ||
}); | ||
|
||
const now = Date.now(); | ||
|
||
expect(response.isTimedOut).toBe(false); | ||
expect(response.status).toBe(200); | ||
expect(response.content).toBe('{"foo": "bar"}'); | ||
expect(now - before).toBeGreaterThan(4999); | ||
expect(now - before).toBeLessThan(5200); | ||
}, 10000); // This is a long-running test, default server timeout is set to 5000ms | ||
}); | ||
|
||
describe('error handling', () => { | ||
it('resolves dns not found', async () => { | ||
const request: EndRequest = { | ||
url: 'https://this-dont-exist.algolia.com', | ||
method: 'POST', | ||
headers, | ||
data: getStringifiedBody(), | ||
responseTimeout: 2000, | ||
connectTimeout: 1000, | ||
}; | ||
|
||
const response = await requester.send(request); | ||
|
||
expect(response.status).toBe(0); | ||
expect(response.content).toBe('Network request failed'); | ||
expect(response.isTimedOut).toBe(false); | ||
}); | ||
|
||
it('resolves general network errors', async () => { | ||
mock.post(BASE_URL, () => | ||
Promise.reject(new Error('This is a general error')) | ||
); | ||
|
||
const response = await requester.send(requestStub); | ||
|
||
expect(response.status).toBe(0); | ||
expect(response.content).toBe('Network request failed'); | ||
expect(response.isTimedOut).toBe(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.