mirror of
https://github.com/ipfs/kubo.git
synced 2025-08-06 19:44:01 +08:00
151 lines
3.5 KiB
Go
151 lines
3.5 KiB
Go
package integrationtest
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"errors"
|
|
"io"
|
|
"math"
|
|
"testing"
|
|
"time"
|
|
|
|
core "github.com/ipfs/go-ipfs/core"
|
|
bootstrap2 "github.com/ipfs/go-ipfs/core/bootstrap"
|
|
"github.com/ipfs/go-ipfs/core/coreapi"
|
|
mock "github.com/ipfs/go-ipfs/core/mock"
|
|
"github.com/ipfs/go-ipfs/thirdparty/unit"
|
|
|
|
files "github.com/ipfs/go-ipfs-files"
|
|
peer "github.com/libp2p/go-libp2p-core/peer"
|
|
testutil "github.com/libp2p/go-libp2p-testing/net"
|
|
mocknet "github.com/libp2p/go-libp2p/p2p/net/mock"
|
|
)
|
|
|
|
func TestThreeLeggedCatTransfer(t *testing.T) {
|
|
conf := testutil.LatencyConfig{
|
|
NetworkLatency: 0,
|
|
RoutingLatency: 0,
|
|
BlockstoreLatency: 0,
|
|
}
|
|
if err := RunThreeLeggedCat(RandomBytes(100*unit.MB), conf); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
func TestThreeLeggedCatDegenerateSlowBlockstore(t *testing.T) {
|
|
SkipUnlessEpic(t)
|
|
conf := testutil.LatencyConfig{BlockstoreLatency: 50 * time.Millisecond}
|
|
if err := RunThreeLeggedCat(RandomBytes(1*unit.KB), conf); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
func TestThreeLeggedCatDegenerateSlowNetwork(t *testing.T) {
|
|
SkipUnlessEpic(t)
|
|
conf := testutil.LatencyConfig{NetworkLatency: 400 * time.Millisecond}
|
|
if err := RunThreeLeggedCat(RandomBytes(1*unit.KB), conf); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
func TestThreeLeggedCatDegenerateSlowRouting(t *testing.T) {
|
|
SkipUnlessEpic(t)
|
|
conf := testutil.LatencyConfig{RoutingLatency: 400 * time.Millisecond}
|
|
if err := RunThreeLeggedCat(RandomBytes(1*unit.KB), conf); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
func TestThreeLeggedCat100MBMacbookCoastToCoast(t *testing.T) {
|
|
SkipUnlessEpic(t)
|
|
conf := testutil.LatencyConfig{}.NetworkNYtoSF().BlockstoreSlowSSD2014().RoutingSlow()
|
|
if err := RunThreeLeggedCat(RandomBytes(100*unit.MB), conf); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
func RunThreeLeggedCat(data []byte, conf testutil.LatencyConfig) error {
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
defer cancel()
|
|
|
|
// create network
|
|
mn := mocknet.New(ctx)
|
|
mn.SetLinkDefaults(mocknet.LinkOptions{
|
|
Latency: conf.NetworkLatency,
|
|
// TODO add to conf. This is tricky because we want 0 values to be functional.
|
|
Bandwidth: math.MaxInt32,
|
|
})
|
|
|
|
bootstrap, err := core.NewNode(ctx, &core.BuildCfg{
|
|
Online: true,
|
|
Host: mock.MockHostOption(mn),
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer bootstrap.Close()
|
|
|
|
adder, err := core.NewNode(ctx, &core.BuildCfg{
|
|
Online: true,
|
|
Host: mock.MockHostOption(mn),
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer adder.Close()
|
|
|
|
catter, err := core.NewNode(ctx, &core.BuildCfg{
|
|
Online: true,
|
|
Host: mock.MockHostOption(mn),
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer catter.Close()
|
|
|
|
adderApi, err := coreapi.NewCoreAPI(adder)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
catterApi, err := coreapi.NewCoreAPI(catter)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
err = mn.LinkAll()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
bis := bootstrap.Peerstore.PeerInfo(bootstrap.PeerHost.ID())
|
|
bcfg := bootstrap2.BootstrapConfigWithPeers([]peer.AddrInfo{bis})
|
|
if err := adder.Bootstrap(bcfg); err != nil {
|
|
return err
|
|
}
|
|
if err := catter.Bootstrap(bcfg); err != nil {
|
|
return err
|
|
}
|
|
|
|
added, err := adderApi.Unixfs().Add(ctx, files.NewBytesFile(data))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
readerCatted, err := catterApi.Unixfs().Get(ctx, added)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// verify
|
|
var bufout bytes.Buffer
|
|
_, err = io.Copy(&bufout, readerCatted.(io.Reader))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if !bytes.Equal(bufout.Bytes(), data) {
|
|
return errors.New("catted data does not match added data")
|
|
}
|
|
return nil
|
|
}
|