Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.

Commit 12ddaa3

Browse files
olizillaAlan Shaw
authored and
Alan Shaw
committed
feat: return protocol from getEndpointConfig (#935)
The protocol is used to construct the request, and it's useful to be able to check it has been set correctly, so we add it here to he the util.getEndpointConfig() return value. License: MIT Signed-off-by: Oli Evans <oli@tableflip.io>
1 parent af6ba05 commit 12ddaa3

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ Complete documentation for these methods is coming with: https://github.com/ipfs
370370

371371
> `ipfs.util.getEndpointConfig()`
372372
373-
This returns an object containing the `host` and the `port`
373+
This returns an object containing the `host`, `port` and `protocol`
374374

375375
##### Get libp2p crypto primitives
376376

src/util/get-endpoint-config.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
module.exports = (config) => {
44
return () => ({
55
host: config.host,
6-
port: config.port
6+
port: config.port,
7+
protocol: config.protocol,
8+
'api-path': config['api-path']
79
})
810
}

test/util.spec.js

+5-2
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,13 @@ describe('.util', () => {
3535
})
3636

3737
describe('.getEndpointConfig', () => {
38-
it('should return the endpoint configured host and port', function () {
38+
it('should return the endpoint configuration', function () {
3939
const endpoint = ipfs.util.getEndpointConfig()
4040

41-
expect(endpoint).to.have.property('host')
41+
expect(endpoint.host).to.equal('127.0.0.1')
42+
expect(endpoint.protocol).to.equal('http')
43+
expect(endpoint['api-path']).to.equal('/api/v0/')
44+
// changes per test run so we just assert it exists.
4245
expect(endpoint).to.have.property('port')
4346
})
4447
})

0 commit comments

Comments
 (0)