mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07: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>
106 lines
3.9 KiB
Go
106 lines
3.9 KiB
Go
package doublylinkedtree
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
forkchoicetypes "github.com/prysmaticlabs/prysm/v3/beacon-chain/forkchoice/types"
|
|
"github.com/prysmaticlabs/prysm/v3/config/params"
|
|
types "github.com/prysmaticlabs/prysm/v3/consensus-types/primitives"
|
|
"github.com/prysmaticlabs/prysm/v3/testing/require"
|
|
)
|
|
|
|
func TestStore_NewSlot(t *testing.T) {
|
|
ctx := context.Background()
|
|
bj := [32]byte{'z'}
|
|
|
|
type args struct {
|
|
slot types.Slot
|
|
finalized *forkchoicetypes.Checkpoint
|
|
justified *forkchoicetypes.Checkpoint
|
|
bestJustified *forkchoicetypes.Checkpoint
|
|
shouldEqual bool
|
|
}
|
|
tests := []struct {
|
|
name string
|
|
args args
|
|
}{
|
|
{
|
|
name: "Not epoch boundary. No change",
|
|
args: args{
|
|
slot: params.BeaconConfig().SlotsPerEpoch + 1,
|
|
finalized: &forkchoicetypes.Checkpoint{Epoch: 1, Root: [32]byte{'a'}},
|
|
justified: &forkchoicetypes.Checkpoint{Epoch: 2, Root: [32]byte{'b'}},
|
|
bestJustified: &forkchoicetypes.Checkpoint{Epoch: 3, Root: bj},
|
|
shouldEqual: false,
|
|
},
|
|
},
|
|
{
|
|
name: "Justified higher than best justified. No change",
|
|
args: args{
|
|
slot: params.BeaconConfig().SlotsPerEpoch,
|
|
finalized: &forkchoicetypes.Checkpoint{Epoch: 1, Root: [32]byte{'a'}},
|
|
justified: &forkchoicetypes.Checkpoint{Epoch: 3, Root: [32]byte{'b'}},
|
|
bestJustified: &forkchoicetypes.Checkpoint{Epoch: 2, Root: bj},
|
|
shouldEqual: false,
|
|
},
|
|
},
|
|
{
|
|
name: "Best justified not on the same chain as finalized. No change",
|
|
args: args{
|
|
slot: params.BeaconConfig().SlotsPerEpoch,
|
|
finalized: &forkchoicetypes.Checkpoint{Epoch: 1, Root: [32]byte{'a'}},
|
|
justified: &forkchoicetypes.Checkpoint{Epoch: 2, Root: [32]byte{'b'}},
|
|
bestJustified: &forkchoicetypes.Checkpoint{Epoch: 3, Root: [32]byte{'d'}},
|
|
shouldEqual: false,
|
|
},
|
|
},
|
|
{
|
|
name: "Best justified on the same chain as finalized. Yes change",
|
|
args: args{
|
|
slot: params.BeaconConfig().SlotsPerEpoch,
|
|
finalized: &forkchoicetypes.Checkpoint{Epoch: 1, Root: [32]byte{'a'}},
|
|
justified: &forkchoicetypes.Checkpoint{Epoch: 2, Root: [32]byte{'b'}},
|
|
bestJustified: &forkchoicetypes.Checkpoint{Epoch: 3, Root: bj},
|
|
shouldEqual: true,
|
|
},
|
|
},
|
|
}
|
|
for _, test := range tests {
|
|
f := setup(test.args.justified.Epoch, test.args.finalized.Epoch)
|
|
state, blkRoot, err := prepareForkchoiceState(ctx, 0, [32]byte{}, [32]byte{}, [32]byte{}, 0, 0)
|
|
require.NoError(t, err)
|
|
require.NoError(t, f.InsertNode(ctx, state, blkRoot)) // genesis
|
|
state, blkRoot, err = prepareForkchoiceState(ctx, 32, [32]byte{'a'}, [32]byte{}, [32]byte{}, 0, 0)
|
|
require.NoError(t, err)
|
|
require.NoError(t, f.InsertNode(ctx, state, blkRoot)) // finalized
|
|
state, blkRoot, err = prepareForkchoiceState(ctx, 64, [32]byte{'b'}, [32]byte{'a'}, [32]byte{}, 0, 0)
|
|
require.NoError(t, err)
|
|
require.NoError(t, f.InsertNode(ctx, state, blkRoot)) // justified
|
|
state, blkRoot, err = prepareForkchoiceState(ctx, 96, bj, [32]byte{'a'}, [32]byte{}, 0, 0)
|
|
require.NoError(t, err)
|
|
require.NoError(t, f.InsertNode(ctx, state, blkRoot)) // best justified
|
|
state, blkRoot, err = prepareForkchoiceState(ctx, 97, [32]byte{'d'}, [32]byte{}, [32]byte{}, 0, 0)
|
|
require.NoError(t, err)
|
|
require.NoError(t, f.InsertNode(ctx, state, blkRoot)) // bad
|
|
|
|
require.NoError(t, f.UpdateFinalizedCheckpoint(test.args.finalized))
|
|
require.NoError(t, f.UpdateJustifiedCheckpoint(test.args.justified))
|
|
f.store.bestJustifiedCheckpoint = test.args.bestJustified
|
|
|
|
require.NoError(t, f.NewSlot(ctx, test.args.slot))
|
|
if test.args.shouldEqual {
|
|
bcp := f.BestJustifiedCheckpoint()
|
|
cp := f.JustifiedCheckpoint()
|
|
require.Equal(t, bcp.Epoch, cp.Epoch)
|
|
require.Equal(t, bcp.Root, cp.Root)
|
|
} else {
|
|
bcp := f.BestJustifiedCheckpoint()
|
|
cp := f.JustifiedCheckpoint()
|
|
epochsEqual := bcp.Epoch == cp.Epoch
|
|
rootsEqual := bcp.Root == cp.Root
|
|
require.Equal(t, false, epochsEqual && rootsEqual)
|
|
}
|
|
}
|
|
}
|