lotus/blockstore/splitstore/tracking_test.go

133 lines
2.2 KiB
Go
Raw Normal View History

2020-11-26 18:49:50 +00:00
package splitstore
import (
2021-02-27 11:40:26 +00:00
"os"
2020-11-26 18:49:50 +00:00
"testing"
cid "github.com/ipfs/go-cid"
"github.com/multiformats/go-multihash"
"github.com/filecoin-project/go-state-types/abi"
)
2021-02-28 08:35:27 +00:00
func TestBoltTrackingStore(t *testing.T) {
testTrackingStore(t, "bolt")
}
func testTrackingStore(t *testing.T, tsType string) {
2021-02-27 11:40:26 +00:00
t.Helper()
2020-11-26 18:49:50 +00:00
makeCid := func(key string) cid.Cid {
h, err := multihash.Sum([]byte(key), multihash.SHA2_256, -1)
if err != nil {
t.Fatal(err)
}
return cid.NewCidV1(cid.Raw, h)
}
mustHave := func(s TrackingStore, cid cid.Cid, epoch abi.ChainEpoch) {
val, err := s.Get(cid)
if err != nil {
t.Fatal(err)
}
if val != epoch {
t.Fatal("epoch mismatch")
}
}
mustNotHave := func(s TrackingStore, cid cid.Cid) {
_, err := s.Get(cid)
2021-02-27 11:40:26 +00:00
if err == nil {
t.Fatal("expected error")
2020-11-26 18:49:50 +00:00
}
}
path := "/tmp/markset-test"
2021-02-27 11:40:26 +00:00
err := os.MkdirAll(path, 0777)
if err != nil {
t.Fatal(err)
}
2021-03-01 17:39:00 +00:00
s, err := OpenTrackingStore(path, tsType)
2020-11-26 18:49:50 +00:00
if err != nil {
t.Fatal(err)
}
k1 := makeCid("a")
k2 := makeCid("b")
k3 := makeCid("c")
k4 := makeCid("d")
s.Put(k1, 1) //nolint
s.Put(k2, 2) //nolint
s.Put(k3, 3) //nolint
s.Put(k4, 4) //nolint
mustHave(s, k1, 1)
mustHave(s, k2, 2)
mustHave(s, k3, 3)
mustHave(s, k4, 4)
s.Delete(k1) // nolint
s.Delete(k2) // nolint
mustNotHave(s, k1)
mustNotHave(s, k2)
mustHave(s, k3, 3)
mustHave(s, k4, 4)
2020-11-26 18:52:52 +00:00
s.PutBatch([]cid.Cid{k1}, 1) //nolint
s.PutBatch([]cid.Cid{k2}, 2) //nolint
2020-11-26 18:49:50 +00:00
mustHave(s, k1, 1)
mustHave(s, k2, 2)
mustHave(s, k3, 3)
mustHave(s, k4, 4)
allKeys := map[string]struct{}{
2020-11-26 18:52:52 +00:00
k1.String(): {},
k2.String(): {},
k3.String(): {},
k4.String(): {},
2020-11-26 18:49:50 +00:00
}
err = s.ForEach(func(k cid.Cid, _ abi.ChainEpoch) error {
2020-11-26 18:49:50 +00:00
_, ok := allKeys[k.String()]
if !ok {
t.Fatal("unexpected key")
}
delete(allKeys, k.String())
return nil
})
if err != nil {
t.Fatal(err)
2020-11-26 18:49:50 +00:00
}
if len(allKeys) != 0 {
t.Fatal("not all keys were returned")
}
// no close and reopen and ensure the keys still exist
err = s.Close()
if err != nil {
t.Fatal(err)
}
2021-03-01 17:39:00 +00:00
s, err = OpenTrackingStore(path, tsType)
2020-11-26 18:49:50 +00:00
if err != nil {
t.Fatal(err)
}
mustHave(s, k1, 1)
mustHave(s, k2, 2)
mustHave(s, k3, 3)
mustHave(s, k4, 4)
s.Close() //nolint:errcheck
}