mirror of
https://github.com/ipfs/kubo.git
synced 2025-09-10 05:52:20 +08:00
39 lines
1.1 KiB
Go
39 lines
1.1 KiB
Go
package mockrouting
|
|
|
|
import (
|
|
context "github.com/jbenet/go-ipfs/Godeps/_workspace/src/code.google.com/p/go.net/context"
|
|
ds "github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-datastore"
|
|
sync "github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-datastore/sync"
|
|
mocknet "github.com/jbenet/go-ipfs/p2p/net/mock"
|
|
dht "github.com/jbenet/go-ipfs/routing/dht"
|
|
"github.com/jbenet/go-ipfs/util/testutil"
|
|
)
|
|
|
|
type mocknetserver struct {
|
|
mn mocknet.Mocknet
|
|
}
|
|
|
|
func NewDHTNetwork(mn mocknet.Mocknet) Server {
|
|
return &mocknetserver{
|
|
mn: mn,
|
|
}
|
|
}
|
|
|
|
func (rs *mocknetserver) Client(p testutil.Identity) Client {
|
|
return rs.ClientWithDatastore(context.TODO(), p, ds.NewMapDatastore())
|
|
}
|
|
|
|
func (rs *mocknetserver) ClientWithDatastore(ctx context.Context, p testutil.Identity, ds ds.Datastore) Client {
|
|
|
|
// FIXME AddPeer doesn't appear to be idempotent
|
|
|
|
host, err := rs.mn.AddPeer(p.PrivateKey(), p.Address())
|
|
if err != nil {
|
|
panic("FIXME")
|
|
// return nil, debugerror.Wrap(err)
|
|
}
|
|
return dht.NewDHT(ctx, host, sync.MutexWrap(ds))
|
|
}
|
|
|
|
var _ Server = &mocknetserver{}
|