Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix tests depending on configuration flag #5650

Merged
merged 18 commits into from
Apr 27, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions beacon-chain/blockchain/process_block_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -301,10 +301,8 @@ func TestShouldUpdateJustified_ReturnFalse(t *testing.T) {
}

func TestCachedPreState_CanGetFromStateSummary(t *testing.T) {
config := &featureconfig.Flags{
NewStateMgmt: true,
}
featureconfig.Init(config)
resetCfg := featureconfig.InitWithReset(&featureconfig.Flags{NewStateMgmt: true})
defer resetCfg()

ctx := context.Background()
db := testDB.SetupDB(t)
Expand Down Expand Up @@ -345,6 +343,8 @@ func TestCachedPreState_CanGetFromDB(t *testing.T) {
ctx := context.Background()
db := testDB.SetupDB(t)
defer testDB.TeardownDB(t, db)
resetCfg := featureconfig.InitWithReset(&featureconfig.Flags{NewStateMgmt: true})
defer resetCfg()

cfg := &Config{
BeaconDB: db,
Expand Down
15 changes: 10 additions & 5 deletions beacon-chain/cache/feature_flag_test.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
package cache

import "github.com/prysmaticlabs/prysm/shared/featureconfig"
import (
"os"
"testing"

func init() {
featureconfig.Init(&featureconfig.Flags{
EnableEth1DataVoteCache: true,
})
"github.com/prysmaticlabs/prysm/shared/featureconfig"
)

func TestMain(m *testing.M) {
resetCfg := featureconfig.InitWithReset(&featureconfig.Flags{EnableEth1DataVoteCache: true})
defer resetCfg()
os.Exit(m.Run())
}
1 change: 0 additions & 1 deletion beacon-chain/core/helpers/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ go_test(
"//shared/attestationutil:go_default_library",
"//shared/bls:go_default_library",
"//shared/bytesutil:go_default_library",
"//shared/featureconfig:go_default_library",
"//shared/hashutil:go_default_library",
"//shared/params:go_default_library",
"//shared/sliceutil:go_default_library",
Expand Down
9 changes: 0 additions & 9 deletions beacon-chain/core/helpers/committee_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import (
pb "github.com/prysmaticlabs/prysm/proto/beacon/p2p/v1"
"github.com/prysmaticlabs/prysm/shared/attestationutil"
"github.com/prysmaticlabs/prysm/shared/bytesutil"
"github.com/prysmaticlabs/prysm/shared/featureconfig"
"github.com/prysmaticlabs/prysm/shared/hashutil"
"github.com/prysmaticlabs/prysm/shared/params"
"github.com/prysmaticlabs/prysm/shared/sliceutil"
Expand Down Expand Up @@ -434,10 +433,6 @@ func TestShuffledIndices_ShuffleRightLength(t *testing.T) {

func TestUpdateCommitteeCache_CanUpdate(t *testing.T) {
ClearCache()
c := featureconfig.Get()
featureconfig.Init(c)
defer featureconfig.Init(nil)

validatorCount := int(params.BeaconConfig().MinGenesisActiveValidatorCount)
validators := make([]*ethpb.Validator, validatorCount)
indices := make([]uint64, validatorCount)
Expand Down Expand Up @@ -679,10 +674,6 @@ func BenchmarkComputeCommittee4000000_WithOutCache(b *testing.B) {
}

func TestBeaconCommitteeFromState_UpdateCacheForPreviousEpoch(t *testing.T) {
c := featureconfig.Get()
featureconfig.Init(c)
defer featureconfig.Init(nil)

committeeSize := uint64(16)
validators := make([]*ethpb.Validator, committeeSize*params.BeaconConfig().SlotsPerEpoch)
for i := 0; i < len(validators); i++ {
Expand Down
6 changes: 2 additions & 4 deletions beacon-chain/powchain/log_processing_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -350,10 +350,8 @@ func TestProcessETH2GenesisLog_8DuplicatePubkeys(t *testing.T) {
}

func TestProcessETH2GenesisLog(t *testing.T) {
config := &featureconfig.Flags{
CustomGenesisDelay: 0,
}
featureconfig.Init(config)
resetCfg := featureconfig.InitWithReset(&featureconfig.Flags{CustomGenesisDelay:0})
defer resetCfg()
hook := logTest.NewGlobal()
testAcc, err := contracts.Setup()
if err != nil {
Expand Down
28 changes: 12 additions & 16 deletions beacon-chain/rpc/beacon/assignments_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,8 @@ import (
)

func TestServer_ListAssignments_CannotRequestFutureEpoch(t *testing.T) {
config := &featureconfig.Flags{
NewStateMgmt: true,
}
featureconfig.Init(config)
resetCfg := featureconfig.InitWithReset(&featureconfig.Flags{NewStateMgmt: true})
defer resetCfg()

db := dbTest.SetupDB(t)
defer dbTest.TeardownDB(t, db)
Expand All @@ -52,10 +50,8 @@ func TestServer_ListAssignments_CannotRequestFutureEpoch(t *testing.T) {
}

func TestServer_ListAssignments_NoResults(t *testing.T) {
config := &featureconfig.Flags{
NewStateMgmt: true,
}
featureconfig.Init(config)
resetCfg := featureconfig.InitWithReset(&featureconfig.Flags{NewStateMgmt: true})
defer resetCfg()

db := dbTest.SetupDB(t)
defer dbTest.TeardownDB(t, db)
Expand Down Expand Up @@ -105,10 +101,8 @@ func TestServer_ListAssignments_NoResults(t *testing.T) {
}

func TestServer_ListAssignments_Pagination_InputOutOfRange(t *testing.T) {
config := &featureconfig.Flags{
NewStateMgmt: true,
}
featureconfig.Init(config)
resetCfg := featureconfig.InitWithReset(&featureconfig.Flags{NewStateMgmt: true})
defer resetCfg()

db := dbTest.SetupDB(t)
defer dbTest.TeardownDB(t, db)
Expand Down Expand Up @@ -269,6 +263,8 @@ func TestServer_ListAssignments_Pagination_DefaultPageSize_FromArchive(t *testin
helpers.ClearCache()
db := dbTest.SetupDB(t)
defer dbTest.TeardownDB(t, db)
resetCfg := featureconfig.InitWithReset(&featureconfig.Flags{NewStateMgmt: true})
defer resetCfg()

ctx := context.Background()
count := 500
Expand Down Expand Up @@ -368,6 +364,8 @@ func TestServer_ListAssignments_FilterPubkeysIndices_NoPagination(t *testing.T)
helpers.ClearCache()
db := dbTest.SetupDB(t)
defer dbTest.TeardownDB(t, db)
resetCfg := featureconfig.InitWithReset(&featureconfig.Flags{NewStateMgmt: true})
defer resetCfg()

ctx := context.Background()
count := 100
Expand Down Expand Up @@ -449,10 +447,8 @@ func TestServer_ListAssignments_FilterPubkeysIndices_NoPagination(t *testing.T)
}

func TestServer_ListAssignments_CanFilterPubkeysIndices_WithPagination(t *testing.T) {
config := &featureconfig.Flags{
NewStateMgmt: true,
}
featureconfig.Init(config)
resetCfg := featureconfig.InitWithReset(&featureconfig.Flags{NewStateMgmt: true})
defer resetCfg()

db := dbTest.SetupDB(t)
defer dbTest.TeardownDB(t, db)
Expand Down
29 changes: 6 additions & 23 deletions beacon-chain/rpc/beacon/attestations_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -574,10 +574,8 @@ func TestServer_mapAttestationToTargetRoot(t *testing.T) {
}

func TestServer_ListIndexedAttestations_NewStateManagnmentDisabled(t *testing.T) {
config := &featureconfig.Flags{
NewStateMgmt: false,
}
featureconfig.Init(config)
resetCfg := featureconfig.InitWithReset(&featureconfig.Flags{NewStateMgmt:false})
defer resetCfg()

db := dbTest.SetupDB(t)
defer dbTest.TeardownDB(t, db)
Expand Down Expand Up @@ -612,12 +610,8 @@ func TestServer_ListIndexedAttestations_NewStateManagnmentDisabled(t *testing.T)
func TestServer_ListIndexedAttestations_GenesisEpoch(t *testing.T) {
params.OverrideBeaconConfig(params.MainnetConfig())
defer params.OverrideBeaconConfig(params.MinimalSpecConfig())

featureconfig.Init(&featureconfig.Flags{NewStateMgmt: true})
defer featureconfig.Init(&featureconfig.Flags{NewStateMgmt: false})

cfg := assertNewStateMgmtIsEnabled()
defer featureconfig.Init(cfg)
resetCfg := featureconfig.InitWithReset(&featureconfig.Flags{NewStateMgmt:true})
defer resetCfg()
db := dbTest.SetupDB(t)
defer dbTest.TeardownDB(t, db)
helpers.ClearCache()
Expand Down Expand Up @@ -753,8 +747,8 @@ func TestServer_ListIndexedAttestations_GenesisEpoch(t *testing.T) {
func TestServer_ListIndexedAttestations_OldEpoch(t *testing.T) {
params.OverrideBeaconConfig(params.MainnetConfig())
defer params.OverrideBeaconConfig(params.MinimalSpecConfig())
cfg := assertNewStateMgmtIsEnabled()
defer featureconfig.Init(cfg)
resetCfg := featureconfig.InitWithReset(&featureconfig.Flags{NewStateMgmt:true})
defer resetCfg()
db := dbTest.SetupDB(t)
defer dbTest.TeardownDB(t, db)
helpers.ClearCache()
Expand Down Expand Up @@ -1236,14 +1230,3 @@ func TestServer_StreamAttestations_OnSlotTick(t *testing.T) {
}
<-exitRoutine
}

// assertNewStateMgmtIsEnabled asserts that state management feature is enabled.
func assertNewStateMgmtIsEnabled() *featureconfig.Flags {
cfg := featureconfig.Get()
if cfg.NewStateMgmt {
cfgUpd := cfg.Copy()
cfgUpd.NewStateMgmt = true
featureconfig.Init(cfgUpd)
}
return cfg
}
1 change: 1 addition & 0 deletions beacon-chain/rpc/beacon/blocks_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,7 @@ func TestServer_ListBlocks_Pagination(t *testing.T) {
db := dbTest.SetupDB(t)
defer dbTest.TeardownDB(t, db)
ctx := context.Background()
t.Skip("Re-check after PR#5650 is merged")

count := uint64(100)
blks := make([]*ethpb.SignedBeaconBlock, count)
Expand Down
14 changes: 6 additions & 8 deletions beacon-chain/rpc/beacon/committees_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ func TestServer_ListBeaconCommittees_CurrentEpoch(t *testing.T) {
db := dbTest.SetupDB(t)
defer dbTest.TeardownDB(t, db)
helpers.ClearCache()
resetCfg := featureconfig.InitWithReset(&featureconfig.Flags{NewStateMgmt:true})
defer resetCfg()

numValidators := 128
ctx := context.Background()
Expand Down Expand Up @@ -87,10 +89,8 @@ func TestServer_ListBeaconCommittees_CurrentEpoch(t *testing.T) {
}

func TestServer_ListBeaconCommittees_PreviousEpoch(t *testing.T) {
config := &featureconfig.Flags{
NewStateMgmt: false,
}
featureconfig.Init(config)
resetCfg := featureconfig.InitWithReset(&featureconfig.Flags{NewStateMgmt:false})
defer resetCfg()

db := dbTest.SetupDB(t)
defer dbTest.TeardownDB(t, db)
Expand Down Expand Up @@ -162,10 +162,8 @@ func TestServer_ListBeaconCommittees_PreviousEpoch(t *testing.T) {
}

func TestServer_ListBeaconCommittees_FromArchive(t *testing.T) {
config := &featureconfig.Flags{
NewStateMgmt: false,
}
featureconfig.Init(config)
resetCfg := featureconfig.InitWithReset(&featureconfig.Flags{NewStateMgmt:false})
defer resetCfg()

db := dbTest.SetupDB(t)
defer dbTest.TeardownDB(t, db)
Expand Down
18 changes: 4 additions & 14 deletions beacon-chain/rpc/beacon/slashings_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,13 +71,8 @@ func TestServer_SubmitProposerSlashing(t *testing.T) {

func TestServer_SubmitProposerSlashingBroadcast(t *testing.T) {
ctx := context.Background()
cfg := featureconfig.Get()
cfg.BroadcastSlashings = true
featureconfig.Init(cfg)
defer func() {
cfg.BroadcastSlashings = false
featureconfig.Init(cfg)
}()
resetCfg := featureconfig.InitWithReset(&featureconfig.Flags{BroadcastSlashings:true})
defer resetCfg()

st, privs := testutil.DeterministicGenesisState(t, 64)
slashedVal, err := st.ValidatorAtIndex(5)
Expand Down Expand Up @@ -175,13 +170,8 @@ func TestServer_SubmitAttesterSlashing(t *testing.T) {

func TestServer_SubmitAttesterSlashingBroadcast(t *testing.T) {
ctx := context.Background()
cfg := featureconfig.Get()
cfg.BroadcastSlashings = true
featureconfig.Init(cfg)
defer func() {
cfg.BroadcastSlashings = false
featureconfig.Init(cfg)
}()
resetCfg := featureconfig.InitWithReset(&featureconfig.Flags{BroadcastSlashings:true})
defer resetCfg()
// We mark the validators at index 5, 6 as already slashed.
st, privs := testutil.DeterministicGenesisState(t, 64)
slashedVal, err := st.ValidatorAtIndex(5)
Expand Down
12 changes: 12 additions & 0 deletions beacon-chain/rpc/beacon/validators.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ func (bs *Server) ListValidatorBalances(
return bs.listValidatorsBalancesUsingOldArchival(ctx, req)
}

if bs.GenesisTimeFetcher == nil {
return nil, status.Errorf(codes.Internal, "Nil genesis time fetcher")
}
currentEpoch := helpers.SlotToEpoch(bs.GenesisTimeFetcher.CurrentSlot())
requestedEpoch := currentEpoch
switch q := req.QueryFilter.(type) {
Expand Down Expand Up @@ -163,6 +166,9 @@ func (bs *Server) listValidatorsBalancesUsingOldArchival(
res := make([]*ethpb.ValidatorBalances_Balance, 0)
filtered := map[uint64]bool{} // Track filtered validators to prevent duplication in the response.

if bs.HeadFetcher == nil {
return nil, status.Error(codes.Internal, "Nil head state")
}
headState, err := bs.HeadFetcher.HeadState(ctx)
if err != nil {
return nil, status.Error(codes.Internal, "Could not get head state")
Expand Down Expand Up @@ -578,10 +584,16 @@ func (bs *Server) GetValidatorActiveSetChanges(
func (bs *Server) getValidatorActiveSetChangesUsingOldArchival(
ctx context.Context, req *ethpb.GetValidatorActiveSetChangesRequest,
) (*ethpb.ActiveSetChanges, error) {
if bs.HeadFetcher == nil {
return nil, status.Error(codes.Internal, "Nil head state")
}
headState, err := bs.HeadFetcher.HeadState(ctx)
if err != nil {
return nil, status.Error(codes.Internal, "Could not get head state")
}
if bs.BeaconDB == nil {
return nil, status.Error(codes.Internal, "Nil beacon DB")
}
currentEpoch := helpers.CurrentEpoch(headState)
requestedEpoch := currentEpoch
requestingGenesis := false
Expand Down
Loading