-
Notifications
You must be signed in to change notification settings - Fork 759
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add an HTTP client which uses fetch.
- Loading branch information
1 parent
31fc49a
commit 01b9ff2
Showing
6 changed files
with
368 additions
and
159 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
'use strict'; | ||
|
||
const {HttpClient, HttpClientResponse} = require('./HttpClient'); | ||
|
||
/** | ||
* HTTP client which uses a `fetch` function to issue requests. This fetch | ||
* function is expected to be the Web Fetch API function or an equivalent (such | ||
* as the function provided by the node-fetch package). | ||
*/ | ||
class FetchHttpClient extends HttpClient { | ||
constructor(fetchFn) { | ||
super(); | ||
this._fetchFn = fetchFn; | ||
} | ||
|
||
/* eslint-disable class-methods-use-this */ | ||
/** @override. */ | ||
getClientName() { | ||
return 'fetch'; | ||
} | ||
/* eslint-enable class-methods-use-this */ | ||
|
||
makeRequest( | ||
host, | ||
port, | ||
path, | ||
method, | ||
headers, | ||
requestData, | ||
protocol, | ||
timeout | ||
) { | ||
const isInsecureConnection = protocol === 'http'; | ||
|
||
const url = new URL( | ||
path, | ||
`${isInsecureConnection ? 'http' : 'https'}://${host}` | ||
); | ||
url.port = port; | ||
|
||
const fetchPromise = this._fetchFn(url.toString(), { | ||
method, | ||
headers, | ||
body: requestData || undefined, | ||
}); | ||
|
||
let pendingTimeoutId; | ||
const timeoutPromise = new Promise((_, reject) => { | ||
pendingTimeoutId = setTimeout(() => { | ||
pendingTimeoutId = null; | ||
reject(HttpClient.makeTimeoutError()); | ||
}, timeout); | ||
}); | ||
|
||
return Promise.race([fetchPromise, timeoutPromise]) | ||
.then((res) => { | ||
return new FetchHttpClientResponse(res); | ||
}) | ||
.finally(() => { | ||
if (pendingTimeoutId) { | ||
clearTimeout(pendingTimeoutId); | ||
} | ||
}); | ||
} | ||
} | ||
|
||
class FetchHttpClientResponse extends HttpClientResponse { | ||
constructor(res) { | ||
super( | ||
res.status, | ||
FetchHttpClientResponse._transformHeadersToObject(res.headers) | ||
); | ||
this._res = res; | ||
} | ||
|
||
getRawResponse() { | ||
return this._res; | ||
} | ||
|
||
toStream(streamCompleteCallback) { | ||
// Unfortunately `fetch` does not have event handlers for when the stream is | ||
// completely read. We therefore invoke the streamCompleteCallback right | ||
// away. This callback emits a response event with metadata and completes | ||
// metrics, so it's ok to do this without waiting for the stream to be | ||
// completely read. | ||
streamCompleteCallback(); | ||
|
||
// Fetch's `body` property is expected to be a readable stream of the body. | ||
return this._res.body; | ||
} | ||
|
||
toJSON() { | ||
return this._res.json(); | ||
} | ||
|
||
static _transformHeadersToObject(headers) { | ||
// Fetch uses a Headers instance so this must be converted to a barebones | ||
// JS object to meet the HttpClient interface. | ||
const headersObj = {}; | ||
|
||
for (const entry of headers) { | ||
headersObj[entry[0]] = entry[1]; | ||
} | ||
|
||
return headersObj; | ||
} | ||
} | ||
|
||
module.exports = {FetchHttpClient, FetchHttpClientResponse}; |
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,61 @@ | ||
'use strict'; | ||
|
||
const expect = require('chai').expect; | ||
const fetch = require('node-fetch'); | ||
const {Readable} = require('stream'); | ||
const {FetchHttpClient} = require('../../lib/net/FetchHttpClient'); | ||
|
||
const createFetchHttpClient = () => { | ||
return new FetchHttpClient(fetch); | ||
}; | ||
|
||
const {createHttpClientTestSuite, ArrayReadable} = require('./helpers'); | ||
|
||
createHttpClientTestSuite( | ||
'FetchHttpClient', | ||
createFetchHttpClient, | ||
(setupNock, sendRequest) => { | ||
describe('raw stream', () => { | ||
it('getRawResponse()', async () => { | ||
setupNock().reply(200); | ||
const response = await sendRequest(); | ||
expect(response.getRawResponse()).to.be.an.instanceOf(fetch.Response); | ||
}); | ||
|
||
it('toStream returns the body as a stream', async () => { | ||
setupNock().reply(200, () => new ArrayReadable(['hello, world!'])); | ||
|
||
const response = await sendRequest(); | ||
|
||
return new Promise((resolve) => { | ||
const stream = response.toStream(() => true); | ||
|
||
// node-fetch returns a Node Readable here. In a Web API context, this | ||
// would be a Web ReadableStream. | ||
expect(stream).to.be.an.instanceOf(Readable); | ||
|
||
let streamedContent = ''; | ||
stream.on('data', (chunk) => { | ||
streamedContent += chunk; | ||
}); | ||
stream.on('end', () => { | ||
expect(streamedContent).to.equal('hello, world!'); | ||
resolve(); | ||
}); | ||
}); | ||
}); | ||
|
||
it('toStream invokes the streamCompleteCallback', async () => { | ||
setupNock().reply(200, () => new ArrayReadable(['hello, world!'])); | ||
|
||
const response = await sendRequest(); | ||
|
||
return new Promise((resolve) => { | ||
response.toStream(() => { | ||
resolve(); | ||
}); | ||
}); | ||
}); | ||
}); | ||
} | ||
); |
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
Oops, something went wrong.