Alexander Chuprov
033eaf77e1
All checks were successful
Build / Build Components (1.20) (pull_request) Successful in 3m52s
Build / Build Components (1.19) (pull_request) Successful in 4m1s
ci/woodpecker/pr/pre-commit Pipeline was successful
Tests and linters / Tests with -race (pull_request) Successful in 5m36s
Tests and linters / Tests (1.20) (pull_request) Successful in 5m55s
Tests and linters / Lint (pull_request) Successful in 14m40s
Tests and linters / Tests (1.19) (pull_request) Successful in 15m29s
ci/woodpecker/push/pre-commit Pipeline was successful
Standardize the alias of the import frostfs-sdk-go/object as objectSDK. Signed-off-by: Alexander Chuprov <a.chuprov@yadro.com>
87 lines
2.2 KiB
Go
87 lines
2.2 KiB
Go
package engine
|
|
|
|
import (
|
|
"context"
|
|
"os"
|
|
"testing"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/internal/testutil"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/shard"
|
|
cidtest "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/container/id/test"
|
|
objectSDK "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/object"
|
|
oid "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/object/id"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestHeadRaw(t *testing.T) {
|
|
defer os.RemoveAll(t.Name())
|
|
|
|
cnr := cidtest.ID()
|
|
splitID := objectSDK.NewSplitID()
|
|
|
|
parent := testutil.GenerateObjectWithCID(cnr)
|
|
testutil.AddAttribute(parent, "foo", "bar")
|
|
|
|
var parentAddr oid.Address
|
|
parentAddr.SetContainer(cnr)
|
|
|
|
idParent, _ := parent.ID()
|
|
parentAddr.SetObject(idParent)
|
|
|
|
child := testutil.GenerateObjectWithCID(cnr)
|
|
child.SetParent(parent)
|
|
child.SetParentID(idParent)
|
|
child.SetSplitID(splitID)
|
|
|
|
link := testutil.GenerateObjectWithCID(cnr)
|
|
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) {
|
|
s1 := testNewShard(t, 1)
|
|
s2 := testNewShard(t, 2)
|
|
|
|
e := testNewEngine(t).setInitializedShards(t, s1, s2).engine
|
|
defer e.Close()
|
|
|
|
var putPrmLeft shard.PutPrm
|
|
putPrmLeft.SetObject(child)
|
|
|
|
var putPrmLink shard.PutPrm
|
|
putPrmLink.SetObject(link)
|
|
|
|
// put most left object in one shard
|
|
_, err := s1.Put(context.Background(), putPrmLeft)
|
|
require.NoError(t, err)
|
|
|
|
// put link object in another shard
|
|
_, err = s2.Put(context.Background(), putPrmLink)
|
|
require.NoError(t, err)
|
|
|
|
// head with raw flag should return SplitInfoError
|
|
var headPrm HeadPrm
|
|
headPrm.WithAddress(parentAddr)
|
|
headPrm.WithRaw(true)
|
|
|
|
_, err = e.Head(context.Background(), headPrm)
|
|
require.Error(t, err)
|
|
|
|
var si *objectSDK.SplitInfoError
|
|
require.ErrorAs(t, err, &si)
|
|
|
|
// 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)
|
|
})
|
|
}
|