mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-06 01:32:18 +00:00
86 lines
2.1 KiB
Go
86 lines
2.1 KiB
Go
|
package blockchain
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"testing"
|
||
|
|
||
|
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) {
|
||
|
db, _ := testDB.SetupDB(t)
|
||
|
|
||
|
b := testutil.NewBeaconBlock()
|
||
|
b.Block.Slot = 32
|
||
|
require.NoError(t, db.SaveBlock(context.Background(), b))
|
||
|
r, err := b.Block.HashTreeRoot()
|
||
|
require.NoError(t, err)
|
||
|
tests := []struct {
|
||
|
wsVerified bool
|
||
|
wantErr bool
|
||
|
wsRoot [32]byte
|
||
|
wsEpoch uint64
|
||
|
finalizedEpoch uint64
|
||
|
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: db,
|
||
|
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)
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
}
|