提交 562c8019 作者: Juan Benet

address CR - use dstest.Mock

License: MIT
Signed-off-by: 's avatarJuan Benet <juan@benet.ai>
上级 9f79dde0
...@@ -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 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论