mirror of
https://github.com/ipfs/kubo.git
synced 2025-08-06 11:31:54 +08:00
173 lines
3.9 KiB
Go
173 lines
3.9 KiB
Go
package mockrouting
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
delay "github.com/ipfs/go-ipfs/thirdparty/delay"
|
|
"github.com/ipfs/go-ipfs/thirdparty/testutil"
|
|
key "gx/ipfs/Qmce4Y4zg3sYr7xKM5UueS67vhNni6EeWgCRnb7MbLJMew/go-key"
|
|
|
|
pstore "gx/ipfs/QmSZi9ygLohBUGyHMqE5N6eToPwqcg7bZQTULeVLFu7Q6d/go-libp2p-peerstore"
|
|
context "gx/ipfs/QmZy2y8t9zQH2a1b8q2ZSLKp17ATuJoCNxxyMFG5qFExpt/go-net/context"
|
|
)
|
|
|
|
func TestKeyNotFound(t *testing.T) {
|
|
|
|
var pi = testutil.RandIdentityOrFatal(t)
|
|
var key = key.Key("mock key")
|
|
var ctx = context.Background()
|
|
|
|
rs := NewServer()
|
|
providers := rs.Client(pi).FindProvidersAsync(ctx, key, 10)
|
|
_, ok := <-providers
|
|
if ok {
|
|
t.Fatal("should be closed")
|
|
}
|
|
}
|
|
|
|
func TestClientFindProviders(t *testing.T) {
|
|
pi := testutil.RandIdentityOrFatal(t)
|
|
rs := NewServer()
|
|
client := rs.Client(pi)
|
|
|
|
k := key.Key("hello")
|
|
err := client.Provide(context.Background(), k)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
// This is bad... but simulating networks is hard
|
|
time.Sleep(time.Millisecond * 300)
|
|
max := 100
|
|
|
|
providersFromClient := client.FindProvidersAsync(context.Background(), key.Key("hello"), max)
|
|
isInClient := false
|
|
for pi := range providersFromClient {
|
|
if pi.ID == pi.ID {
|
|
isInClient = true
|
|
}
|
|
}
|
|
if !isInClient {
|
|
t.Fatal("Despite client providing key, client didn't receive peer when finding providers")
|
|
}
|
|
}
|
|
|
|
func TestClientOverMax(t *testing.T) {
|
|
rs := NewServer()
|
|
k := key.Key("hello")
|
|
numProvidersForHelloKey := 100
|
|
for i := 0; i < numProvidersForHelloKey; i++ {
|
|
pi := testutil.RandIdentityOrFatal(t)
|
|
err := rs.Client(pi).Provide(context.Background(), k)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
max := 10
|
|
pi := testutil.RandIdentityOrFatal(t)
|
|
client := rs.Client(pi)
|
|
|
|
providersFromClient := client.FindProvidersAsync(context.Background(), k, max)
|
|
i := 0
|
|
for _ = range providersFromClient {
|
|
i++
|
|
}
|
|
if i != max {
|
|
t.Fatal("Too many providers returned")
|
|
}
|
|
}
|
|
|
|
// TODO does dht ensure won't receive self as a provider? probably not.
|
|
func TestCanceledContext(t *testing.T) {
|
|
rs := NewServer()
|
|
k := key.Key("hello")
|
|
|
|
// avoid leaking goroutine, without using the context to signal
|
|
// (we want the goroutine to keep trying to publish on a
|
|
// cancelled context until we've tested it doesnt do anything.)
|
|
done := make(chan struct{})
|
|
defer func() { done <- struct{}{} }()
|
|
|
|
t.Log("async'ly announce infinite stream of providers for key")
|
|
i := 0
|
|
go func() { // infinite stream
|
|
for {
|
|
select {
|
|
case <-done:
|
|
t.Log("exiting async worker")
|
|
return
|
|
default:
|
|
}
|
|
|
|
pi, err := testutil.RandIdentity()
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
err = rs.Client(pi).Provide(context.Background(), k)
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
i++
|
|
}
|
|
}()
|
|
|
|
local := testutil.RandIdentityOrFatal(t)
|
|
client := rs.Client(local)
|
|
|
|
t.Log("warning: max is finite so this test is non-deterministic")
|
|
t.Log("context cancellation could simply take lower priority")
|
|
t.Log("and result in receiving the max number of results")
|
|
max := 1000
|
|
|
|
t.Log("cancel the context before consuming")
|
|
ctx, cancelFunc := context.WithCancel(context.Background())
|
|
cancelFunc()
|
|
providers := client.FindProvidersAsync(ctx, k, max)
|
|
|
|
numProvidersReturned := 0
|
|
for _ = range providers {
|
|
numProvidersReturned++
|
|
}
|
|
t.Log(numProvidersReturned)
|
|
|
|
if numProvidersReturned == max {
|
|
t.Fatal("Context cancel had no effect")
|
|
}
|
|
}
|
|
|
|
func TestValidAfter(t *testing.T) {
|
|
|
|
pi := testutil.RandIdentityOrFatal(t)
|
|
var key = key.Key("mock key")
|
|
var ctx = context.Background()
|
|
conf := DelayConfig{
|
|
ValueVisibility: delay.Fixed(1 * time.Hour),
|
|
Query: delay.Fixed(0),
|
|
}
|
|
|
|
rs := NewServerWithDelay(conf)
|
|
|
|
rs.Client(pi).Provide(ctx, key)
|
|
|
|
var providers []pstore.PeerInfo
|
|
providers, err := rs.Client(pi).FindProviders(ctx, key)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if len(providers) > 0 {
|
|
t.Fail()
|
|
}
|
|
|
|
conf.ValueVisibility.Set(0)
|
|
providers, err = rs.Client(pi).FindProviders(ctx, key)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
t.Log("providers", providers)
|
|
if len(providers) != 1 {
|
|
t.Fail()
|
|
}
|
|
}
|