mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-09 19:21:19 +00:00
a8e501b3cf
* update deps * update deps * update protos/* * update deps * reset protos * update protos * update shared/params/config * update protos * update /shared * update shared/slotutil and shared/testutil * update beacon-chain/core/helpers * updates beacon-chain/state * update beacon-chain/forkchoice * update beacon-chain/blockchain * update beacon-chain/cache * update beacon-chain/core * update beacon-chain/db * update beacon-chain/node * update beacon-chain/p2p * update beacon-chain/rpc * update beacon-chain/sync * go mod tidy * make sure that beacon-chain build suceeds * go fmt * update e2e tests * update slasher * remove redundant alias * update validator * gazelle * fix build errors in unit tests * go fmt * update deps * update fuzz/BUILD.bazel * fix unit tests * more unit test fixes * fix blockchain UTs * more unit test fixes
87 lines
2.2 KiB
Go
87 lines
2.2 KiB
Go
package blockchain
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/eth2-types"
|
|
ethpb "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
|
|
testDB "github.com/prysmaticlabs/prysm/beacon-chain/db/testing"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil/require"
|
|
)
|
|
|
|
func TestService_VerifyWeakSubjectivityRoot(t *testing.T) {
|
|
beaconDB := testDB.SetupDB(t)
|
|
|
|
b := testutil.NewBeaconBlock()
|
|
b.Block.Slot = 32
|
|
require.NoError(t, beaconDB.SaveBlock(context.Background(), b))
|
|
r, err := b.Block.HashTreeRoot()
|
|
require.NoError(t, err)
|
|
tests := []struct {
|
|
wsVerified bool
|
|
wantErr bool
|
|
wsRoot [32]byte
|
|
wsEpoch types.Epoch
|
|
finalizedEpoch types.Epoch
|
|
errString string
|
|
name string
|
|
}{
|
|
{
|
|
name: "nil root and epoch",
|
|
wantErr: false,
|
|
},
|
|
{
|
|
name: "already verified",
|
|
wsEpoch: 2,
|
|
finalizedEpoch: 2,
|
|
wsVerified: true,
|
|
wantErr: false,
|
|
},
|
|
{
|
|
name: "not yet to verify, ws epoch higher than finalized epoch",
|
|
wsEpoch: 2,
|
|
finalizedEpoch: 1,
|
|
wantErr: false,
|
|
},
|
|
{
|
|
name: "can't find the block in DB",
|
|
wsEpoch: 1,
|
|
wsRoot: [32]byte{'a'},
|
|
finalizedEpoch: 3,
|
|
wantErr: true,
|
|
errString: "node does not have root in DB",
|
|
},
|
|
{
|
|
name: "can't find the block corresponds to ws epoch in DB",
|
|
wsEpoch: 2,
|
|
wsRoot: r, // Root belongs in epoch 1.
|
|
finalizedEpoch: 3,
|
|
wantErr: true,
|
|
errString: "node does not have root in db corresponding to epoch",
|
|
},
|
|
{
|
|
name: "can verify and pass",
|
|
wsEpoch: 1,
|
|
wsRoot: r,
|
|
finalizedEpoch: 3,
|
|
wantErr: false,
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
s := &Service{
|
|
beaconDB: beaconDB,
|
|
wsRoot: tt.wsRoot[:],
|
|
wsEpoch: tt.wsEpoch,
|
|
wsVerified: tt.wsVerified,
|
|
finalizedCheckpt: ðpb.Checkpoint{Epoch: tt.finalizedEpoch},
|
|
}
|
|
if err := s.VerifyWeakSubjectivityRoot(context.Background()); (err != nil) != tt.wantErr {
|
|
require.ErrorContains(t, tt.errString, err)
|
|
}
|
|
})
|
|
}
|
|
}
|