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>
71 lines
1.8 KiB
Go
71 lines
1.8 KiB
Go
package shard
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/core/object"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/internal/testutil"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-sdk-go/client"
|
|
cidtest "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/container/id/test"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestShard_Delete_SmallObject(t *testing.T) {
|
|
t.Run("small object without write cache", func(t *testing.T) {
|
|
t.Parallel()
|
|
testShard(t, false, 1<<5)
|
|
})
|
|
|
|
t.Run("small object with write cache", func(t *testing.T) {
|
|
t.Parallel()
|
|
testShard(t, true, 1<<5)
|
|
})
|
|
}
|
|
|
|
func TestShard_Delete_BigObject(t *testing.T) {
|
|
t.Run("big object without write cache", func(t *testing.T) {
|
|
t.Parallel()
|
|
testShard(t, false, 1<<20)
|
|
})
|
|
|
|
t.Run("big object with write cache", func(t *testing.T) {
|
|
t.Parallel()
|
|
testShard(t, true, 1<<20)
|
|
})
|
|
}
|
|
|
|
func testShard(t *testing.T, hasWriteCache bool, payloadSize int) {
|
|
sh := newShard(t, hasWriteCache)
|
|
defer func() { require.NoError(t, sh.Close()) }()
|
|
|
|
cnr := cidtest.ID()
|
|
|
|
obj := testutil.GenerateObjectWithCID(cnr)
|
|
testutil.AddAttribute(obj, "foo", "bar")
|
|
testutil.AddPayload(obj, payloadSize)
|
|
|
|
var putPrm PutPrm
|
|
putPrm.SetObject(obj)
|
|
|
|
var getPrm GetPrm
|
|
getPrm.SetAddress(object.AddressOf(obj))
|
|
|
|
var delPrm DeletePrm
|
|
delPrm.SetAddresses(object.AddressOf(obj))
|
|
|
|
_, err := sh.Put(context.Background(), putPrm)
|
|
require.NoError(t, err)
|
|
|
|
_, err = sh.Get(context.Background(), getPrm)
|
|
require.NoError(t, err)
|
|
|
|
if hasWriteCache {
|
|
require.NoError(t, sh.FlushWriteCache(context.Background(), FlushWriteCachePrm{ignoreErrors: false}))
|
|
}
|
|
_, err = sh.Delete(context.Background(), delPrm)
|
|
require.NoError(t, err)
|
|
|
|
_, err = sh.Get(context.Background(), getPrm)
|
|
require.True(t, client.IsErrObjectNotFound(err))
|
|
}
|