forked from TrueCloudLab/frostfs-node
e29bcd98e2
Signed-off-by: Pavel Karpy <carpawell@nspcc.ru>
54 lines
1.8 KiB
Go
54 lines
1.8 KiB
Go
package morphconfig_test
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/encoding/fixedn"
|
|
"github.com/nspcc-dev/neofs-node/cmd/neofs-node/config"
|
|
morphconfig "github.com/nspcc-dev/neofs-node/cmd/neofs-node/config/morph"
|
|
configtest "github.com/nspcc-dev/neofs-node/cmd/neofs-node/config/test"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestMorphSection(t *testing.T) {
|
|
t.Run("defaults", func(t *testing.T) {
|
|
empty := configtest.EmptyConfig()
|
|
|
|
require.Panics(t, func() { morphconfig.RPCEndpoint(empty) })
|
|
require.Panics(t, func() { morphconfig.NotificationEndpoint(empty) })
|
|
require.Equal(t, morphconfig.DialTimeoutDefault, morphconfig.DialTimeout(empty))
|
|
require.Equal(t, false, morphconfig.DisableCache(empty))
|
|
require.Equal(t, fixedn.Fixed8(morphconfig.NotaryDepositAmountDefault), morphconfig.Notary(empty).Amount())
|
|
require.Equal(t, morphconfig.NotaryDepositDurationDefault, morphconfig.Notary(empty).Duration())
|
|
})
|
|
|
|
const path = "../../../../config/example/node"
|
|
|
|
var (
|
|
rpcs = []string{
|
|
"https://rpc1.morph.fs.neo.org:40341",
|
|
"https://rpc2.morph.fs.neo.org:40341",
|
|
}
|
|
|
|
wss = []string{
|
|
"wss://rpc1.morph.fs.neo.org:40341/ws",
|
|
"wss://rpc2.morph.fs.neo.org:40341/ws",
|
|
}
|
|
)
|
|
|
|
var fileConfigTest = func(c *config.Config) {
|
|
require.Equal(t, rpcs, morphconfig.RPCEndpoint(c))
|
|
require.Equal(t, wss, morphconfig.NotificationEndpoint(c))
|
|
require.Equal(t, 30*time.Second, morphconfig.DialTimeout(c))
|
|
require.Equal(t, true, morphconfig.DisableCache(c))
|
|
require.Equal(t, fixedn.Fixed8(100000001), morphconfig.Notary(c).Amount())
|
|
require.Equal(t, uint32(1001), morphconfig.Notary(c).Duration())
|
|
}
|
|
|
|
configtest.ForEachFileType(path, fileConfigTest)
|
|
|
|
t.Run("ENV", func(t *testing.T) {
|
|
configtest.ForEnvFileType(path, fileConfigTest)
|
|
})
|
|
}
|