mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-16 14:58:46 +00:00
2f10b1c7b1
* Remove gogoproto compiler * Remove more gogoproto * Improvements * Fix gengo * More scripts * Gazelle, fix deps * Fix version and errors * Fix gocast for arrays * Fix ethapis * Fixes * Fix compile errors * fix go.mod * //proto/... builds * Update for protov2 * temp fix compilation to move on * Change everything to emptypb.empty * Add grpc to proto/slashings * Fix almost all build failures * Oher build problems * FIX THIS FUCKING THING * gaz literally every .bazel * Final touches * Final final touches * Fix proto * Begin moving proto.Marshal to native * Fix site_data * Fixes * Fix duplicate gateway * Fix gateway target * Fix ethapis * Fixes from review * Update * Fix * Fix status test * Fix fuzz * Add isprotoslice to fun * Change DeepEqual to DeepSSZEqual for proto arrays * Fix build * Fix gaz * Update go * Fixes * Fixes * Add case for nil validators after copy * Fix cast * Fix test * Fix imports * Go mod * Only use extension where needed * Fixes * Split gateway from gengo * gaz * go mod * Add back hydrated state * fix hydrate * Fix proto.clone * Fies * Revert "Split gateway from gengo" This reverts commit 7298bb2054d446e427d9af97e13b8fabe8695085. * Revert "gaz" This reverts commit ca952565701a88727e22302d6c8d60ac48d97255. * Merge all gateway into one target * go mod * Gaz * Add generate v1_gateway files * run pb again * goimports * gaz * Fix comments * Fix protos * Fix PR * Fix protos * Update grpc-gateway and ethapis * Update ethapis and gen-go-cast * Go tidy * Reorder * Fix ethapis * fix spec tests * Fix script * Remove unused import * Fix fuzz * Fix gomod * Update version * Error if the cloned result is nil * Handle optional slots * ADd more empty checks to clone * Undo fuzz changes * Fix build.bazel * Gaz * Redo fuzz changes * Undo some eth1data changes * Update go.mod Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com> * Undo clone beacon state * Remove gogo proto more and unused v1_gateway * Add manual fix for nil vals * Fix gaz * tidy * Tidy again * Add detailed error * Revert "Add detailed error" This reverts commit 59bc053dcd59569a54c95b07739d5a379665ec5d. * Undo varint changes * Fix nil validators in deposit test * Commit * Undo Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com> Co-authored-by: Radosław Kapka <rkapka@wp.pl> Co-authored-by: Nishant Das <nishdas93@gmail.com> Co-authored-by: Raul Jordan <raul@prysmaticlabs.com>
163 lines
6.4 KiB
Go
163 lines
6.4 KiB
Go
package kv
|
|
|
|
import (
|
|
"context"
|
|
"sort"
|
|
"testing"
|
|
|
|
types "github.com/prysmaticlabs/eth2-types"
|
|
ethpb "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/shared/bytesutil"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil/require"
|
|
dbtypes "github.com/prysmaticlabs/prysm/slasher/db/types"
|
|
)
|
|
|
|
func TestStore_AttesterSlashingNilBucket(t *testing.T) {
|
|
db := setupDB(t)
|
|
ctx := context.Background()
|
|
|
|
as := ðpb.AttesterSlashing{
|
|
Attestation_1: testutil.HydrateIndexedAttestation(ðpb.IndexedAttestation{
|
|
Signature: bytesutil.PadTo([]byte("hello"), 96),
|
|
}),
|
|
Attestation_2: testutil.HydrateIndexedAttestation(ðpb.IndexedAttestation{
|
|
Signature: bytesutil.PadTo([]byte("hello"), 96),
|
|
}),
|
|
}
|
|
has, _, err := db.HasAttesterSlashing(ctx, as)
|
|
require.NoError(t, err, "HasAttesterSlashing should not return error")
|
|
require.Equal(t, false, has)
|
|
|
|
p, err := db.AttesterSlashings(ctx, dbtypes.SlashingStatus(dbtypes.Active))
|
|
require.NoError(t, err, "Failed to get attester slashing")
|
|
require.NotNil(t, p, "Get should return empty attester slashing array for a non existent key")
|
|
require.Equal(t, 0, len(p), "Get should return empty attester slashing array for a non existent key")
|
|
}
|
|
|
|
func TestStore_SaveAttesterSlashing(t *testing.T) {
|
|
db := setupDB(t)
|
|
ctx := context.Background()
|
|
|
|
data := testutil.HydrateAttestationData(ðpb.AttestationData{})
|
|
att := ðpb.IndexedAttestation{Data: data, Signature: make([]byte, 96)}
|
|
tests := []struct {
|
|
ss dbtypes.SlashingStatus
|
|
as *ethpb.AttesterSlashing
|
|
}{
|
|
{
|
|
ss: dbtypes.Active,
|
|
as: ðpb.AttesterSlashing{Attestation_1: ðpb.IndexedAttestation{Data: data, Signature: bytesutil.PadTo([]byte("hello"), 96)}, Attestation_2: att},
|
|
},
|
|
{
|
|
ss: dbtypes.Included,
|
|
as: ðpb.AttesterSlashing{Attestation_1: ðpb.IndexedAttestation{Data: data, Signature: bytesutil.PadTo([]byte("hello2"), 96)}, Attestation_2: att},
|
|
},
|
|
{
|
|
ss: dbtypes.Reverted,
|
|
as: ðpb.AttesterSlashing{Attestation_1: ðpb.IndexedAttestation{Data: data, Signature: bytesutil.PadTo([]byte("hello3"), 96)}, Attestation_2: att},
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
err := db.SaveAttesterSlashing(ctx, tt.ss, tt.as)
|
|
require.NoError(t, err, "Save attester slashing failed")
|
|
|
|
attesterSlashings, err := db.AttesterSlashings(ctx, tt.ss)
|
|
require.NoError(t, err, "Failed to get attester slashings")
|
|
require.NotNil(t, attesterSlashings)
|
|
require.DeepEqual(t, tt.as, attesterSlashings[0], "Slashing: %v should be part of slashings response: %v", tt.as, attesterSlashings)
|
|
}
|
|
}
|
|
|
|
func TestStore_SaveAttesterSlashings(t *testing.T) {
|
|
db := setupDB(t)
|
|
ctx := context.Background()
|
|
|
|
ckpt := ðpb.Checkpoint{Root: make([]byte, 32)}
|
|
data := ðpb.AttestationData{Source: ckpt, Target: ckpt, BeaconBlockRoot: make([]byte, 32)}
|
|
att := ðpb.IndexedAttestation{Data: data, Signature: make([]byte, 96)}
|
|
as := []*ethpb.AttesterSlashing{
|
|
{Attestation_1: ðpb.IndexedAttestation{Signature: bytesutil.PadTo([]byte("1"), 96), Data: data}, Attestation_2: att},
|
|
{Attestation_1: ðpb.IndexedAttestation{Signature: bytesutil.PadTo([]byte("2"), 96), Data: data}, Attestation_2: att},
|
|
{Attestation_1: ðpb.IndexedAttestation{Signature: bytesutil.PadTo([]byte("3"), 96), Data: data}, Attestation_2: att},
|
|
}
|
|
err := db.SaveAttesterSlashings(ctx, dbtypes.Active, as)
|
|
require.NoError(t, err, "Save attester slashing failed")
|
|
attesterSlashings, err := db.AttesterSlashings(ctx, dbtypes.Active)
|
|
require.NoError(t, err, "Failed to get attester slashings")
|
|
sort.SliceStable(attesterSlashings, func(i, j int) bool {
|
|
return attesterSlashings[i].Attestation_1.Signature[0] < attesterSlashings[j].Attestation_1.Signature[0]
|
|
})
|
|
require.NotNil(t, attesterSlashings)
|
|
require.DeepSSZEqual(t, as, attesterSlashings, "Slashing: %v should be part of slashings response: %v", as, attesterSlashings)
|
|
}
|
|
|
|
func TestStore_UpdateAttesterSlashingStatus(t *testing.T) {
|
|
db := setupDB(t)
|
|
ctx := context.Background()
|
|
|
|
data := testutil.HydrateAttestationData(ðpb.AttestationData{})
|
|
|
|
tests := []struct {
|
|
ss dbtypes.SlashingStatus
|
|
as *ethpb.AttesterSlashing
|
|
}{
|
|
{
|
|
ss: dbtypes.Active,
|
|
as: ðpb.AttesterSlashing{
|
|
Attestation_1: ðpb.IndexedAttestation{Data: data, Signature: bytesutil.PadTo([]byte("hello"), 96)},
|
|
Attestation_2: ðpb.IndexedAttestation{Data: data, Signature: bytesutil.PadTo([]byte("hello"), 96)},
|
|
},
|
|
},
|
|
{
|
|
ss: dbtypes.Active,
|
|
as: ðpb.AttesterSlashing{
|
|
Attestation_1: ðpb.IndexedAttestation{Data: data, Signature: bytesutil.PadTo([]byte("hello2"), 96)},
|
|
Attestation_2: ðpb.IndexedAttestation{Data: data, Signature: bytesutil.PadTo([]byte("hello2"), 96)},
|
|
},
|
|
},
|
|
{
|
|
ss: dbtypes.Active,
|
|
as: ðpb.AttesterSlashing{
|
|
Attestation_1: ðpb.IndexedAttestation{Data: data, Signature: bytesutil.PadTo([]byte("hello3"), 96)},
|
|
Attestation_2: ðpb.IndexedAttestation{Data: data, Signature: bytesutil.PadTo([]byte("hello2"), 96)},
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
err := db.SaveAttesterSlashing(ctx, tt.ss, tt.as)
|
|
require.NoError(t, err, "Save attester slashing failed")
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
has, st, err := db.HasAttesterSlashing(ctx, tt.as)
|
|
require.NoError(t, err, "Failed to get attester slashing")
|
|
require.Equal(t, true, has, "Failed to find attester slashing: %v", tt.as)
|
|
require.Equal(t, tt.ss, st, "Failed to find attester slashing with the correct status: %v", tt.as)
|
|
|
|
err = db.SaveAttesterSlashing(ctx, dbtypes.SlashingStatus(dbtypes.Included), tt.as)
|
|
require.NoError(t, err)
|
|
has, st, err = db.HasAttesterSlashing(ctx, tt.as)
|
|
require.NoError(t, err, "Failed to get attester slashing")
|
|
require.Equal(t, true, has, "Failed to find attester slashing: %v", tt.as)
|
|
require.Equal(t, dbtypes.SlashingStatus(dbtypes.Included), st, "Failed to find attester slashing with the correct status: %v", tt.as)
|
|
}
|
|
}
|
|
|
|
func TestStore_LatestEpochDetected(t *testing.T) {
|
|
db := setupDB(t)
|
|
ctx := context.Background()
|
|
|
|
e, err := db.GetLatestEpochDetected(ctx)
|
|
require.NoError(t, err, "Get latest epoch detected failed")
|
|
require.Equal(t, types.Epoch(0), e, "Latest epoch detected should have been 0 before setting got: %d", e)
|
|
epoch := types.Epoch(1)
|
|
err = db.SetLatestEpochDetected(ctx, epoch)
|
|
require.NoError(t, err, "Set latest epoch detected failed")
|
|
e, err = db.GetLatestEpochDetected(ctx)
|
|
require.NoError(t, err, "Get latest epoch detected failed")
|
|
require.Equal(t, epoch, e, "Latest epoch detected should have been: %d got: %d", epoch, e)
|
|
}
|