2022-09-26 21:39:34 +00:00
|
|
|
package engine
|
|
|
|
|
|
|
|
import (
|
2023-08-31 16:26:47 +00:00
|
|
|
"context"
|
2022-09-26 21:39:34 +00:00
|
|
|
"testing"
|
|
|
|
|
2024-01-30 15:18:58 +00:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/shard"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/util/logicerr"
|
2024-02-26 08:19:52 +00:00
|
|
|
"git.frostfs.info/TrueCloudLab/hrw"
|
2022-09-26 21:39:34 +00:00
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestRemoveShard(t *testing.T) {
|
|
|
|
const numOfShards = 6
|
|
|
|
|
2023-03-30 11:58:20 +00:00
|
|
|
te := testNewEngine(t).setShardsNum(t, numOfShards)
|
|
|
|
e, ids := te.engine, te.shardIDs
|
2024-01-09 13:26:43 +00:00
|
|
|
defer func() { require.NoError(t, e.Close(context.Background())) }()
|
2022-09-26 21:39:34 +00:00
|
|
|
|
|
|
|
require.Equal(t, numOfShards, len(e.shardPools))
|
|
|
|
require.Equal(t, numOfShards, len(e.shards))
|
|
|
|
|
|
|
|
removedNum := numOfShards / 2
|
|
|
|
|
|
|
|
mSh := make(map[string]bool, numOfShards)
|
2023-03-30 11:58:20 +00:00
|
|
|
for i, id := range ids {
|
2022-09-26 21:39:34 +00:00
|
|
|
if i == removedNum {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
2023-03-30 11:58:20 +00:00
|
|
|
mSh[id.String()] = true
|
2022-09-26 21:39:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for id, remove := range mSh {
|
|
|
|
if remove {
|
2022-09-30 14:01:48 +00:00
|
|
|
e.removeShards(id)
|
2022-09-26 21:39:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
require.Equal(t, numOfShards-removedNum, len(e.shardPools))
|
|
|
|
require.Equal(t, numOfShards-removedNum, len(e.shards))
|
|
|
|
|
|
|
|
for id, removed := range mSh {
|
|
|
|
_, ok := e.shards[id]
|
|
|
|
require.True(t, ok != removed)
|
|
|
|
}
|
|
|
|
}
|
2024-01-30 15:18:58 +00:00
|
|
|
|
|
|
|
func TestDisableShards(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
const numOfShards = 2
|
|
|
|
|
|
|
|
te := testNewEngine(t).setShardsNum(t, numOfShards)
|
|
|
|
e, ids := te.engine, te.shardIDs
|
|
|
|
defer func() { require.NoError(t, e.Close(context.Background())) }()
|
|
|
|
|
|
|
|
require.ErrorAs(t, e.DetachShards(ids), new(logicerr.Logical))
|
|
|
|
require.ErrorAs(t, e.DetachShards(nil), new(logicerr.Logical))
|
|
|
|
require.ErrorAs(t, e.DetachShards([]*shard.ID{}), new(logicerr.Logical))
|
|
|
|
|
|
|
|
require.NoError(t, e.DetachShards([]*shard.ID{ids[0]}))
|
|
|
|
|
|
|
|
require.Equal(t, 1, len(e.shards))
|
|
|
|
}
|
2024-02-26 08:19:52 +00:00
|
|
|
|
|
|
|
func TestSortShardsByWeight(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
const numOfShards = 500
|
|
|
|
|
|
|
|
var shards1 []hashedShard
|
|
|
|
var weights1 []float64
|
|
|
|
var shards2 []hashedShard
|
2024-08-30 16:20:55 +00:00
|
|
|
for i := range numOfShards {
|
2024-02-26 08:19:52 +00:00
|
|
|
shards1 = append(shards1, hashedShard{
|
|
|
|
hash: uint64(i),
|
|
|
|
})
|
|
|
|
weights1 = append(weights1, 0)
|
|
|
|
shards2 = append(shards2, hashedShard{
|
|
|
|
hash: uint64(i),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
hrw.SortHasherSliceByWeightValue(shards1, weights1, 0)
|
|
|
|
hrw.SortHasherSliceByValue(shards2, 0)
|
|
|
|
|
|
|
|
require.Equal(t, shards1, shards2)
|
|
|
|
}
|