forked from TrueCloudLab/frostfs-node
Dmitrii Stepanov
0b87be804a
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))
|
|
}
|