forked from cerc-io/ipld-eth-server
173 lines
4.0 KiB
Go
173 lines
4.0 KiB
Go
package integrationtest
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"io"
|
|
"math"
|
|
"os"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/ipfs/go-ipfs/core"
|
|
"github.com/ipfs/go-ipfs/core/coreapi"
|
|
mock "github.com/ipfs/go-ipfs/core/mock"
|
|
"github.com/ipfs/go-ipfs/thirdparty/unit"
|
|
|
|
files "gx/ipfs/QmQmhotPUzVrMEWNK3x1R5jQ5ZHWyL7tVUrmRPjrBrvyCb/go-ipfs-files"
|
|
mocknet "gx/ipfs/QmRxk6AUaGaKCfzS1xSNRojiAPd7h2ih8GuCdjJBF3Y6GK/go-libp2p/p2p/net/mock"
|
|
testutil "gx/ipfs/QmWapVoHjtKhn4MhvKNoPTkJKADFGACfXPFnt7combwp5W/go-testutil"
|
|
random "gx/ipfs/QmXMnwKWAFBk8kgH8gjoG5P9Pj5aASPvQA2kHdu6gRwyj5/go-random"
|
|
pstore "gx/ipfs/QmaCTz9RkrU13bm9kMB54f7atgqM4qkjDZpRwRoJiWXEqs/go-libp2p-peerstore"
|
|
logging "gx/ipfs/QmbkT7eMTyXfpeyB3ZMxxcxg7XH8t6uXp49jqzz4HB7BGF/go-log"
|
|
)
|
|
|
|
var log = logging.Logger("epictest")
|
|
|
|
const kSeed = 1
|
|
|
|
func Test1KBInstantaneous(t *testing.T) {
|
|
conf := testutil.LatencyConfig{
|
|
NetworkLatency: 0,
|
|
RoutingLatency: 0,
|
|
BlockstoreLatency: 0,
|
|
}
|
|
|
|
if err := DirectAddCat(RandomBytes(1*unit.KB), conf); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
func TestDegenerateSlowBlockstore(t *testing.T) {
|
|
SkipUnlessEpic(t)
|
|
conf := testutil.LatencyConfig{BlockstoreLatency: 50 * time.Millisecond}
|
|
if err := AddCatPowers(conf, 128); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
func TestDegenerateSlowNetwork(t *testing.T) {
|
|
SkipUnlessEpic(t)
|
|
conf := testutil.LatencyConfig{NetworkLatency: 400 * time.Millisecond}
|
|
if err := AddCatPowers(conf, 128); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
func TestDegenerateSlowRouting(t *testing.T) {
|
|
SkipUnlessEpic(t)
|
|
conf := testutil.LatencyConfig{RoutingLatency: 400 * time.Millisecond}
|
|
if err := AddCatPowers(conf, 128); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
func Test100MBMacbookCoastToCoast(t *testing.T) {
|
|
SkipUnlessEpic(t)
|
|
conf := testutil.LatencyConfig{}.NetworkNYtoSF().BlockstoreSlowSSD2014().RoutingSlow()
|
|
if err := DirectAddCat(RandomBytes(100*1024*1024), conf); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
func AddCatPowers(conf testutil.LatencyConfig, megabytesMax int64) error {
|
|
var i int64
|
|
for i = 1; i < megabytesMax; i = i * 2 {
|
|
fmt.Printf("%d MB\n", i)
|
|
if err := DirectAddCat(RandomBytes(i*1024*1024), conf); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func RandomBytes(n int64) []byte {
|
|
data := new(bytes.Buffer)
|
|
random.WritePseudoRandomBytes(n, data, kSeed)
|
|
return data.Bytes()
|
|
}
|
|
|
|
func DirectAddCat(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,
|
|
})
|
|
|
|
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
|
|
}
|
|
|
|
bs1 := []pstore.PeerInfo{adder.Peerstore.PeerInfo(adder.Identity)}
|
|
bs2 := []pstore.PeerInfo{catter.Peerstore.PeerInfo(catter.Identity)}
|
|
|
|
if err := catter.Bootstrap(core.BootstrapConfigWithPeers(bs1)); err != nil {
|
|
return err
|
|
}
|
|
if err := adder.Bootstrap(core.BootstrapConfigWithPeers(bs2)); 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
|
|
bufout := new(bytes.Buffer)
|
|
io.Copy(bufout, readerCatted.(io.Reader))
|
|
if 0 != bytes.Compare(bufout.Bytes(), data) {
|
|
return errors.New("catted data does not match added data")
|
|
}
|
|
|
|
cancel()
|
|
return nil
|
|
}
|
|
|
|
func SkipUnlessEpic(t *testing.T) {
|
|
if os.Getenv("IPFS_EPIC_TEST") == "" {
|
|
t.SkipNow()
|
|
}
|
|
}
|