[#1423] local storage: Activate skipped unit tests after fix

Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
remotes/fyrchik/token-context
Leonard Lyubich 2022-05-25 14:21:30 +03:00 committed by LeL
parent 4c8ec20e32
commit 883f2f1ac6
8 changed files with 0 additions and 12 deletions

View File

@ -40,7 +40,6 @@ func TestHeadRaw(t *testing.T) {
link.SetSplitID(splitID)
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)
s2 := testNewShard(t, 2)

View File

@ -53,7 +53,6 @@ func TestStorageEngine_Inhume(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)
s2 := testNewShard(t, 2)

View File

@ -14,7 +14,6 @@ import (
)
func TestDB_Delete(t *testing.T) {
t.Skip("not working, see neofs-sdk-go#242")
db := newDB(t)
cid := cidtest.ID()
@ -70,7 +69,6 @@ func TestDB_Delete(t *testing.T) {
}
func TestDeleteAllChildren(t *testing.T) {
t.Skip("not working, see neofs-sdk-go#242")
db := newDB(t)
cid := cidtest.ID()

View File

@ -68,7 +68,6 @@ func TestDB_Exists(t *testing.T) {
})
t.Run("virtual object", func(t *testing.T) {
t.Skip("not working, see neofs-sdk-go#242")
cid := cidtest.ID()
parent := generateObjectWithCID(t, cid)
@ -107,7 +106,6 @@ func TestDB_Exists(t *testing.T) {
link.SetSplitID(splitID)
t.Run("direct order", func(t *testing.T) {
t.Skip("not working, see neofs-sdk-go#242")
err := putBig(db, child)
require.NoError(t, err)
@ -132,7 +130,6 @@ func TestDB_Exists(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)
require.NoError(t, err)

View File

@ -90,7 +90,6 @@ func TestDB_Get(t *testing.T) {
require.NoError(t, err)
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)
require.Error(t, err)

View File

@ -138,7 +138,6 @@ func TestDB_SelectUserAttributes(t *testing.T) {
}
func TestDB_SelectRootPhyParent(t *testing.T) {
t.Skip("not working, see neofs-sdk-go#242")
db := newDB(t)
cid := cidtest.ID()
@ -490,7 +489,6 @@ func TestDB_SelectWithSlowFilters(t *testing.T) {
}
func TestDB_SelectObjectID(t *testing.T) {
t.Skip("not working, see neofs-sdk-go#242")
db := newDB(t)
cid := cidtest.ID()

View File

@ -67,7 +67,6 @@ func testShardGet(t *testing.T, hasWriteCache bool) {
})
t.Run("parent object", func(t *testing.T) {
t.Skip("not working, see neofs-sdk-go#242")
obj := generateObject(t)
addAttribute(obj, "foo", "bar")
cnr := cidtest.ID()

View File

@ -46,7 +46,6 @@ func testShardHead(t *testing.T, hasWriteCache bool) {
})
t.Run("virtual object", func(t *testing.T) {
t.Skip("not working, see neofs-sdk-go#242")
cid := cidtest.ID()
splitID := objectSDK.NewSplitID()