mirror of
https://github.com/ipfs/kubo.git
synced 2025-09-10 14:34:24 +08:00
24 lines
560 B
Go
24 lines
560 B
Go
package dht
|
|
|
|
import (
|
|
"testing"
|
|
|
|
key "github.com/ipfs/go-ipfs/blocks/key"
|
|
peer "gx/ipfs/QmZwZjMVGss5rqYsJVGy18gNbkTJffFyq2x1uJ4e4p3ZAt/go-libp2p-peer"
|
|
|
|
context "gx/ipfs/QmZy2y8t9zQH2a1b8q2ZSLKp17ATuJoCNxxyMFG5qFExpt/go-net/context"
|
|
)
|
|
|
|
func TestProviderManager(t *testing.T) {
|
|
ctx := context.Background()
|
|
mid := peer.ID("testing")
|
|
p := NewProviderManager(ctx, mid)
|
|
a := key.Key("test")
|
|
p.AddProvider(ctx, a, peer.ID("testingprovider"))
|
|
resp := p.GetProviders(ctx, a)
|
|
if len(resp) != 1 {
|
|
t.Fatal("Could not retrieve provider.")
|
|
}
|
|
p.proc.Close()
|
|
}
|