mirror of
https://github.com/libp2p/go-libp2p-peerstore.git
synced 2025-01-01 00:20:11 +08:00
33 lines
681 B
Go
33 lines
681 B
Go
package pstoremem
|
|
|
|
import (
|
|
"testing"
|
|
|
|
pstore "github.com/libp2p/go-libp2p-peerstore"
|
|
pt "github.com/libp2p/go-libp2p-peerstore/test"
|
|
)
|
|
|
|
func TestInMemoryPeerstore(t *testing.T) {
|
|
pt.TestPeerstore(t, func() (pstore.Peerstore, func()) {
|
|
return NewPeerstore(), nil
|
|
})
|
|
}
|
|
|
|
func TestInMemoryAddrBook(t *testing.T) {
|
|
pt.TestAddrBook(t, func() (pstore.AddrBook, func()) {
|
|
return NewAddrBook(), nil
|
|
})
|
|
}
|
|
|
|
func TestInMemoryKeyBook(t *testing.T) {
|
|
pt.TestKeyBook(t, func() (pstore.KeyBook, func()) {
|
|
return NewKeyBook(), nil
|
|
})
|
|
}
|
|
|
|
func BenchmarkInMemoryPeerstore(b *testing.B) {
|
|
pt.BenchmarkPeerstore(b, func() (pstore.Peerstore, func()) {
|
|
return NewPeerstore(), nil
|
|
})
|
|
}
|