2021-03-11 11:39:51 +00:00
|
|
|
package config
|
|
|
|
|
|
|
|
import (
|
2023-11-20 17:04:09 +00:00
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2021-03-11 11:39:51 +00:00
|
|
|
"testing"
|
|
|
|
|
2023-11-20 17:04:09 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/config/netmode"
|
2021-03-11 11:39:51 +00:00
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
)
|
|
|
|
|
|
|
|
const testConfigPath = "./testdata/protocol.test.yml"
|
|
|
|
|
|
|
|
func TestUnexpectedNativeUpdateHistoryContract(t *testing.T) {
|
|
|
|
_, err := LoadFile(testConfigPath)
|
|
|
|
require.Error(t, err)
|
|
|
|
}
|
2023-11-20 17:04:09 +00:00
|
|
|
|
|
|
|
func TestUnknownConfigFields(t *testing.T) {
|
|
|
|
tmp := t.TempDir()
|
|
|
|
cfg := filepath.Join(tmp, "protocol.testnet.yml")
|
|
|
|
require.NoError(t, os.WriteFile(cfg, []byte(`UnknownConfigurationField: 123`), os.ModePerm))
|
|
|
|
|
|
|
|
t.Run("LoadFile", func(t *testing.T) {
|
|
|
|
_, err := LoadFile(cfg)
|
|
|
|
require.Error(t, err)
|
|
|
|
require.Contains(t, err.Error(), "field UnknownConfigurationField not found in type config.Config")
|
|
|
|
})
|
|
|
|
t.Run("Load", func(t *testing.T) {
|
|
|
|
_, err := Load(tmp, netmode.TestNet)
|
|
|
|
require.Error(t, err)
|
|
|
|
require.Contains(t, err.Error(), "field UnknownConfigurationField not found in type config.Config")
|
|
|
|
})
|
|
|
|
}
|