forked from TrueCloudLab/frostfs-node
Dmitrii Stepanov
68a2f36636
Skip staticcheck for depracated methods. Will be fixed soon. Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
121 lines
3.8 KiB
Go
121 lines
3.8 KiB
Go
package morph
|
|
|
|
import (
|
|
"encoding/hex"
|
|
"os"
|
|
"path/filepath"
|
|
"strconv"
|
|
"testing"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/innerring"
|
|
"github.com/nspcc-dev/neo-go/pkg/config"
|
|
"github.com/nspcc-dev/neo-go/pkg/crypto/keys"
|
|
"github.com/nspcc-dev/neo-go/pkg/vm"
|
|
"github.com/nspcc-dev/neo-go/pkg/wallet"
|
|
"github.com/spf13/viper"
|
|
"github.com/stretchr/testify/require"
|
|
"gopkg.in/yaml.v3"
|
|
)
|
|
|
|
const (
|
|
contractsPath = "../../../../../../frostfs-contract/frostfs-contract-v0.16.0.tar.gz"
|
|
protoFileName = "proto.yml"
|
|
)
|
|
|
|
func TestInitialize(t *testing.T) {
|
|
// This test needs frostfs-contract tarball, so it is skipped by default.
|
|
// It is here for performing local testing after the changes.
|
|
t.Skip()
|
|
|
|
t.Run("1 nodes", func(t *testing.T) {
|
|
testInitialize(t, 1)
|
|
})
|
|
t.Run("4 nodes", func(t *testing.T) {
|
|
testInitialize(t, 4)
|
|
})
|
|
t.Run("7 nodes", func(t *testing.T) {
|
|
testInitialize(t, 7)
|
|
})
|
|
}
|
|
|
|
func testInitialize(t *testing.T, committeeSize int) {
|
|
testdataDir := t.TempDir()
|
|
v := viper.GetViper()
|
|
|
|
generateTestData(t, testdataDir, committeeSize)
|
|
v.Set(protoConfigPath, filepath.Join(testdataDir, protoFileName))
|
|
|
|
// Set to the path or remove the next statement to download from the network.
|
|
require.NoError(t, initCmd.Flags().Set(contractsInitFlag, contractsPath))
|
|
v.Set(localDumpFlag, filepath.Join(testdataDir, "out"))
|
|
v.Set(alphabetWalletsFlag, testdataDir)
|
|
v.Set(epochDurationInitFlag, 1)
|
|
v.Set(maxObjectSizeInitFlag, 1024)
|
|
|
|
setTestCredentials(v, committeeSize)
|
|
require.NoError(t, initializeSideChainCmd(initCmd, nil))
|
|
|
|
t.Run("force-new-epoch", func(t *testing.T) {
|
|
require.NoError(t, forceNewEpochCmd(forceNewEpoch, nil))
|
|
})
|
|
t.Run("set-config", func(t *testing.T) {
|
|
require.NoError(t, setConfigCmd(setConfig, []string{"MaintenanceModeAllowed=true"}))
|
|
})
|
|
t.Run("set-policy", func(t *testing.T) {
|
|
require.NoError(t, setPolicyCmd(setPolicy, []string{"ExecFeeFactor=1"}))
|
|
})
|
|
t.Run("remove-node", func(t *testing.T) {
|
|
pk, err := keys.NewPrivateKey()
|
|
require.NoError(t, err)
|
|
|
|
pub := hex.EncodeToString(pk.PublicKey().Bytes())
|
|
require.NoError(t, removeNodesCmd(removeNodes, []string{pub}))
|
|
})
|
|
}
|
|
|
|
func generateTestData(t *testing.T, dir string, size int) {
|
|
v := viper.GetViper()
|
|
v.Set(alphabetWalletsFlag, dir)
|
|
|
|
sizeStr := strconv.FormatUint(uint64(size), 10)
|
|
require.NoError(t, generateAlphabetCmd.Flags().Set(alphabetSizeFlag, sizeStr))
|
|
|
|
setTestCredentials(v, size)
|
|
require.NoError(t, generateAlphabetCreds(generateAlphabetCmd, nil))
|
|
|
|
var pubs []string
|
|
for i := 0; i < size; i++ {
|
|
p := filepath.Join(dir, innerring.GlagoliticLetter(i).String()+".json")
|
|
w, err := wallet.NewWalletFromFile(p)
|
|
require.NoError(t, err, "wallet doesn't exist")
|
|
for _, acc := range w.Accounts {
|
|
if acc.Label == singleAccountName {
|
|
pub, ok := vm.ParseSignatureContract(acc.Contract.Script)
|
|
require.True(t, ok)
|
|
pubs = append(pubs, hex.EncodeToString(pub))
|
|
continue
|
|
}
|
|
}
|
|
}
|
|
|
|
cfg := config.Config{}
|
|
cfg.ProtocolConfiguration.Magic = 12345
|
|
cfg.ProtocolConfiguration.ValidatorsCount = size
|
|
cfg.ProtocolConfiguration.SecondsPerBlock = 1 //lint:ignore SA1019 https://git.frostfs.info/TrueCloudLab/frostfs-node/issues/202
|
|
cfg.ProtocolConfiguration.StandbyCommittee = pubs // sorted by glagolic letters
|
|
cfg.ProtocolConfiguration.P2PSigExtensions = true
|
|
cfg.ProtocolConfiguration.VerifyTransactions = true
|
|
cfg.ProtocolConfiguration.VerifyBlocks = true //lint:ignore SA1019 https://git.frostfs.info/TrueCloudLab/frostfs-node/issues/202
|
|
data, err := yaml.Marshal(cfg)
|
|
require.NoError(t, err)
|
|
|
|
protoPath := filepath.Join(dir, protoFileName)
|
|
require.NoError(t, os.WriteFile(protoPath, data, os.ModePerm))
|
|
}
|
|
|
|
func setTestCredentials(v *viper.Viper, size int) {
|
|
for i := 0; i < size; i++ {
|
|
v.Set("credentials."+innerring.GlagoliticLetter(i).String(), strconv.FormatUint(uint64(i), 10))
|
|
}
|
|
v.Set("credentials.contract", testContractPassword)
|
|
}
|