-
Notifications
You must be signed in to change notification settings - Fork 579
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 fetch parameters not being applied correctly #1870
Merged
+49
−34
Merged
Changes from 4 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
8f16b85
Fix default fetch parameters
xconverge 0a666a2
Preserve existing behavior with 300 second timeout if not defined
xconverge db67229
Add test for 300 second timeout as default
xconverge 2c0caef
Cleanup old unused tests
xconverge 1e3d129
Simplify how fetch utilizes timeouts from agent
xconverge 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 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 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 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,123 @@ | ||
'use strict' | ||
|
||
const { test } = require('tap') | ||
|
||
const { fetch, errors, Agent } = require('../..') | ||
const { createServer } = require('http') | ||
const FakeTimers = require('@sinonjs/fake-timers') | ||
|
||
test('Fetch should have a default timeout of 300 seconds triggered', (t) => { | ||
const msToDelay = 300_000 | ||
t.setTimeout(undefined) | ||
t.plan(1) | ||
|
||
const clock = FakeTimers.install() | ||
t.teardown(clock.uninstall.bind(clock)) | ||
|
||
const server = createServer((req, res) => { | ||
setTimeout(() => { | ||
res.end('hello') | ||
}, msToDelay) | ||
clock.tick(msToDelay + 1) | ||
}) | ||
t.teardown(server.close.bind(server)) | ||
|
||
server.listen(0, () => { | ||
fetch(`http://localhost:${server.address().port}`, { | ||
path: '/', | ||
method: 'GET', | ||
dispatcher: new Agent({ | ||
connectTimeout: 0 | ||
}) | ||
}) | ||
.then(() => { | ||
// This should not happen, a timeout error should occur | ||
t.error(true) | ||
}) | ||
.catch((err) => { | ||
t.type(err.cause, errors.HeadersTimeoutError) | ||
}) | ||
|
||
clock.tick(msToDelay - 1) | ||
}) | ||
}) | ||
|
||
test('Fetch should have a default timeout of 300 seconds not triggered', (t) => { | ||
const msToDelay = 299_000 | ||
t.setTimeout(undefined) | ||
t.plan(1) | ||
|
||
const clock = FakeTimers.install() | ||
t.teardown(clock.uninstall.bind(clock)) | ||
|
||
const server = createServer((req, res) => { | ||
setTimeout(() => { | ||
res.end('hello') | ||
}, msToDelay) | ||
clock.tick(msToDelay + 1) | ||
}) | ||
t.teardown(server.close.bind(server)) | ||
|
||
server.listen(0, () => { | ||
fetch(`http://localhost:${server.address().port}`, { | ||
path: '/', | ||
method: 'GET', | ||
dispatcher: new Agent({ | ||
connectTimeout: 0 | ||
}) | ||
}) | ||
.then((response) => response.text()) | ||
.then((response) => { | ||
t.equal('hello', response) | ||
t.end() | ||
}) | ||
.catch((err) => { | ||
// This should not happen, a timeout error should not occur | ||
t.error(err) | ||
}) | ||
|
||
clock.tick(msToDelay - 1) | ||
}) | ||
}) | ||
|
||
test('Fetch very long request, timeout overridden so no error', (t) => { | ||
const minutes = 6 | ||
const msToDelay = 1000 * 60 * minutes | ||
|
||
t.setTimeout(undefined) | ||
t.plan(1) | ||
|
||
const clock = FakeTimers.install() | ||
t.teardown(clock.uninstall.bind(clock)) | ||
|
||
const server = createServer((req, res) => { | ||
setTimeout(() => { | ||
res.end('hello') | ||
}, msToDelay) | ||
clock.tick(msToDelay + 1) | ||
}) | ||
t.teardown(server.close.bind(server)) | ||
|
||
server.listen(0, () => { | ||
fetch(`http://localhost:${server.address().port}`, { | ||
path: '/', | ||
method: 'GET', | ||
dispatcher: new Agent({ | ||
headersTimeout: 0, | ||
connectTimeout: 0, | ||
bodyTimeout: 0 | ||
}) | ||
}) | ||
.then((response) => response.text()) | ||
.then((response) => { | ||
t.equal('hello', response) | ||
t.end() | ||
}) | ||
.catch((err) => { | ||
// This should not happen, a timeout error should not occur | ||
t.error(err) | ||
}) | ||
|
||
clock.tick(msToDelay - 1) | ||
}) | ||
}) |
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,48 @@ | ||
'use strict' | ||
|
||
const { test } = require('tap') | ||
|
||
const { Client } = require('../..') | ||
const { createServer } = require('http') | ||
const FakeTimers = require('@sinonjs/fake-timers') | ||
|
||
const minutes = 6 | ||
const msToDelay = 1000 * 60 * minutes | ||
|
||
test('Long time for a single request', (t) => { | ||
t.setTimeout(undefined) | ||
|
||
t.plan(2) | ||
|
||
const clock = FakeTimers.install() | ||
t.teardown(clock.uninstall.bind(clock)) | ||
|
||
const server = createServer((req, res) => { | ||
setTimeout(() => { | ||
res.end('hello') | ||
}, msToDelay) | ||
clock.tick(msToDelay + 1) | ||
}) | ||
t.teardown(server.close.bind(server)) | ||
|
||
server.listen(0, () => { | ||
const client = new Client(`http://localhost:${server.address().port}`, { | ||
headersTimeout: 0, | ||
connectTimeout: 0 | ||
}) | ||
t.teardown(client.destroy.bind(client)) | ||
|
||
client.request({ path: '/', method: 'GET' }, (err, response) => { | ||
t.error(err) | ||
const bufs = [] | ||
response.body.on('data', (buf) => { | ||
bufs.push(buf) | ||
}) | ||
response.body.on('end', () => { | ||
t.equal('hello', Buffer.concat(bufs).toString('utf8')) | ||
}) | ||
}) | ||
|
||
clock.tick(msToDelay - 1) | ||
}) | ||
}) |
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
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this seems a little hacky, any thoughts?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This would need a bit more support from all the available agents.
Otherwise, I'm good with it.