forked from nspcc-dev/neofs-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[nspcc-dev#1770] engine: Support configuration reload
Currently, it only supports changing the compound of the shards. Signed-off-by: Pavel Karpy <carpawell@nspcc.ru>
- Loading branch information
1 parent
3cb248b
commit 416ed4a
Showing
5 changed files
with
287 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
package engine | ||
|
||
import ( | ||
"os" | ||
"testing" | ||
|
||
"github.com/stretchr/testify/require" | ||
) | ||
|
||
func TestRemoveShard(t *testing.T) { | ||
const numOfShards = 6 | ||
|
||
e := testNewEngineWithShardNum(t, numOfShards) | ||
t.Cleanup(func() { | ||
e.Close() | ||
os.RemoveAll(t.Name()) | ||
}) | ||
|
||
require.Equal(t, numOfShards, len(e.shardPools)) | ||
require.Equal(t, numOfShards, len(e.shards)) | ||
|
||
removedNum := numOfShards / 2 | ||
|
||
mSh := make(map[string]bool, numOfShards) | ||
for i, sh := range e.DumpInfo().Shards { | ||
if i == removedNum { | ||
break | ||
} | ||
|
||
mSh[sh.ID.String()] = true | ||
} | ||
|
||
for id, remove := range mSh { | ||
if remove { | ||
require.NoError(t, e.removeShards(id)) | ||
} | ||
} | ||
|
||
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) | ||
} | ||
} |