Dmitrii Stepanov
0b87be804a
All checks were successful
DCO action / DCO (pull_request) Successful in 1m35s
Tests and linters / Run gofumpt (pull_request) Successful in 1m37s
Pre-commit hooks / Pre-commit (pull_request) Successful in 2m40s
Vulncheck / Vulncheck (pull_request) Successful in 2m35s
Tests and linters / Staticcheck (pull_request) Successful in 2m52s
Build / Build Components (pull_request) Successful in 3m33s
Tests and linters / gopls check (pull_request) Successful in 3m35s
Tests and linters / Lint (pull_request) Successful in 4m44s
Tests and linters / Tests (pull_request) Successful in 5m14s
Tests and linters / Tests with -race (pull_request) Successful in 6m1s
Drop not required `Eventually` calls. Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
85 lines
2.1 KiB
Go
85 lines
2.1 KiB
Go
package shard
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"testing"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/core/object"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/internal/testutil"
|
|
cidtest "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/container/id/test"
|
|
objectSDK "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/object"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestShard_Head(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
t.Run("without write cache", func(t *testing.T) {
|
|
t.Parallel()
|
|
testShardHead(t, false)
|
|
})
|
|
|
|
t.Run("with write cache", func(t *testing.T) {
|
|
t.Parallel()
|
|
testShardHead(t, true)
|
|
})
|
|
}
|
|
|
|
func testShardHead(t *testing.T, hasWriteCache bool) {
|
|
sh := newShard(t, hasWriteCache)
|
|
defer func() { require.NoError(t, sh.Close()) }()
|
|
|
|
var putPrm PutPrm
|
|
var headPrm HeadPrm
|
|
|
|
t.Run("regular object", func(t *testing.T) {
|
|
obj := testutil.GenerateObject()
|
|
testutil.AddAttribute(obj, "foo", "bar")
|
|
|
|
putPrm.SetObject(obj)
|
|
|
|
_, err := sh.Put(context.Background(), putPrm)
|
|
require.NoError(t, err)
|
|
|
|
headPrm.SetAddress(object.AddressOf(obj))
|
|
|
|
res, err := sh.Head(context.Background(), headPrm)
|
|
require.NoError(t, err)
|
|
require.Equal(t, obj.CutPayload(), res.Object())
|
|
})
|
|
|
|
t.Run("virtual object", func(t *testing.T) {
|
|
cnr := cidtest.ID()
|
|
splitID := objectSDK.NewSplitID()
|
|
|
|
parent := testutil.GenerateObjectWithCID(cnr)
|
|
testutil.AddAttribute(parent, "foo", "bar")
|
|
|
|
child := testutil.GenerateObjectWithCID(cnr)
|
|
child.SetParent(parent)
|
|
idParent, _ := parent.ID()
|
|
child.SetParentID(idParent)
|
|
child.SetSplitID(splitID)
|
|
|
|
putPrm.SetObject(child)
|
|
|
|
_, err := sh.Put(context.Background(), putPrm)
|
|
require.NoError(t, err)
|
|
|
|
headPrm.SetAddress(object.AddressOf(parent))
|
|
headPrm.SetRaw(true)
|
|
|
|
var siErr *objectSDK.SplitInfoError
|
|
|
|
_, err = sh.Head(context.Background(), headPrm)
|
|
require.True(t, errors.As(err, &siErr))
|
|
|
|
headPrm.SetAddress(object.AddressOf(parent))
|
|
headPrm.SetRaw(false)
|
|
|
|
head, err := sh.Head(context.Background(), headPrm)
|
|
require.NoError(t, err)
|
|
require.Equal(t, parent.CutPayload(), head.Object())
|
|
})
|
|
}
|