2022-08-29 14:25:30 +00:00
|
|
|
// stm: #unit
|
2019-07-03 16:59:49 +00:00
|
|
|
package config
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"os"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
2024-03-08 07:43:39 +00:00
|
|
|
"github.com/stretchr/testify/require"
|
2019-07-03 16:59:49 +00:00
|
|
|
)
|
|
|
|
|
2023-03-20 16:19:14 +00:00
|
|
|
func fullNodeDefault() (interface{}, error) { return DefaultFullNode(), nil }
|
|
|
|
|
2019-07-03 16:59:49 +00:00
|
|
|
func TestDecodeNothing(t *testing.T) {
|
feat: Add additional test annotations (#8272)
* Annotate api,proxy_util,blockstore_badger, policy tests
* Annotate splitstore: bsbadger / markset
* Annotate splitstore feature
* Annotate union/timed blockstore tests
* Annotate openrpc, diff_adt tests
* Annotate error,drand,events tests
* Annotate predicates_test
* Fix annotations
* Annotate tscache, gen tests
* Annotate fundmanager test
* Annotate repub and selection tests
* Annotate statetree_test
* Annotate forks_test
* Annotate searchwait_test.go
* Fix duplicated @@ symbols
* Annotate chain stmgr/store tests
* Annotate more (types) tests
* More tests annotated
* Annotate conformance chaos actor tests
* Annotate more integration tests
* Annotate journal system tests
* Annotate more tests.
* Annotate gas,head buffer behaviors
* Fix markset annotations
* doc: test annotations for the markets dagstore wrapper
* Annotate miner_api test in dagstore
* Annotate more test files
* Remove bad annotations from fsrepo
* Annotate wdpost system
* Remove bad annotations
* Renamce "conformance" to "chaos_actor" tests
* doc: stm annotations for blockheader & election proof tests
* Annotate remaining "A" tests
* annotate: stm for error_test
* memrepo_test.go
* Annotate "b" file tests
* message_test.go
* doc: stm annotate for fsrepo_test
* Annotate "c" file tests
* Annotate "D" test files
* message_test.go
* doc: stm annotate for chain, node/config & client
* docs: stm annotate node_test
* Annotate u,v,wl tests
* doc: stm annotations for various test files
* Annotate "T" test files
* doc: stm annotate for proxy_util_test & policy_test
* doc: stm annotate for various tests
* doc: final few stm annotations
* Add mempool unit tests
* Add two more memPool Add tests
* Update submodules
* Add check function tests
* Add stm annotations, refactor test helper
* Annotate api,proxy_util,blockstore_badger, policy tests
* Annotate splitstore: bsbadger / markset
solving merge conflicts
* Annotate splitstore feature
* Annotate union/timed blockstore tests
* Annotate openrpc, diff_adt tests
* Annotate error,drand,events tests
* Annotate predicates_test
* Fix annotations
* Annotate tscache, gen tests
* Annotate fundmanager test
* Annotate statetree_test
* Annotate forks_test
* Annotate searchwait_test.go
* Fix duplicated @@ symbols
* Annotate chain stmgr/store tests
* Annotate more (types) tests
* More tests annotated
* Annotate conformance chaos actor tests
* Annotate more integration tests
* Annotate journal system tests
* Annotate more tests.
* Annotate gas,head buffer behaviors
solve merge conflict
* Fix markset annotations
* Annotate miner_api test in dagstore
* Annotate more test files
* doc: test annotations for the markets dagstore wrapper
* Annotate wdpost system
* Renamce "conformance" to "chaos_actor" tests
* Annotate remaining "A" tests
* doc: stm annotations for blockheader & election proof tests
* annotate: stm for error_test
* Annotate "b" file tests
* memrepo_test.go
* Annotate "c" file tests
* message_test.go
* Annotate "D" test files
* doc: stm annotate for fsrepo_test
* Annotate u,v,wl tests
* message_test.go
* doc: stm annotate for chain, node/config & client
* docs: stm annotate node_test
* Annotate "T" test files
* doc: stm annotations for various test files
* Add mempool unit tests
solve merge conflict
* doc: stm annotate for proxy_util_test & policy_test
* doc: stm annotate for various tests
* doc: final few stm annotations
* Add two more memPool Add tests
* Update submodules
* Add check function tests
solve conflict
* Add stm annotations, refactor test helper
solve merge conflict
* Change CLI test kinds to "unit"
* Fix double merged test
* Fix ccupgrade_test merge
* Fix lint issues
* Add stm annotation to types_Test
* Test vectors submodule
* Add file annotation to burn_test
Co-authored-by: Nikola Divic <divicnikola@gmail.com>
Co-authored-by: TheMenko <themenkoprojects@gmail.com>
2022-03-16 17:37:34 +00:00
|
|
|
//stm: @NODE_CONFIG_LOAD_FILE_002
|
2019-07-03 16:59:49 +00:00
|
|
|
assert := assert.New(t)
|
|
|
|
|
|
|
|
{
|
2023-03-20 16:19:14 +00:00
|
|
|
cfg, err := FromFile(os.DevNull, SetDefault(fullNodeDefault))
|
2019-07-03 16:59:49 +00:00
|
|
|
assert.Nil(err, "error should be nil")
|
2019-10-30 16:38:39 +00:00
|
|
|
assert.Equal(DefaultFullNode(), cfg,
|
2019-07-03 16:59:49 +00:00
|
|
|
"config from empty file should be the same as default")
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2023-03-20 16:19:14 +00:00
|
|
|
cfg, err := FromFile("./does-not-exist.toml", SetDefault(fullNodeDefault))
|
2019-07-03 16:59:49 +00:00
|
|
|
assert.Nil(err, "error should be nil")
|
2019-10-30 16:38:39 +00:00
|
|
|
assert.Equal(DefaultFullNode(), cfg,
|
2019-07-03 16:59:49 +00:00
|
|
|
"config from not exisiting file should be the same as default")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestParitalConfig(t *testing.T) {
|
feat: Add additional test annotations (#8272)
* Annotate api,proxy_util,blockstore_badger, policy tests
* Annotate splitstore: bsbadger / markset
* Annotate splitstore feature
* Annotate union/timed blockstore tests
* Annotate openrpc, diff_adt tests
* Annotate error,drand,events tests
* Annotate predicates_test
* Fix annotations
* Annotate tscache, gen tests
* Annotate fundmanager test
* Annotate repub and selection tests
* Annotate statetree_test
* Annotate forks_test
* Annotate searchwait_test.go
* Fix duplicated @@ symbols
* Annotate chain stmgr/store tests
* Annotate more (types) tests
* More tests annotated
* Annotate conformance chaos actor tests
* Annotate more integration tests
* Annotate journal system tests
* Annotate more tests.
* Annotate gas,head buffer behaviors
* Fix markset annotations
* doc: test annotations for the markets dagstore wrapper
* Annotate miner_api test in dagstore
* Annotate more test files
* Remove bad annotations from fsrepo
* Annotate wdpost system
* Remove bad annotations
* Renamce "conformance" to "chaos_actor" tests
* doc: stm annotations for blockheader & election proof tests
* Annotate remaining "A" tests
* annotate: stm for error_test
* memrepo_test.go
* Annotate "b" file tests
* message_test.go
* doc: stm annotate for fsrepo_test
* Annotate "c" file tests
* Annotate "D" test files
* message_test.go
* doc: stm annotate for chain, node/config & client
* docs: stm annotate node_test
* Annotate u,v,wl tests
* doc: stm annotations for various test files
* Annotate "T" test files
* doc: stm annotate for proxy_util_test & policy_test
* doc: stm annotate for various tests
* doc: final few stm annotations
* Add mempool unit tests
* Add two more memPool Add tests
* Update submodules
* Add check function tests
* Add stm annotations, refactor test helper
* Annotate api,proxy_util,blockstore_badger, policy tests
* Annotate splitstore: bsbadger / markset
solving merge conflicts
* Annotate splitstore feature
* Annotate union/timed blockstore tests
* Annotate openrpc, diff_adt tests
* Annotate error,drand,events tests
* Annotate predicates_test
* Fix annotations
* Annotate tscache, gen tests
* Annotate fundmanager test
* Annotate statetree_test
* Annotate forks_test
* Annotate searchwait_test.go
* Fix duplicated @@ symbols
* Annotate chain stmgr/store tests
* Annotate more (types) tests
* More tests annotated
* Annotate conformance chaos actor tests
* Annotate more integration tests
* Annotate journal system tests
* Annotate more tests.
* Annotate gas,head buffer behaviors
solve merge conflict
* Fix markset annotations
* Annotate miner_api test in dagstore
* Annotate more test files
* doc: test annotations for the markets dagstore wrapper
* Annotate wdpost system
* Renamce "conformance" to "chaos_actor" tests
* Annotate remaining "A" tests
* doc: stm annotations for blockheader & election proof tests
* annotate: stm for error_test
* Annotate "b" file tests
* memrepo_test.go
* Annotate "c" file tests
* message_test.go
* Annotate "D" test files
* doc: stm annotate for fsrepo_test
* Annotate u,v,wl tests
* message_test.go
* doc: stm annotate for chain, node/config & client
* docs: stm annotate node_test
* Annotate "T" test files
* doc: stm annotations for various test files
* Add mempool unit tests
solve merge conflict
* doc: stm annotate for proxy_util_test & policy_test
* doc: stm annotate for various tests
* doc: final few stm annotations
* Add two more memPool Add tests
* Update submodules
* Add check function tests
solve conflict
* Add stm annotations, refactor test helper
solve merge conflict
* Change CLI test kinds to "unit"
* Fix double merged test
* Fix ccupgrade_test merge
* Fix lint issues
* Add stm annotation to types_Test
* Test vectors submodule
* Add file annotation to burn_test
Co-authored-by: Nikola Divic <divicnikola@gmail.com>
Co-authored-by: TheMenko <themenkoprojects@gmail.com>
2022-03-16 17:37:34 +00:00
|
|
|
//stm: @NODE_CONFIG_LOAD_FILE_003
|
2019-07-03 16:59:49 +00:00
|
|
|
assert := assert.New(t)
|
|
|
|
cfgString := `
|
|
|
|
[API]
|
|
|
|
Timeout = "10s"
|
|
|
|
`
|
2019-10-30 16:38:39 +00:00
|
|
|
expected := DefaultFullNode()
|
2019-07-03 16:59:49 +00:00
|
|
|
expected.API.Timeout = Duration(10 * time.Second)
|
|
|
|
|
|
|
|
{
|
2019-10-30 16:38:39 +00:00
|
|
|
cfg, err := FromReader(bytes.NewReader([]byte(cfgString)), DefaultFullNode())
|
2019-07-03 16:59:49 +00:00
|
|
|
assert.NoError(err, "error should be nil")
|
|
|
|
assert.Equal(expected, cfg,
|
|
|
|
"config from reader should contain changes")
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2023-03-29 19:24:07 +00:00
|
|
|
f, err := os.CreateTemp("", "config-*.toml")
|
2019-07-03 16:59:49 +00:00
|
|
|
fname := f.Name()
|
|
|
|
|
|
|
|
assert.NoError(err, "tmp file shold not error")
|
|
|
|
_, err = f.WriteString(cfgString)
|
|
|
|
assert.NoError(err, "writing to tmp file should not error")
|
|
|
|
err = f.Close()
|
|
|
|
assert.NoError(err, "closing tmp file should not error")
|
|
|
|
defer os.Remove(fname) //nolint:errcheck
|
|
|
|
|
2023-03-20 16:19:14 +00:00
|
|
|
cfg, err := FromFile(fname, SetDefault(fullNodeDefault))
|
2019-07-03 16:59:49 +00:00
|
|
|
assert.Nil(err, "error should be nil")
|
|
|
|
assert.Equal(expected, cfg,
|
|
|
|
"config from reader should contain changes")
|
|
|
|
}
|
|
|
|
}
|
2023-03-20 16:19:14 +00:00
|
|
|
|
|
|
|
func TestValidateSplitstoreSet(t *testing.T) {
|
|
|
|
cfgSet := `
|
|
|
|
EnableSplitstore = false
|
|
|
|
`
|
|
|
|
assert.NoError(t, ValidateSplitstoreSet(cfgSet))
|
|
|
|
cfgSloppySet := `
|
|
|
|
EnableSplitstore = true
|
|
|
|
`
|
|
|
|
assert.NoError(t, ValidateSplitstoreSet(cfgSloppySet))
|
|
|
|
|
|
|
|
// Missing altogether
|
|
|
|
cfgMissing := `
|
|
|
|
[Chainstore]
|
|
|
|
# type: bool
|
|
|
|
# env var: LOTUS_CHAINSTORE_ENABLESPLITSTORE
|
|
|
|
# oops its mising
|
|
|
|
|
|
|
|
[Chainstore.Splitstore]
|
|
|
|
ColdStoreType = "discard"
|
|
|
|
`
|
|
|
|
err := ValidateSplitstoreSet(cfgMissing)
|
|
|
|
assert.Error(t, err)
|
|
|
|
cfgCommentedOut := `
|
|
|
|
# EnableSplitstore = false
|
|
|
|
`
|
|
|
|
err = ValidateSplitstoreSet(cfgCommentedOut)
|
|
|
|
assert.Error(t, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Default config keeps EnableSplitstore field uncommented
|
|
|
|
func TestKeepEnableSplitstoreUncommented(t *testing.T) {
|
|
|
|
cfgStr, err := ConfigComment(DefaultFullNode())
|
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.True(t, MatchEnableSplitstoreField(string(cfgStr)))
|
|
|
|
|
|
|
|
cfgStrFromDef, err := ConfigUpdate(DefaultFullNode(), DefaultFullNode(), Commented(true), DefaultKeepUncommented())
|
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.True(t, MatchEnableSplitstoreField(string(cfgStrFromDef)))
|
|
|
|
}
|
|
|
|
|
|
|
|
// Loading a config with commented EnableSplitstore fails when setting validator
|
|
|
|
func TestValidateConfigSetsEnableSplitstore(t *testing.T) {
|
|
|
|
cfgCommentedOutEnableSS, err := ConfigUpdate(DefaultFullNode(), DefaultFullNode(), Commented(true))
|
|
|
|
assert.NoError(t, err)
|
|
|
|
// assert that this config comments out EnableSplitstore
|
|
|
|
assert.False(t, MatchEnableSplitstoreField(string(cfgCommentedOutEnableSS)))
|
|
|
|
|
|
|
|
// write config with commented out EnableSplitstore to file
|
2023-03-29 19:24:07 +00:00
|
|
|
f, err := os.CreateTemp("", "config.toml")
|
2023-03-20 16:19:14 +00:00
|
|
|
fname := f.Name()
|
|
|
|
assert.NoError(t, err)
|
|
|
|
defer func() {
|
|
|
|
err = f.Close()
|
|
|
|
assert.NoError(t, err)
|
|
|
|
os.Remove(fname) //nolint:errcheck
|
|
|
|
}()
|
|
|
|
_, err = f.WriteString(string(cfgCommentedOutEnableSS))
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
|
|
|
_, err = FromFile(fname, SetDefault(fullNodeDefault), SetValidate(ValidateSplitstoreSet))
|
|
|
|
assert.Error(t, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Loading without a config file and a default fails if the default fallback is disabled
|
|
|
|
func TestFailToFallbackToDefault(t *testing.T) {
|
2023-03-29 19:24:07 +00:00
|
|
|
dir, err := os.MkdirTemp("", "dirWithNoFiles")
|
2023-03-20 16:19:14 +00:00
|
|
|
assert.NoError(t, err)
|
|
|
|
defer assert.NoError(t, os.RemoveAll(dir))
|
|
|
|
nonExistantFileName := dir + "/notarealfile"
|
|
|
|
_, err = FromFile(nonExistantFileName, SetDefault(fullNodeDefault), SetCanFallbackOnDefault(NoDefaultForSplitstoreTransition))
|
|
|
|
assert.Error(t, err)
|
|
|
|
}
|
2024-03-08 07:43:39 +00:00
|
|
|
|
|
|
|
func TestPrintDeprecated(t *testing.T) {
|
|
|
|
type ChildCfg struct {
|
|
|
|
Field string `moved:"Bang"`
|
|
|
|
NewField string
|
|
|
|
}
|
|
|
|
type Old struct {
|
|
|
|
Thing1 int `moved:"New.Thing1"`
|
|
|
|
Thing2 int `moved:"New.Thing2"`
|
|
|
|
}
|
|
|
|
type New struct {
|
|
|
|
Thing1 int
|
|
|
|
Thing2 int
|
|
|
|
}
|
|
|
|
type ParentCfg struct {
|
|
|
|
Child ChildCfg
|
|
|
|
Old Old
|
|
|
|
New New
|
|
|
|
Foo int
|
|
|
|
Baz string `moved:"Child.NewField"`
|
|
|
|
Boom int `moved:"Foo"`
|
|
|
|
Bang string
|
|
|
|
}
|
|
|
|
|
|
|
|
t.Run("warning output", func(t *testing.T) {
|
|
|
|
cfg := `
|
|
|
|
Baz = "baz"
|
|
|
|
Foo = 100
|
|
|
|
[Child]
|
|
|
|
Field = "bip"
|
|
|
|
NewField = "bop"
|
|
|
|
`
|
|
|
|
|
|
|
|
warningWriter := bytes.NewBuffer(nil)
|
|
|
|
|
|
|
|
v, err := FromReader(bytes.NewReader([]byte(cfg)), &ParentCfg{Boom: 200, Bang: "300"}, SetWarningWriter(warningWriter))
|
|
|
|
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.Equal(t, &ParentCfg{
|
|
|
|
Child: ChildCfg{
|
|
|
|
Field: "bip",
|
|
|
|
NewField: "bop",
|
|
|
|
},
|
|
|
|
Baz: "baz",
|
|
|
|
Foo: 100,
|
|
|
|
Boom: 200,
|
|
|
|
Bang: "bip",
|
|
|
|
}, v)
|
|
|
|
require.Regexp(t, `\WChild\.Field\W.+use 'Bang' instead`, warningWriter.String())
|
|
|
|
require.Regexp(t, `\WBaz\W.+use 'Child\.NewField' instead`, warningWriter.String())
|
|
|
|
require.NotContains(t, warningWriter.String(), "don't use this at all")
|
|
|
|
require.NotContains(t, warningWriter.String(), "Boom")
|
|
|
|
})
|
|
|
|
|
|
|
|
defaultNew := New{Thing1: 42, Thing2: 800}
|
|
|
|
testCases := []struct {
|
|
|
|
name string
|
|
|
|
cfg string
|
|
|
|
expected New
|
|
|
|
}{
|
|
|
|
{"simple", ``, defaultNew},
|
|
|
|
{"set new", "[New]\nThing1 = 101\nThing2 = 102\n", New{Thing1: 101, Thing2: 102}},
|
|
|
|
// should move old to new fields if new isn't set
|
|
|
|
{"set old", "[Old]\nThing1 = 101\nThing2 = 102\n", New{Thing1: 101, Thing2: 102}},
|
|
|
|
}
|
|
|
|
for _, tc := range testCases {
|
|
|
|
tc := tc
|
|
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
|
|
v, err := FromReader(bytes.NewReader([]byte(tc.cfg)), &ParentCfg{New: defaultNew})
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.Equal(t, tc.expected, v.(*ParentCfg).New)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|