mirror of
https://github.com/ipfs/kubo.git
synced 2025-09-09 17:22:21 +08:00
rename epictest -> integrationtest
This commit is contained in:
152
test/integration/addcat_test.go
Normal file
152
test/integration/addcat_test.go
Normal file
@ -0,0 +1,152 @@
|
||||
package integrationtest
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"fmt"
|
||||
"io"
|
||||
"math"
|
||||
"os"
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
context "github.com/jbenet/go-ipfs/Godeps/_workspace/src/code.google.com/p/go.net/context"
|
||||
random "github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-random"
|
||||
"github.com/jbenet/go-ipfs/core"
|
||||
coreunix "github.com/jbenet/go-ipfs/core/coreunix"
|
||||
mocknet "github.com/jbenet/go-ipfs/p2p/net/mock"
|
||||
"github.com/jbenet/go-ipfs/p2p/peer"
|
||||
path "github.com/jbenet/go-ipfs/path"
|
||||
"github.com/jbenet/go-ipfs/thirdparty/unit"
|
||||
errors "github.com/jbenet/go-ipfs/util/debugerror"
|
||||
testutil "github.com/jbenet/go-ipfs/util/testutil"
|
||||
)
|
||||
|
||||
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{}.Network_NYtoSF().Blockstore_SlowSSD2014().Routing_Slow()
|
||||
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 {
|
||||
var data 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()
|
||||
const numPeers = 2
|
||||
|
||||
// create network
|
||||
mn, err := mocknet.FullMeshLinked(ctx, numPeers)
|
||||
if err != nil {
|
||||
return errors.Wrap(err)
|
||||
}
|
||||
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,
|
||||
})
|
||||
|
||||
peers := mn.Peers()
|
||||
if len(peers) < numPeers {
|
||||
return errors.New("test initialization error")
|
||||
}
|
||||
|
||||
adder, err := core.NewIPFSNode(ctx, core.ConfigOption(MocknetTestRepo(peers[0], mn.Host(peers[0]), conf)))
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
defer adder.Close()
|
||||
catter, err := core.NewIPFSNode(ctx, core.ConfigOption(MocknetTestRepo(peers[1], mn.Host(peers[1]), conf)))
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
defer catter.Close()
|
||||
|
||||
bs1 := []peer.PeerInfo{adder.Peerstore.PeerInfo(adder.Identity)}
|
||||
bs2 := []peer.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
|
||||
}
|
||||
|
||||
keyAdded, err := coreunix.Add(adder, bytes.NewReader(data))
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
readerCatted, err := coreunix.Cat(catter, path.Path(keyAdded.String()))
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
// verify
|
||||
var bufout bytes.Buffer
|
||||
io.Copy(&bufout, readerCatted)
|
||||
if 0 != bytes.Compare(bufout.Bytes(), data) {
|
||||
return errors.New("catted data does not match added data")
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func SkipUnlessEpic(t *testing.T) {
|
||||
if os.Getenv("IPFS_EPIC_TEST") == "" {
|
||||
t.SkipNow()
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user