forked from libp2p/go-libp2p-connmgr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bench_test.go
56 lines (49 loc) · 1.03 KB
/
bench_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
package connmgr
import (
"context"
"math/rand"
"sync"
"testing"
"github.com/libp2p/go-libp2p-core/network"
"go.uber.org/zap/zaptest"
)
func randomConns(tb testing.TB) (c [5000]network.Conn) {
for i := range c {
c[i] = randConn(tb, nil)
}
return c
}
func BenchmarkLockContention(b *testing.B) {
wg := &sync.WaitGroup{}
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
conns := randomConns(b)
cm := NewConnManager(ctx, zaptest.NewLogger(b), 1000, 1000, 0)
not := cm.Notifee()
kill := make(chan struct{})
var wg1 sync.WaitGroup
for i := 0; i < 16; i++ {
wg1.Add(1)
go func() {
defer wg1.Done()
for {
select {
case <-kill:
return
default:
cm.TagPeer(conns[rand.Intn(len(conns))].RemotePeer(), "another-tag", 1)
}
}
}()
}
b.ResetTimer()
for i := 0; i < b.N; i++ {
rc := conns[rand.Intn(len(conns))]
not.Connected(nil, rc)
cm.TagPeer(rc.RemotePeer(), "tag", 100)
cm.UntagPeer(rc.RemotePeer(), "tag")
not.Disconnected(nil, rc)
}
close(kill)
wg.Wait()
}