This repository was archived by the owner on Feb 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathpeers.js
141 lines (120 loc) · 4.85 KB
/
peers.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
/* eslint-env mocha */
'use strict'
const multiaddr = require('multiaddr')
const CID = require('cids')
const delay = require('delay')
const { isBrowser, isWebWorker } = require('ipfs-utils/src/env')
const { getDescribe, getIt, expect } = require('../utils/mocha')
const testTimeout = require('../utils/test-timeout')
const getIpfsOptions = require('../utils/ipfs-options-websockets-filter-all')
/** @typedef { import("ipfsd-ctl/src/factory") } Factory */
/**
* @param {Factory} common
* @param {Object} options
*/
module.exports = (common, options) => {
const ipfsOptions = getIpfsOptions()
const describe = getDescribe(options)
const it = getIt(options)
describe('.swarm.peers', function () {
this.timeout(80 * 1000)
let ipfsA
let ipfsB
before(async () => {
ipfsA = (await common.spawn({ type: 'proc', ipfsOptions })).api
ipfsB = (await common.spawn({ type: isWebWorker ? 'go' : undefined })).api
await ipfsA.swarm.connect(ipfsB.peerId.addresses[0])
/* TODO: Seen if we still need this after this is fixed
https://github.com/ipfs/js-ipfs/issues/2601 gets resolved */
// await delay(60 * 1000) // wait for open streams in the connection available
})
after(() => common.clean())
it('should respect timeout option when listing swarm peers', () => {
return testTimeout(() => ipfsA.swarm.peers({
timeout: 1
}))
})
it('should list peers this node is connected to', async () => {
const peers = await ipfsA.swarm.peers()
expect(peers).to.have.length.above(0)
const peer = peers[0]
expect(peer).to.have.a.property('addr')
expect(multiaddr.isMultiaddr(peer.addr)).to.equal(true)
expect(peer).to.have.a.property('peer').that.is.a('string')
expect(CID.isCID(new CID(peer.peer))).to.equal(true)
expect(peer).to.not.have.a.property('latency')
/* TODO: These assertions must be uncommented as soon as
https://github.com/ipfs/js-ipfs/issues/2601 gets resolved */
// expect(peer).to.have.a.property('muxer')
// expect(peer).to.not.have.a.property('streams')
})
it('should list peers this node is connected to with verbose option', async () => {
const peers = await ipfsA.swarm.peers({ verbose: true })
expect(peers).to.have.length.above(0)
const peer = peers[0]
expect(peer).to.have.a.property('addr')
expect(multiaddr.isMultiaddr(peer.addr)).to.equal(true)
expect(peer).to.have.a.property('peer')
expect(peer).to.have.a.property('latency')
expect(peer.latency).to.match(/n\/a|[0-9]+[mµ]?s/) // n/a or 3ms or 3µs or 3s
/* TODO: These assertions must be uncommented as soon as
https://github.com/ipfs/js-ipfs/issues/2601 gets resolved */
// expect(peer).to.have.a.property('muxer')
// expect(peer).to.have.a.property('streams')
})
function getConfig (addrs) {
addrs = Array.isArray(addrs) ? addrs : [addrs]
return {
Addresses: {
Swarm: addrs,
API: '/ip4/127.0.0.1/tcp/0',
Gateway: '/ip4/127.0.0.1/tcp/0'
},
Bootstrap: [],
Discovery: {
MDNS: {
Enabled: false
}
}
}
}
it('should list peers only once', async () => {
const nodeA = (await common.spawn({ type: 'proc', ipfsOptions })).api
const nodeB = (await common.spawn({ type: isWebWorker ? 'go' : undefined })).api
await nodeA.swarm.connect(nodeB.peerId.addresses[0])
await delay(1000)
const peersA = await nodeA.swarm.peers()
const peersB = await nodeB.swarm.peers()
expect(peersA).to.have.length(1)
expect(peersB).to.have.length(1)
})
it('should list peers only once even if they have multiple addresses', async () => {
// TODO: Change to port 0, needs: https://github.com/ipfs/interface-ipfs-core/issues/152
const config = getConfig(isBrowser && common.opts.type !== 'go'
? [
'/ip4/127.0.0.1/tcp/14578/ws/p2p-webrtc-star',
'/ip4/127.0.0.1/tcp/14579/ws/p2p-webrtc-star'
]
: [
'/ip4/127.0.0.1/tcp/26545/ws',
'/ip4/127.0.0.1/tcp/26546/ws'
])
const nodeA = (await common.spawn({ type: 'proc', ipfsOptions })).api
const nodeB = (await common.spawn({
type: isWebWorker ? 'go' : undefined,
ipfsOptions: {
config
}
})).api
// TODO: the webrtc-star transport only keeps the last listened on address around
// so the browser has to use 1 as the array index
// await nodeA.swarm.connect(nodeB.peerId.addresses[0])
await nodeA.swarm.connect(nodeB.peerId.addresses[isBrowser ? 1 : 0])
await delay(1000)
const peersA = await nodeA.swarm.peers()
const peersB = await nodeB.swarm.peers()
expect(peersA).to.have.length(1)
expect(peersB).to.have.length(1)
})
})
}