Commit 173940b4 authored by Juan Benet's avatar Juan Benet

address CR - use dstest.Mock

License: MIT
Signed-off-by: default avatarJuan Benet <juan@benet.ai>
parent b26887e5
...@@ -32,13 +32,6 @@ type dagservAndPinner struct { ...@@ -32,13 +32,6 @@ type dagservAndPinner struct {
mp pin.Pinner mp pin.Pinner
} }
func getDagserv(t *testing.T) DAGService {
db := dssync.MutexWrap(ds.NewMapDatastore())
bs := bstore.NewBlockstore(db)
blockserv := bserv.New(bs, offline.Exchange(bs))
return NewDAGService(blockserv)
}
func getDagservAndPinner(t *testing.T) dagservAndPinner { func getDagservAndPinner(t *testing.T) dagservAndPinner {
db := dssync.MutexWrap(ds.NewMapDatastore()) db := dssync.MutexWrap(ds.NewMapDatastore())
bs := bstore.NewBlockstore(db) bs := bstore.NewBlockstore(db)
...@@ -253,7 +246,7 @@ func assertCanGet(t *testing.T, ds DAGService, n *Node) { ...@@ -253,7 +246,7 @@ func assertCanGet(t *testing.T, ds DAGService, n *Node) {
} }
func TestEmptyKey(t *testing.T) { func TestEmptyKey(t *testing.T) {
ds := getDagserv(t) ds := dstest.Mock()
_, err := ds.Get(context.Background(), key.Key("")) _, err := ds.Get(context.Background(), key.Key(""))
if err != ErrNotFound { if err != ErrNotFound {
t.Error("dag service should error when key is nil", err) t.Error("dag service should error when key is nil", err)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment