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

Commit 16ad830

Browse files
author
Alan Shaw
authored
fix: swarm addrs test (#454)
* fix: swarm addrs test If the common factory creates a node with no bootstrap nodes then getting a list of swarm addresses could be empty (or could also be empty anyway if the connection to the bootstrap nodes takes a long time). This PR spawns and connects another IPFS node to ensure that there should be swarm addresses available. License: MIT Signed-off-by: Alan Shaw <alan.shaw@protocol.ai>
1 parent 0f256bf commit 16ad830

File tree

2 files changed

+17
-13
lines changed

2 files changed

+17
-13
lines changed

SPEC/SWARM.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,18 @@
1313
1414
##### `ipfs.swarm.addrs([callback])`
1515

16-
`callback` must follow `function (err, addrs) {}` signature, where `err` is an error if the operation was not successful. `addrs` will be an array of [`PeerInfo`](https://github.com/libp2p/js-peer-info)s.
16+
`callback` must follow `function (err, peerInfos) {}` signature, where `err` is an error if the operation was not successful. `peerInfos` will be an array of [`PeerInfo`](https://github.com/libp2p/js-peer-info)s.
1717

1818
If no `callback` is passed, a promise is returned.
1919

2020
**Example:**
2121

2222
```JavaScript
23-
ipfs.swarm.addrs(function (err, addrs) {
23+
ipfs.swarm.addrs(function (err, peerInfos) {
2424
if (err) {
2525
throw err
2626
}
27-
console.log(addrs)
27+
console.log(peerInfos)
2828
})
2929
```
3030

src/swarm/addrs.js

+14-10
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
/* eslint-env mocha */
22
'use strict'
33

4+
const PeerInfo = require('peer-info')
45
const { getDescribe, getIt, expect } = require('../utils/mocha')
6+
const { spawnNodesWithId } = require('../utils/spawn')
57

68
module.exports = (createCommon, options) => {
79
const describe = getDescribe(options)
@@ -11,7 +13,7 @@ module.exports = (createCommon, options) => {
1113
describe('.swarm.addrs', function () {
1214
this.timeout(80 * 1000)
1315

14-
let ipfs
16+
let ipfsA, ipfsB
1517

1618
before(function (done) {
1719
// CI takes longer to instantiate the daemon, so we need to increase the
@@ -20,29 +22,31 @@ module.exports = (createCommon, options) => {
2022

2123
common.setup((err, factory) => {
2224
expect(err).to.not.exist()
23-
factory.spawnNode((err, node) => {
25+
26+
spawnNodesWithId(2, factory, (err, nodes) => {
2427
expect(err).to.not.exist()
25-
ipfs = node
26-
done()
28+
ipfsA = nodes[0]
29+
ipfsB = nodes[1]
30+
ipfsA.swarm.connect(ipfsB.peerId.addresses[0], done)
2731
})
2832
})
2933
})
3034

3135
after((done) => common.teardown(done))
3236

3337
it('should get a list of node addresses', (done) => {
34-
ipfs.swarm.addrs((err, multiaddrs) => {
38+
ipfsA.swarm.addrs((err, peerInfos) => {
3539
expect(err).to.not.exist()
36-
expect(multiaddrs).to.not.be.empty()
37-
expect(multiaddrs).to.be.an('array')
38-
expect(multiaddrs[0].constructor.name).to.be.eql('PeerInfo')
40+
expect(peerInfos).to.not.be.empty()
41+
expect(peerInfos).to.be.an('array')
42+
peerInfos.forEach(m => expect(PeerInfo.isPeerInfo(m)).to.be.true())
3943
done()
4044
})
4145
})
4246

4347
it('should get a list of node addresses (promised)', () => {
44-
return ipfs.swarm.addrs().then((multiaddrs) => {
45-
expect(multiaddrs).to.have.length.above(0)
48+
return ipfsA.swarm.addrs().then((peerInfos) => {
49+
expect(peerInfos).to.have.length.above(0)
4650
})
4751
})
4852
})

0 commit comments

Comments
 (0)