testutils.go 3.03 KB
Newer Older
1 2 3
package bitswap

import (
4
	"context"
5 6
	"time"

7 8
	blockstore "github.com/ipfs/go-ipfs/blocks/blockstore"
	tn "github.com/ipfs/go-ipfs/exchange/bitswap/testnet"
9
	datastore2 "github.com/ipfs/go-ipfs/thirdparty/datastore2"
10
	delay "github.com/ipfs/go-ipfs/thirdparty/delay"
11
	testutil "github.com/ipfs/go-ipfs/thirdparty/testutil"
12

George Antoniadis's avatar
George Antoniadis committed
13 14
	ds "gx/ipfs/QmbzuUusHqaLLoNTDEVLcSF6vZDHZDLPC7p4bztRvvkXxU/go-datastore"
	ds_sync "gx/ipfs/QmbzuUusHqaLLoNTDEVLcSF6vZDHZDLPC7p4bztRvvkXxU/go-datastore/sync"
15
	p2ptestutil "gx/ipfs/QmcDTquYLTYirqj71RRWKUWEEw3nJt11Awzun5ep8kfY7W/go-libp2p-netutil"
16
	peer "gx/ipfs/QmfMmLGoKzCHDN7cGgk64PJr4iipzidDRME8HABSJqvmhC/go-libp2p-peer"
17 18
)

19 20
// WARNING: this uses RandTestBogusIdentity DO NOT USE for NON TESTS!
func NewTestSessionGenerator(
21
	net tn.Network) SessionGenerator {
22
	ctx, cancel := context.WithCancel(context.Background())
23
	return SessionGenerator{
24 25
		net:    net,
		seq:    0,
Brian Tiger Chow's avatar
Brian Tiger Chow committed
26
		ctx:    ctx, // TODO take ctx as param to Next, Instances
27
		cancel: cancel,
28 29 30
	}
}

Brian Tiger Chow's avatar
Brian Tiger Chow committed
31
// TODO move this SessionGenerator to the core package and export it as the core generator
32
type SessionGenerator struct {
33 34 35 36 37 38
	seq    int
	net    tn.Network
	ctx    context.Context
	cancel context.CancelFunc
}

39
func (g *SessionGenerator) Close() error {
40
	g.cancel()
41
	return nil // for Closer interface
42 43 44 45
}

func (g *SessionGenerator) Next() Instance {
	g.seq++
46
	p, err := p2ptestutil.RandTestBogusIdentity()
Brian Tiger Chow's avatar
Brian Tiger Chow committed
47 48 49
	if err != nil {
		panic("FIXME") // TODO change signature
	}
Karthik Bala's avatar
Karthik Bala committed
50
	return Session(g.ctx, g.net, p)
51 52 53
}

func (g *SessionGenerator) Instances(n int) []Instance {
rht's avatar
rht committed
54
	var instances []Instance
55 56 57 58
	for j := 0; j < n; j++ {
		inst := g.Next()
		instances = append(instances, inst)
	}
59 60 61 62 63 64
	for i, inst := range instances {
		for j := i + 1; j < len(instances); j++ {
			oinst := instances[j]
			inst.Exchange.PeerConnected(oinst.Peer)
		}
	}
65 66 67 68
	return instances
}

type Instance struct {
69
	Peer       peer.ID
70
	Exchange   *Bitswap
71 72 73 74 75 76 77 78 79 80 81
	blockstore blockstore.Blockstore

	blockstoreDelay delay.D
}

func (i *Instance) Blockstore() blockstore.Blockstore {
	return i.blockstore
}

func (i *Instance) SetBlockstoreLatency(t time.Duration) time.Duration {
	return i.blockstoreDelay.Set(t)
82 83 84 85 86 87 88
}

// session creates a test bitswap session.
//
// NB: It's easy make mistakes by providing the same peer ID to two different
// sessions. To safeguard, use the SessionGenerator to generate sessions. It's
// just a much better idea.
Karthik Bala's avatar
Karthik Bala committed
89
func Session(ctx context.Context, net tn.Network, p testutil.Identity) Instance {
Brian Tiger Chow's avatar
Brian Tiger Chow committed
90
	bsdelay := delay.Fixed(0)
91
	const bloomSize = 512
rht's avatar
rht committed
92
	const writeCacheElems = 100
93

94
	adapter := net.Adapter(p)
Brian Tiger Chow's avatar
Brian Tiger Chow committed
95
	dstore := ds_sync.MutexWrap(datastore2.WithDelay(ds.NewMapDatastore(), bsdelay))
96

97 98
	bstore, err := blockstore.CachedBlockstore(blockstore.NewBlockstore(
		ds_sync.MutexWrap(dstore)), ctx, blockstore.DefaultCacheOpts())
99
	if err != nil {
Brian Tiger Chow's avatar
Brian Tiger Chow committed
100
		panic(err.Error()) // FIXME perhaps change signature and return error.
101
	}
102 103 104

	const alwaysSendToPeer = true

105
	bs := New(ctx, p.ID(), adapter, bstore, alwaysSendToPeer).(*Bitswap)
106 107

	return Instance{
Brian Tiger Chow's avatar
Brian Tiger Chow committed
108
		Peer:            p.ID(),
109 110 111
		Exchange:        bs,
		blockstore:      bstore,
		blockstoreDelay: bsdelay,
112 113
	}
}