mirror of
https://github.com/ipfs/kubo.git
synced 2025-09-09 23:42:20 +08:00
24 lines
642 B
Go
24 lines
642 B
Go
package bstest
|
|
|
|
import (
|
|
. "github.com/ipfs/go-ipfs/blockservice"
|
|
bitswap "github.com/ipfs/go-ipfs/exchange/bitswap"
|
|
tn "github.com/ipfs/go-ipfs/exchange/bitswap/testnet"
|
|
mockrouting "github.com/ipfs/go-ipfs/routing/mock"
|
|
delay "github.com/ipfs/go-ipfs/thirdparty/delay"
|
|
)
|
|
|
|
// Mocks returns |n| connected mock Blockservices
|
|
func Mocks(n int) []*BlockService {
|
|
net := tn.VirtualNetwork(mockrouting.NewServer(), delay.Fixed(0))
|
|
sg := bitswap.NewTestSessionGenerator(net)
|
|
|
|
instances := sg.Instances(n)
|
|
|
|
var servs []*BlockService
|
|
for _, i := range instances {
|
|
servs = append(servs, New(i.Blockstore(), i.Exchange))
|
|
}
|
|
return servs
|
|
}
|