mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-28 14:17:17 +00:00
31 lines
802 B
Go
31 lines
802 B
Go
package featureconfig_test
|
|
|
|
import (
|
|
"flag"
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/prysm/shared/featureconfig"
|
|
"github.com/urfave/cli"
|
|
)
|
|
|
|
func TestInitFeatureConfig(t *testing.T) {
|
|
cfg := &featureconfig.Flags{
|
|
GenesisDelay: true,
|
|
}
|
|
featureconfig.Init(cfg)
|
|
if c := featureconfig.Get(); !c.GenesisDelay {
|
|
t.Errorf("GenesisDelay in FeatureFlags incorrect. Wanted true, got false")
|
|
}
|
|
}
|
|
|
|
func TestConfigureBeaconConfig(t *testing.T) {
|
|
app := cli.NewApp()
|
|
set := flag.NewFlagSet("test", 0)
|
|
set.Bool(featureconfig.GenesisDelayFlag.Name, true, "enable attestation verification")
|
|
context := cli.NewContext(app, set, nil)
|
|
featureconfig.ConfigureBeaconChain(context)
|
|
if c := featureconfig.Get(); !c.GenesisDelay {
|
|
t.Errorf("GenesisDelay in FeatureFlags incorrect. Wanted true, got false")
|
|
}
|
|
}
|