forked from TrueCloudLab/frostfs-node
[#1423] local storage: Activate skipped unit tests after fix
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
parent
4c8ec20e32
commit
883f2f1ac6
8 changed files with 0 additions and 12 deletions
|
@ -40,7 +40,6 @@ func TestHeadRaw(t *testing.T) {
|
||||||
link.SetSplitID(splitID)
|
link.SetSplitID(splitID)
|
||||||
|
|
||||||
t.Run("virtual object split in different shards", func(t *testing.T) {
|
t.Run("virtual object split in different shards", func(t *testing.T) {
|
||||||
t.Skip("not working, see neofs-sdk-go#242")
|
|
||||||
s1 := testNewShard(t, 1)
|
s1 := testNewShard(t, 1)
|
||||||
s2 := testNewShard(t, 2)
|
s2 := testNewShard(t, 2)
|
||||||
|
|
||||||
|
|
|
@ -53,7 +53,6 @@ func TestStorageEngine_Inhume(t *testing.T) {
|
||||||
})
|
})
|
||||||
|
|
||||||
t.Run("delete big object", func(t *testing.T) {
|
t.Run("delete big object", func(t *testing.T) {
|
||||||
t.Skip("not working, see neofs-sdk-go#242")
|
|
||||||
s1 := testNewShard(t, 1)
|
s1 := testNewShard(t, 1)
|
||||||
s2 := testNewShard(t, 2)
|
s2 := testNewShard(t, 2)
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,6 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestDB_Delete(t *testing.T) {
|
func TestDB_Delete(t *testing.T) {
|
||||||
t.Skip("not working, see neofs-sdk-go#242")
|
|
||||||
db := newDB(t)
|
db := newDB(t)
|
||||||
|
|
||||||
cid := cidtest.ID()
|
cid := cidtest.ID()
|
||||||
|
@ -70,7 +69,6 @@ func TestDB_Delete(t *testing.T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestDeleteAllChildren(t *testing.T) {
|
func TestDeleteAllChildren(t *testing.T) {
|
||||||
t.Skip("not working, see neofs-sdk-go#242")
|
|
||||||
db := newDB(t)
|
db := newDB(t)
|
||||||
|
|
||||||
cid := cidtest.ID()
|
cid := cidtest.ID()
|
||||||
|
|
|
@ -68,7 +68,6 @@ func TestDB_Exists(t *testing.T) {
|
||||||
})
|
})
|
||||||
|
|
||||||
t.Run("virtual object", func(t *testing.T) {
|
t.Run("virtual object", func(t *testing.T) {
|
||||||
t.Skip("not working, see neofs-sdk-go#242")
|
|
||||||
cid := cidtest.ID()
|
cid := cidtest.ID()
|
||||||
parent := generateObjectWithCID(t, cid)
|
parent := generateObjectWithCID(t, cid)
|
||||||
|
|
||||||
|
@ -107,7 +106,6 @@ func TestDB_Exists(t *testing.T) {
|
||||||
link.SetSplitID(splitID)
|
link.SetSplitID(splitID)
|
||||||
|
|
||||||
t.Run("direct order", func(t *testing.T) {
|
t.Run("direct order", func(t *testing.T) {
|
||||||
t.Skip("not working, see neofs-sdk-go#242")
|
|
||||||
err := putBig(db, child)
|
err := putBig(db, child)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
@ -132,7 +130,6 @@ func TestDB_Exists(t *testing.T) {
|
||||||
})
|
})
|
||||||
|
|
||||||
t.Run("reverse order", func(t *testing.T) {
|
t.Run("reverse order", func(t *testing.T) {
|
||||||
t.Skip("not working, see neofs-sdk-go#242")
|
|
||||||
err := meta.Put(db, link, nil)
|
err := meta.Put(db, link, nil)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
|
|
@ -90,7 +90,6 @@ func TestDB_Get(t *testing.T) {
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
|
|
||||||
t.Run("raw is true", func(t *testing.T) {
|
t.Run("raw is true", func(t *testing.T) {
|
||||||
t.Skip("not working, see neofs-sdk-go#242")
|
|
||||||
_, err = meta.GetRaw(db, object.AddressOf(parent), true)
|
_, err = meta.GetRaw(db, object.AddressOf(parent), true)
|
||||||
require.Error(t, err)
|
require.Error(t, err)
|
||||||
|
|
||||||
|
|
|
@ -138,7 +138,6 @@ func TestDB_SelectUserAttributes(t *testing.T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestDB_SelectRootPhyParent(t *testing.T) {
|
func TestDB_SelectRootPhyParent(t *testing.T) {
|
||||||
t.Skip("not working, see neofs-sdk-go#242")
|
|
||||||
db := newDB(t)
|
db := newDB(t)
|
||||||
|
|
||||||
cid := cidtest.ID()
|
cid := cidtest.ID()
|
||||||
|
@ -490,7 +489,6 @@ func TestDB_SelectWithSlowFilters(t *testing.T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestDB_SelectObjectID(t *testing.T) {
|
func TestDB_SelectObjectID(t *testing.T) {
|
||||||
t.Skip("not working, see neofs-sdk-go#242")
|
|
||||||
db := newDB(t)
|
db := newDB(t)
|
||||||
|
|
||||||
cid := cidtest.ID()
|
cid := cidtest.ID()
|
||||||
|
|
|
@ -67,7 +67,6 @@ func testShardGet(t *testing.T, hasWriteCache bool) {
|
||||||
})
|
})
|
||||||
|
|
||||||
t.Run("parent object", func(t *testing.T) {
|
t.Run("parent object", func(t *testing.T) {
|
||||||
t.Skip("not working, see neofs-sdk-go#242")
|
|
||||||
obj := generateObject(t)
|
obj := generateObject(t)
|
||||||
addAttribute(obj, "foo", "bar")
|
addAttribute(obj, "foo", "bar")
|
||||||
cnr := cidtest.ID()
|
cnr := cidtest.ID()
|
||||||
|
|
|
@ -46,7 +46,6 @@ func testShardHead(t *testing.T, hasWriteCache bool) {
|
||||||
})
|
})
|
||||||
|
|
||||||
t.Run("virtual object", func(t *testing.T) {
|
t.Run("virtual object", func(t *testing.T) {
|
||||||
t.Skip("not working, see neofs-sdk-go#242")
|
|
||||||
cid := cidtest.ID()
|
cid := cidtest.ID()
|
||||||
splitID := objectSDK.NewSplitID()
|
splitID := objectSDK.NewSplitID()
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue