-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup_test.go
227 lines (185 loc) · 5.37 KB
/
setup_test.go
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
package main
import (
"context"
"fmt"
"net"
"testing"
"time"
blocks "github.com/ipfs/go-block-format"
ci "github.com/libp2p/go-libp2p-testing/ci"
ic "github.com/libp2p/go-libp2p/core/crypto"
"github.com/libp2p/go-libp2p/core/network"
"github.com/libp2p/go-libp2p/core/peer"
"github.com/multiformats/go-multiaddr"
"github.com/stretchr/testify/require"
)
func mustFreePort(t *testing.T) (int, *net.TCPListener) {
addr, err := net.ResolveTCPAddr("tcp", "localhost:0")
require.NoError(t, err)
l, err := net.ListenTCP("tcp", addr)
require.NoError(t, err)
return l.Addr().(*net.TCPAddr).Port, l
}
func mustFreePorts(t *testing.T, n int) []int {
ports := make([]int, 0)
for i := 0; i < n; i {
port, listener := mustFreePort(t)
defer listener.Close()
ports = append(ports, port)
}
return ports
}
func mustListenAddrWithPort(t *testing.T, port int) multiaddr.Multiaddr {
ma, err := multiaddr.NewMultiaddr(fmt.Sprintf("/ip4/127.0.0.1/tcp/%d", port))
require.NoError(t, err)
return ma
}
// mustPeeredNodes creates a network of [Node]s with the given configuration.
// The configuration contains as many elements as there are nodes. Each element
// indicates to which other nodes it is connected.
//
// Example configuration: [][]int{
// {1, 2},
// {0},
// {0},
// }
//
// - Node 0 is connected to nodes 1 and 2.
// - Node 1 is connected to node 0.
// - Node 2 is connected to node 1.
func mustPeeredNodes(t *testing.T, configuration [][]int, peeringShareCache bool) []*Node {
n := len(configuration)
// Generate ports, secrets keys, peer IDs and multiaddresses.
ports := mustFreePorts(t, n)
keys := make([]ic.PrivKey, n)
pids := make([]peer.ID, n)
mas := make([]multiaddr.Multiaddr, n)
addrInfos := make([]peer.AddrInfo, n)
for i := 0; i < n; i {
keys[i], pids[i] = mustTestPeer(t)
mas[i] = mustListenAddrWithPort(t, ports[i])
addrInfos[i] = peer.AddrInfo{
ID: pids[i],
Addrs: []multiaddr.Multiaddr{mas[i]},
}
}
cfgs := make([]Config, n)
nodes := make([]*Node, n)
for i := 0; i < n; i {
cfgs[i] = Config{
DHTRouting: DHTOff,
RoutingV1Endpoints: []string{},
ListenAddrs: []string{mas[i].String()},
Peering: []peer.AddrInfo{},
PeeringSharedCache: peeringShareCache,
Bitswap: true,
}
for _, j := range configuration[i] {
cfgs[i].Peering = append(cfgs[i].Peering, addrInfos[j])
}
nodes[i] = mustTestNodeWithKey(t, cfgs[i], keys[i])
t.Log("Node", i, "Addresses", nodes[i].host.Addrs(), "Peering", cfgs[i].Peering)
}
require.Eventually(t, func() bool {
for i, node := range nodes {
for _, peer := range cfgs[i].Peering {
if node.host.Network().Connectedness(peer.ID) != network.Connected {
return false
}
}
}
return true
}, time.Second*30, time.Millisecond*100)
return nodes
}
func TestPeering(t *testing.T) {
_ = mustPeeredNodes(t, [][]int{
{1, 2},
{0, 2},
{0, 1},
}, false)
}
func TestPeeringSharedCache(t *testing.T) {
nodes := mustPeeredNodes(t, [][]int{
{1}, // 0 peered to 1
{0}, // 1 peered to 0
{}, // 2 not peered to anyone
}, true)
bl := blocks.NewBlock([]byte(string("peering-cache-test")))
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
checkBitswap := func(i int, success bool) {
ctx, cancel := context.WithTimeout(ctx, time.Second*5)
defer cancel()
_, err := nodes[i].bsrv.GetBlock(ctx, bl.Cid())
if success {
require.NoError(t, err)
} else {
require.Error(t, err)
}
}
err := nodes[0].bsrv.AddBlock(ctx, bl)
require.NoError(t, err)
// confirm peering enables cache sharing, and bitswap retrieval from safe-listed node works
checkBitswap(1, true)
// confirm bitswap providing is disabled by default (no peering)
checkBitswap(2, false)
}
func testSeedPeering(t *testing.T, n int, dhtRouting DHTRouting, dhtSharedHost bool) ([]ic.PrivKey, []peer.ID, []*Node) {
cdns := newCachedDNS(dnsCacheRefreshInterval)
defer cdns.Close()
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
seed, err := newSeed()
require.NoError(t, err)
keys := make([]ic.PrivKey, n)
pids := make([]peer.ID, n)
for i := 0; i < n; i {
keys[i], pids[i] = mustTestPeerFromSeed(t, seed, i)
}
cfgs := make([]Config, n)
nodes := make([]*Node, n)
for i := 0; i < n; i {
cfgs[i] = Config{
DataDir: t.TempDir(),
BlockstoreType: "flatfs",
DHTRouting: dhtRouting,
DHTSharedHost: dhtSharedHost,
Bitswap: true,
Seed: seed,
SeedIndex: i,
SeedPeering: true,
SeedPeeringMaxIndex: n,
}
nodes[i], err = SetupWithLibp2p(ctx, cfgs[i], keys[i], cdns)
require.NoError(t, err)
}
require.Eventually(t, func() bool {
for i, node := range nodes {
for j, pid := range pids {
if i == j {
continue
}
if node.host.Network().Connectedness(pid) != network.Connected {
return false
}
}
}
return true
}, time.Second*120, time.Millisecond*100)
return keys, pids, nodes
}
func TestSeedPeering(t *testing.T) {
if ci.IsRunning() {
t.Skip("don't run seed peering tests in ci")
}
t.Run("DHT disabled", func(t *testing.T) {
testSeedPeering(t, 3, DHTOff, false)
})
t.Run("DHT enabled with shared host disabled", func(t *testing.T) {
testSeedPeering(t, 3, DHTStandard, false)
})
t.Run("DHT enabled with shared host enabled", func(t *testing.T) {
testSeedPeering(t, 3, DHTStandard, true)
})
}