f15e6e888f
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
80 lines
2 KiB
Go
80 lines
2 KiB
Go
package engine
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/nspcc-dev/neofs-node/pkg/local_object_storage/shard"
|
|
cidtest "github.com/nspcc-dev/neofs-sdk-go/container/id/test"
|
|
"github.com/nspcc-dev/neofs-sdk-go/object"
|
|
addressSDK "github.com/nspcc-dev/neofs-sdk-go/object/address"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestHeadRaw(t *testing.T) {
|
|
defer os.RemoveAll(t.Name())
|
|
|
|
cid := cidtest.ID()
|
|
splitID := object.NewSplitID()
|
|
|
|
parent := generateObjectWithCID(t, cid)
|
|
addAttribute(parent, "foo", "bar")
|
|
|
|
parentAddr := addressSDK.NewAddress()
|
|
parentAddr.SetContainerID(cid)
|
|
|
|
idParent, _ := parent.ID()
|
|
parentAddr.SetObjectID(idParent)
|
|
|
|
child := generateObjectWithCID(t, cid)
|
|
child.SetParent(parent)
|
|
child.SetParentID(idParent)
|
|
child.SetSplitID(splitID)
|
|
|
|
link := generateObjectWithCID(t, cid)
|
|
link.SetParent(parent)
|
|
link.SetParentID(idParent)
|
|
|
|
idChild, _ := child.ID()
|
|
link.SetChildren(idChild)
|
|
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)
|
|
|
|
e := testNewEngineWithShards(s1, s2)
|
|
defer e.Close()
|
|
|
|
putPrmLeft := new(shard.PutPrm).WithObject(child)
|
|
putPrmLink := new(shard.PutPrm).WithObject(link)
|
|
|
|
// put most left object in one shard
|
|
_, err := s1.Put(putPrmLeft)
|
|
require.NoError(t, err)
|
|
|
|
// put link object in another shard
|
|
_, err = s2.Put(putPrmLink)
|
|
require.NoError(t, err)
|
|
|
|
// head with raw flag should return SplitInfoError
|
|
headPrm := new(HeadPrm).WithAddress(parentAddr).WithRaw(true)
|
|
_, err = e.Head(headPrm)
|
|
require.Error(t, err)
|
|
|
|
si, ok := err.(*object.SplitInfoError)
|
|
require.True(t, ok)
|
|
|
|
// SplitInfoError should contain info from both shards
|
|
require.Equal(t, splitID, si.SplitInfo().SplitID())
|
|
|
|
id1, _ := child.ID()
|
|
id2, _ := si.SplitInfo().LastPart()
|
|
require.Equal(t, id1, id2)
|
|
|
|
id1, _ = link.ID()
|
|
id2, _ = si.SplitInfo().Link()
|
|
require.Equal(t, id1, id2)
|
|
})
|
|
}
|