mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 13:18:57 +00:00
1601972625
* make it the default * deprecate this Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
53 lines
1.2 KiB
Go
53 lines
1.2 KiB
Go
package features
|
|
|
|
import (
|
|
"flag"
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/prysm/testing/assert"
|
|
"github.com/prysmaticlabs/prysm/testing/require"
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
func TestInitFeatureConfig(t *testing.T) {
|
|
defer Init(&Flags{})
|
|
cfg := &Flags{
|
|
EnableSlasher: true,
|
|
}
|
|
Init(cfg)
|
|
c := Get()
|
|
assert.Equal(t, true, c.EnableSlasher)
|
|
|
|
// Reset back to false for the follow up tests.
|
|
cfg = &Flags{RemoteSlasherProtection: false}
|
|
Init(cfg)
|
|
}
|
|
|
|
func TestInitWithReset(t *testing.T) {
|
|
defer Init(&Flags{})
|
|
Init(&Flags{
|
|
EnableSlasher: true,
|
|
})
|
|
assert.Equal(t, true, Get().EnableSlasher)
|
|
|
|
// Overwrite previously set value (value that didn't come by default).
|
|
resetCfg := InitWithReset(&Flags{
|
|
EnableSlasher: false,
|
|
})
|
|
assert.Equal(t, false, Get().EnableSlasher)
|
|
|
|
// Reset must get to previously set configuration (not to default config values).
|
|
resetCfg()
|
|
assert.Equal(t, true, Get().EnableSlasher)
|
|
}
|
|
|
|
func TestConfigureBeaconConfig(t *testing.T) {
|
|
app := cli.App{}
|
|
set := flag.NewFlagSet("test", 0)
|
|
set.Bool(enableSlasherFlag.Name, true, "test")
|
|
context := cli.NewContext(&app, set, nil)
|
|
require.NoError(t, ConfigureBeaconChain(context))
|
|
c := Get()
|
|
assert.Equal(t, true, c.EnableSlasher)
|
|
}
|