mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
68d0c09daf
* Add, use and test `VerifyWeakSubjectivityRoot` * Comments * Make bazel test happy * Merge branch 'master' into verify-ws * Add flag to help * Merge branch 'verify-ws' of github.com:prysmaticlabs/prysm into verify-ws * Merge refs/heads/master into verify-ws * Merge refs/heads/master into verify-ws * Merge refs/heads/master into verify-ws * Merge branch 'master' of github.com:prysmaticlabs/prysm into verify-ws * Update beacon-chain/blockchain/service.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * Update beacon-chain/blockchain/weak_subjectivity_checks.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * Merge branch 'verify-ws' of github.com:prysmaticlabs/prysm into verify-ws * s/&&/|| for VerifyWeakSubjectivityRoot circuit breaker * Merge refs/heads/master into verify-ws * Merge refs/heads/master into verify-ws
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)
|
|
}
|
|
})
|
|
}
|
|
}
|