2022-08-29 14:25:30 +00:00
|
|
|
// stm: #unit
|
2019-07-03 16:59:49 +00:00
|
|
|
package config
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
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")
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
f, err := ioutil.TempFile("", "config-*.toml")
|
|
|
|
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
|
|
|
|
f, err := ioutil.TempFile("", "config.toml")
|
|
|
|
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) {
|
|
|
|
dir, err := ioutil.TempDir("", "dirWithNoFiles")
|
|
|
|
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)
|
|
|
|
}
|