mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 12:57:18 +00:00
d077483577
* v3 import renamings * tidy * fmt * rev * Update beacon-chain/core/epoch/precompute/reward_penalty_test.go * Update beacon-chain/core/helpers/validators_test.go * Update beacon-chain/db/alias.go * Update beacon-chain/db/alias.go * Update beacon-chain/db/alias.go * Update beacon-chain/db/iface/BUILD.bazel * Update beacon-chain/db/kv/kv.go * Update beacon-chain/db/kv/state.go * Update beacon-chain/rpc/prysm/v1alpha1/validator/attester_test.go * Update beacon-chain/rpc/prysm/v1alpha1/validator/attester_test.go * Update beacon-chain/sync/initial-sync/service.go * fix deps * fix bad replacements * fix bad replacements * change back * gohashtree version * fix deps Co-authored-by: Nishant Das <nishdas93@gmail.com> Co-authored-by: Potuz <potuz@prysmaticlabs.com>
53 lines
1.2 KiB
Go
53 lines
1.2 KiB
Go
package features
|
|
|
|
import (
|
|
"flag"
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/prysm/v3/testing/assert"
|
|
"github.com/prysmaticlabs/prysm/v3/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)
|
|
}
|