swarm_test.go 7.29 KB
Newer Older
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
1
2
3
4
package swarm

import (
	"bytes"
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
5
	"fmt"
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
6
	"io"
7
	"net"
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
8
9
10
11
	"sync"
	"testing"
	"time"

Jeromy's avatar
Jeromy committed
12
	metrics "github.com/ipfs/go-libp2p/p2p/metrics"
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
13
14
	inet "github.com/ipfs/go-libp2p/p2p/net"
	peer "github.com/ipfs/go-libp2p/p2p/peer"
Jeromy's avatar
Jeromy committed
15
	testutil "github.com/ipfs/go-libp2p/testutil"
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
16

Jeromy's avatar
Jeromy committed
17
18
	ma "gx/QmVUi2ncqnU48zsPgR1rQosDGwY3SSZ1Ndp33j33YjXdsj/go-multiaddr"
	context "gx/QmacZi9WygGK7Me8mH53pypyscHzU386aUZXpr28GZgUct/context"
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
19
20
)

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
21
func EchoStreamHandler(stream inet.Stream) {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
22
23
24
25
	go func() {
		defer stream.Close()

		// pull out the ipfs conn
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
26
		c := stream.Conn()
27
		log.Infof("%s ponging to %s", c.LocalPeer(), c.RemotePeer())
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
28
29
30
31
32
33

		buf := make([]byte, 4)

		for {
			if _, err := stream.Read(buf); err != nil {
				if err != io.EOF {
34
					log.Info("ping receive error:", err)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
35
36
37
38
39
				}
				return
			}

			if !bytes.Equal(buf, []byte("ping")) {
40
				log.Infof("ping receive error: ping != %s %v", buf, buf)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
41
42
43
44
				return
			}

			if _, err := stream.Write([]byte("pong")); err != nil {
45
				log.Info("pond send error:", err)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
46
47
48
49
50
51
				return
			}
		}
	}()
}

52
func makeSwarms(ctx context.Context, t *testing.T, num int) []*Swarm {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
53
54
55
56
57
58
59
60
61
	swarms := make([]*Swarm, 0, num)

	for i := 0; i < num; i++ {
		localnp := testutil.RandPeerNetParamsOrFatal(t)

		peerstore := peer.NewPeerstore()
		peerstore.AddPubKey(localnp.ID, localnp.PubKey)
		peerstore.AddPrivKey(localnp.ID, localnp.PrivKey)

62
		addrs := []ma.Multiaddr{localnp.Addr}
Jeromy's avatar
Jeromy committed
63
		swarm, err := NewSwarm(ctx, addrs, localnp.ID, peerstore, metrics.NewBandwidthCounter())
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
64
65
66
67
68
69
70
71
		if err != nil {
			t.Fatal(err)
		}

		swarm.SetStreamHandler(EchoStreamHandler)
		swarms = append(swarms, swarm)
	}

72
	return swarms
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
73
74
}

75
func connectSwarms(t *testing.T, ctx context.Context, swarms []*Swarm) {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
76
77
78
79

	var wg sync.WaitGroup
	connect := func(s *Swarm, dst peer.ID, addr ma.Multiaddr) {
		// TODO: make a DialAddr func.
80
		s.peers.AddAddr(dst, addr, peer.PermanentAddrTTL)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
81
82
83
84
85
86
87
		if _, err := s.Dial(ctx, dst); err != nil {
			t.Fatal("error swarm dialing to peer", err)
		}
		wg.Done()
	}

	log.Info("Connecting swarms simultaneously.")
88
89
90
	for _, s1 := range swarms {
		for _, s2 := range swarms {
			if s2.local != s1.local { // don't connect to self.
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
91
				wg.Add(1)
92
				connect(s1, s2.LocalPeer(), s2.ListenAddresses()[0]) // try the first.
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
93
94
95
96
97
98
99
100
101
102
103
104
105
106
			}
		}
	}
	wg.Wait()

	for _, s := range swarms {
		log.Infof("%s swarm routing table: %s", s.local, s.Peers())
	}
}

func SubtestSwarm(t *testing.T, SwarmNum int, MsgNum int) {
	// t.Skip("skipping for another test")

	ctx := context.Background()
107
	swarms := makeSwarms(ctx, t, SwarmNum)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
108
109

	// connect everyone
110
	connectSwarms(t, ctx, swarms)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
111
112
113
114
115
116
117
118
119

	// ping/pong
	for _, s1 := range swarms {
		log.Debugf("-------------------------------------------------------")
		log.Debugf("%s ping pong round", s1.local)
		log.Debugf("-------------------------------------------------------")

		_, cancel := context.WithCancel(ctx)
		got := map[peer.ID]int{}
120
		errChan := make(chan error, MsgNum*len(swarms))
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
121
122
123
124
125
126
127
128
129
130
131
		streamChan := make(chan *Stream, MsgNum)

		// send out "ping" x MsgNum to every peer
		go func() {
			defer close(streamChan)

			var wg sync.WaitGroup
			send := func(p peer.ID) {
				defer wg.Done()

				// first, one stream per peer (nice)
132
				stream, err := s1.NewStreamWithPeer(ctx, p)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
133
				if err != nil {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
134
					errChan <- err
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
					return
				}

				// send out ping!
				for k := 0; k < MsgNum; k++ { // with k messages
					msg := "ping"
					log.Debugf("%s %s %s (%d)", s1.local, msg, p, k)
					if _, err := stream.Write([]byte(msg)); err != nil {
						errChan <- err
						continue
					}
				}

				// read it later
				streamChan <- stream
			}

152
153
			for _, s2 := range swarms {
				if s2.local == s1.local {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
154
155
156
157
					continue // dont send to self...
				}

				wg.Add(1)
158
				go send(s2.local)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
159
160
161
162
163
164
165
166
			}
			wg.Wait()
		}()

		// receive "pong" x MsgNum from every peer
		go func() {
			defer close(errChan)
			count := 0
167
			countShouldBe := MsgNum * (len(swarms) - 1)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
168
169
170
171
172
173
174
175
176
177
178
179
180
			for stream := range streamChan { // one per peer
				defer stream.Close()

				// get peer on the other side
				p := stream.Conn().RemotePeer()

				// receive pings
				msgCount := 0
				msg := make([]byte, 4)
				for k := 0; k < MsgNum; k++ { // with k messages

					// read from the stream
					if _, err := stream.Read(msg); err != nil {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
181
						errChan <- err
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
182
183
184
185
						continue
					}

					if string(msg) != "pong" {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
186
						errChan <- fmt.Errorf("unexpected message: %s", msg)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
187
188
189
190
191
192
193
194
195
196
197
198
						continue
					}

					log.Debugf("%s %s %s (%d)", s1.local, msg, p, k)
					msgCount++
				}

				got[p] = msgCount
				count += msgCount
			}

			if count != countShouldBe {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
199
				errChan <- fmt.Errorf("count mismatch: %d != %d", count, countShouldBe)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
200
201
202
203
204
205
206
207
208
209
210
			}
		}()

		// check any errors (blocks till consumer is done)
		for err := range errChan {
			if err != nil {
				t.Error(err.Error())
			}
		}

		log.Debugf("%s got pongs", s1.local)
211
212
		if (len(swarms) - 1) != len(got) {
			t.Errorf("got (%d) less messages than sent (%d).", len(got), len(swarms))
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
		}

		for p, n := range got {
			if n != MsgNum {
				t.Error("peer did not get all msgs", p, n, "/", MsgNum)
			}
		}

		cancel()
		<-time.After(10 * time.Millisecond)
	}

	for _, s := range swarms {
		s.Close()
	}
}

func TestSwarm(t *testing.T) {
	// t.Skip("skipping for another test")
232
	t.Parallel()
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
233
234
235
236
237

	// msgs := 1000
	msgs := 100
	swarms := 5
	SubtestSwarm(t, swarms, msgs)
Jeromy's avatar
Jeromy committed
238
239
240
241
242
243
244
245
246
}

func TestBasicSwarm(t *testing.T) {
	// t.Skip("skipping for another test")
	t.Parallel()

	msgs := 1
	swarms := 2
	SubtestSwarm(t, swarms, msgs)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
247
248
249
250
}

func TestConnHandler(t *testing.T) {
	// t.Skip("skipping for another test")
251
	t.Parallel()
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
252
253

	ctx := context.Background()
254
	swarms := makeSwarms(ctx, t, 5)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
255
256
257
258
259
260

	gotconn := make(chan struct{}, 10)
	swarms[0].SetConnHandler(func(conn *Conn) {
		gotconn <- struct{}{}
	})

261
	connectSwarms(t, ctx, swarms)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282

	<-time.After(time.Millisecond)
	// should've gotten 5 by now.

	swarms[0].SetConnHandler(nil)

	expect := 4
	for i := 0; i < expect; i++ {
		select {
		case <-time.After(time.Second):
			t.Fatal("failed to get connections")
		case <-gotconn:
		}
	}

	select {
	case <-gotconn:
		t.Fatalf("should have connected to %d swarms", expect)
	default:
	}
}
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299

func TestAddrBlocking(t *testing.T) {
	ctx := context.Background()
	swarms := makeSwarms(ctx, t, 2)

	swarms[0].SetConnHandler(func(conn *Conn) {
		t.Fatal("no connections should happen!")
	})

	_, block, err := net.ParseCIDR("127.0.0.1/8")
	if err != nil {
		t.Fatal(err)
	}

	swarms[1].Filters.AddDialFilter(block)

	swarms[1].peers.AddAddr(swarms[0].LocalPeer(), swarms[0].ListenAddresses()[0], peer.PermanentAddrTTL)
300
	_, err = swarms[1].Dial(ctx, swarms[0].LocalPeer())
301
302
303
304
305
	if err == nil {
		t.Fatal("dial should have failed")
	}

	swarms[0].peers.AddAddr(swarms[1].LocalPeer(), swarms[1].ListenAddresses()[0], peer.PermanentAddrTTL)
306
	_, err = swarms[0].Dial(ctx, swarms[1].LocalPeer())
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
	if err == nil {
		t.Fatal("dial should have failed")
	}
}

func TestFilterBounds(t *testing.T) {
	ctx := context.Background()
	swarms := makeSwarms(ctx, t, 2)

	conns := make(chan struct{}, 8)
	swarms[0].SetConnHandler(func(conn *Conn) {
		conns <- struct{}{}
	})

	// Address that we wont be dialing from
	_, block, err := net.ParseCIDR("192.0.0.1/8")
	if err != nil {
		t.Fatal(err)
	}

	// set filter on both sides, shouldnt matter
	swarms[1].Filters.AddDialFilter(block)
	swarms[0].Filters.AddDialFilter(block)

	connectSwarms(t, ctx, swarms)

	select {
	case <-time.After(time.Second):
		t.Fatal("should have gotten connection")
	case <-conns:
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
337
		t.Log("got connect")
338
339
	}
}