-
Notifications
You must be signed in to change notification settings - Fork 226
/
lookup_optim_test.go
106 lines (89 loc) · 2.29 KB
/
lookup_optim_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
package dht
import (
"context"
"math/rand"
"testing"
"time"
"github.com/libp2p/go-libp2p-kad-dht/netsize"
"github.com/libp2p/go-libp2p/core/peer"
)
func randInt(rng *rand.Rand, n, except int) int {
for {
r := rng.Intn(n)
if r != except {
return r
}
}
}
func TestOptimisticProvide(t *testing.T) {
rng := rand.New(rand.NewSource(time.Now().UnixNano()))
// Order of events:
// 1. setup DHTs
// 2. connect each DHT with three others (but not to itself)
// 3. select random DHT to be the privileged one (performs the optimistic provide)
// 4. initialize network size estimator of privileged DHT
// 5. perform provides
// 6. let all other DHTs perform the lookup for all provided CIDs
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
dhtCount := 21
dhts := setupDHTS(t, ctx, dhtCount, EnableOptimisticProvide())
defer func() {
for i := 0; i < dhtCount; i++ {
dhts[i].Close()
defer dhts[i].host.Close()
}
}()
// connect each DHT with three random others
for i, dht := range dhts {
for j := 0; j < 3; j++ {
r := randInt(rng, dhtCount, i)
connect(t, ctx, dhts[r], dht)
}
}
// select privileged DHT that will perform the provide operation
privIdx := rng.Intn(dhtCount)
privDHT := dhts[privIdx]
peerIDs := make([]peer.ID, 20)
for i := 0; i < dhtCount; i++ {
if i == privIdx {
continue
}
if i >= privIdx {
peerIDs[i-1] = dhts[i-1].self
} else {
peerIDs[i] = dhts[i].self
}
}
nse := netsize.NewEstimator(privDHT.self, privDHT.routingTable, privDHT.bucketSize)
for i := 0; i < 20; i++ {
err := nse.Track(string(testCaseCids[i].Bytes()), peerIDs)
if err != nil {
t.Fatal(err)
}
}
privDHT.nsEstimator = nse
for _, k := range testCaseCids {
logger.Debugf("announcing provider for %s", k)
if err := privDHT.optimisticProvide(ctx, k.Hash()); err != nil {
t.Fatal(err)
}
}
for _, c := range testCaseCids {
n := randInt(rng, dhtCount, privIdx)
ctxT, cancel := context.WithTimeout(ctx, time.Second)
defer cancel()
provchan := dhts[n].FindProvidersAsync(ctxT, c, 1)
select {
case prov := <-provchan:
if prov.ID == "" {
t.Fatal("Got back nil provider")
}
if prov.ID != privDHT.self {
t.Fatal("Got back wrong provider")
}
case <-ctxT.Done():
t.Fatal("Did not get a provider back.")
}
}
}