2018-09-02 19:03:02 +08:00
|
|
|
package pstoreds
|
2018-08-30 20:44:50 +08:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
2018-09-02 19:10:55 +08:00
|
|
|
"github.com/ipfs/go-datastore"
|
|
|
|
"github.com/ipfs/go-ds-badger"
|
2018-08-30 23:24:09 +08:00
|
|
|
"github.com/libp2p/go-libp2p-peerstore"
|
|
|
|
"github.com/libp2p/go-libp2p-peerstore/test"
|
2018-08-30 20:44:50 +08:00
|
|
|
)
|
|
|
|
|
2018-09-04 21:52:26 +08:00
|
|
|
func TestBadgerDsPeerstore(t *testing.T) {
|
|
|
|
test.TestPeerstore(t, peerstoreFactory(t, DefaultOpts()))
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestBadgerDsAddrBook(t *testing.T) {
|
|
|
|
opts := DefaultOpts()
|
|
|
|
opts.TTLInterval = 100 * time.Microsecond
|
|
|
|
|
|
|
|
test.TestAddrBook(t, addressBookFactory(t, opts))
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkBadgerDsPeerstore(b *testing.B) {
|
|
|
|
caching := DefaultOpts()
|
|
|
|
caching.CacheSize = 1024
|
|
|
|
|
|
|
|
cacheless := DefaultOpts()
|
|
|
|
cacheless.CacheSize = 0
|
|
|
|
|
|
|
|
test.BenchmarkPeerstore(b, peerstoreFactory(b, caching), "Caching")
|
|
|
|
test.BenchmarkPeerstore(b, peerstoreFactory(b, cacheless), "Cacheless")
|
|
|
|
}
|
|
|
|
|
|
|
|
func badgerStore(t testing.TB) (datastore.TxnDatastore, func()) {
|
2018-08-30 20:44:50 +08:00
|
|
|
dataPath, err := ioutil.TempDir(os.TempDir(), "badger")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
ds, err := badger.NewDatastore(dataPath, nil)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
closer := func() {
|
|
|
|
ds.Close()
|
|
|
|
os.RemoveAll(dataPath)
|
|
|
|
}
|
|
|
|
return ds, closer
|
|
|
|
}
|
|
|
|
|
2018-09-04 21:52:26 +08:00
|
|
|
func peerstoreFactory(tb testing.TB, opts PeerstoreOpts) test.PeerstoreFactory {
|
2018-08-30 20:44:50 +08:00
|
|
|
return func() (peerstore.Peerstore, func()) {
|
2018-09-04 21:52:26 +08:00
|
|
|
ds, closeFunc := badgerStore(tb)
|
2018-08-30 20:44:50 +08:00
|
|
|
|
2018-09-04 18:34:55 +08:00
|
|
|
ps, err := NewPeerstore(context.Background(), ds, opts)
|
2018-08-30 20:44:50 +08:00
|
|
|
if err != nil {
|
|
|
|
tb.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return ps, closeFunc
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-04 21:52:26 +08:00
|
|
|
func addressBookFactory(tb testing.TB, opts PeerstoreOpts) test.AddrBookFactory {
|
|
|
|
return func() (peerstore.AddrBook, func()) {
|
|
|
|
ds, closeDB := badgerStore(tb)
|
2018-08-30 20:44:50 +08:00
|
|
|
|
2018-09-04 18:34:55 +08:00
|
|
|
mgr, err := NewAddrBook(context.Background(), ds, opts)
|
2018-08-30 20:44:50 +08:00
|
|
|
if err != nil {
|
2018-09-04 21:52:26 +08:00
|
|
|
tb.Fatal(err)
|
2018-08-30 20:44:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
closeFunc := func() {
|
|
|
|
mgr.Stop()
|
|
|
|
closeDB()
|
|
|
|
}
|
|
|
|
return mgr, closeFunc
|
2018-09-04 21:52:26 +08:00
|
|
|
}
|
2018-08-30 22:24:06 +08:00
|
|
|
}
|