mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-04 00:44:27 +00:00
49a0d3caf0
* Fix a few deps to work with go.mod, check in generated files * Update Gossipsub to 1.1 (#5998) * update libs * add new validators * add new deps * new set of deps * tls * further fix gossip update * get everything to build * clean up * gaz * fix build * fix all tests * add deps to images * imports Co-authored-by: rauljordan <raul@prysmaticlabs.com> * Beacon chain builds with go build * fix bazel * fix dep * lint * Add github action for testing go * on PR for any branch * fix libp2p test failure * Fix TestProcessBlock_PassesProcessingConditions by updating the proposer index in test * Revert "Fix TestProcessBlock_PassesProcessingConditions by updating the proposer index in test" This reverts commit 43676894ab01f03fe90a9b8ee3ecfbc2ec1ec4e4. * Compute and set proposer index instead of hard code * Add back go mod/sum, fix deps * go build ./... * Temporarily skip two tests * Fix kafka confluent patch * Fix kafka confluent patch * fix kafka build * fix kafka * Add info in DEPENDENCIES. Added a stub link for Why Bazel? until https://github.com/prysmaticlabs/documentation/issues/138 * Update fuzz ssz files as well * Update fuzz ssz files as well * getting closer * rollback rules_go and gazelle * fix gogo protobuf * install librdkafka-dev as part of github actions * Update kafka to a recent version where librkafkfa is not required for go modules * clarify comment * fix kafka build * disable go tests * comment * Fix geth dependencies for end to end * rename word * lint * fix docker Co-authored-by: Nishant Das <nishdas93@gmail.com> Co-authored-by: rauljordan <raul@prysmaticlabs.com> Co-authored-by: terence tsao <terence@prysmaticlabs.com>
200 lines
6.1 KiB
Go
200 lines
6.1 KiB
Go
package kv
|
|
|
|
import (
|
|
"context"
|
|
"flag"
|
|
"reflect"
|
|
"sort"
|
|
"testing"
|
|
|
|
ethpb "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/shared/bytesutil"
|
|
"github.com/prysmaticlabs/prysm/slasher/db/types"
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
func TestStore_AttesterSlashingNilBucket(t *testing.T) {
|
|
app := cli.App{}
|
|
set := flag.NewFlagSet("test", 0)
|
|
db := setupDB(t, cli.NewContext(&app, set, nil))
|
|
ctx := context.Background()
|
|
|
|
as := ðpb.AttesterSlashing{Attestation_1: ðpb.IndexedAttestation{Signature: bytesutil.PadTo([]byte("hello"), 96)}}
|
|
has, _, err := db.HasAttesterSlashing(ctx, as)
|
|
if err != nil {
|
|
t.Fatalf("HasAttesterSlashing should not return error: %v", err)
|
|
}
|
|
if has {
|
|
t.Fatal("HasAttesterSlashing should return false")
|
|
}
|
|
|
|
p, err := db.AttesterSlashings(ctx, types.SlashingStatus(types.Active))
|
|
if err != nil {
|
|
t.Fatalf("Failed to get attester slashing: %v", err)
|
|
}
|
|
if p == nil || len(p) != 0 {
|
|
t.Fatalf("Get should return empty attester slashing array for a non existent key")
|
|
}
|
|
}
|
|
|
|
func TestStore_SaveAttesterSlashing(t *testing.T) {
|
|
app := cli.App{}
|
|
set := flag.NewFlagSet("test", 0)
|
|
db := setupDB(t, cli.NewContext(&app, set, nil))
|
|
ctx := context.Background()
|
|
|
|
data := ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{},
|
|
Target: ðpb.Checkpoint{},
|
|
}
|
|
att := ðpb.IndexedAttestation{Data: data}
|
|
tests := []struct {
|
|
ss types.SlashingStatus
|
|
as *ethpb.AttesterSlashing
|
|
}{
|
|
{
|
|
ss: types.Active,
|
|
as: ðpb.AttesterSlashing{Attestation_1: ðpb.IndexedAttestation{Data: data, Signature: bytesutil.PadTo([]byte("hello"), 96)}, Attestation_2: att},
|
|
},
|
|
{
|
|
ss: types.Included,
|
|
as: ðpb.AttesterSlashing{Attestation_1: ðpb.IndexedAttestation{Data: data, Signature: bytesutil.PadTo([]byte("hello2"), 96)}, Attestation_2: att},
|
|
},
|
|
{
|
|
ss: types.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)
|
|
if err != nil {
|
|
t.Fatalf("save attester slashing failed: %v", err)
|
|
}
|
|
|
|
attesterSlashings, err := db.AttesterSlashings(ctx, tt.ss)
|
|
if err != nil {
|
|
t.Fatalf("failed to get attester slashings: %v", err)
|
|
}
|
|
|
|
if attesterSlashings == nil || !reflect.DeepEqual(attesterSlashings[0], tt.as) {
|
|
t.Fatalf("attester slashing: %v should be part of attester slashings response: %v", tt.as, attesterSlashings)
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
func TestStore_SaveAttesterSlashings(t *testing.T) {
|
|
app := cli.App{}
|
|
set := flag.NewFlagSet("test", 0)
|
|
db := setupDB(t, cli.NewContext(&app, set, nil))
|
|
ctx := context.Background()
|
|
|
|
ckpt := ðpb.Checkpoint{}
|
|
data := ðpb.AttestationData{Source: ckpt, Target: ckpt}
|
|
att := ðpb.IndexedAttestation{Data: data}
|
|
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, types.Active, as)
|
|
if err != nil {
|
|
t.Fatalf("save attester slashing failed: %v", err)
|
|
}
|
|
attesterSlashings, err := db.AttesterSlashings(ctx, types.Active)
|
|
if err != nil {
|
|
t.Fatalf("failed to get attester slashings: %v", err)
|
|
}
|
|
sort.SliceStable(attesterSlashings, func(i, j int) bool {
|
|
return attesterSlashings[i].Attestation_1.Signature[0] < attesterSlashings[j].Attestation_1.Signature[0]
|
|
})
|
|
if attesterSlashings == nil || !reflect.DeepEqual(attesterSlashings, as) {
|
|
t.Fatalf("Attester slashing: %v should be part of attester slashings response: %v", as, attesterSlashings)
|
|
}
|
|
}
|
|
|
|
func TestStore_UpdateAttesterSlashingStatus(t *testing.T) {
|
|
app := cli.App{}
|
|
set := flag.NewFlagSet("test", 0)
|
|
db := setupDB(t, cli.NewContext(&app, set, nil))
|
|
ctx := context.Background()
|
|
|
|
tests := []struct {
|
|
ss types.SlashingStatus
|
|
as *ethpb.AttesterSlashing
|
|
}{
|
|
{
|
|
ss: types.Active,
|
|
as: ðpb.AttesterSlashing{Attestation_1: ðpb.IndexedAttestation{Signature: bytesutil.PadTo([]byte("hello"), 96)}},
|
|
},
|
|
{
|
|
ss: types.Active,
|
|
as: ðpb.AttesterSlashing{Attestation_1: ðpb.IndexedAttestation{Signature: bytesutil.PadTo([]byte("hello2"), 96)}},
|
|
},
|
|
{
|
|
ss: types.Active,
|
|
as: ðpb.AttesterSlashing{Attestation_1: ðpb.IndexedAttestation{Signature: bytesutil.PadTo([]byte("hello3"), 96)}},
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
err := db.SaveAttesterSlashing(ctx, tt.ss, tt.as)
|
|
if err != nil {
|
|
t.Fatalf("save attester slashing failed: %v", err)
|
|
}
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
has, st, err := db.HasAttesterSlashing(ctx, tt.as)
|
|
if err != nil {
|
|
t.Fatalf("Failed to get attester slashing: %v", err)
|
|
}
|
|
if !has {
|
|
t.Fatalf("Failed to find attester slashing: %v", tt.as)
|
|
}
|
|
if st != tt.ss {
|
|
t.Fatalf("Failed to find attester slashing with the correct status: %v", tt.as)
|
|
}
|
|
|
|
err = db.SaveAttesterSlashing(ctx, types.SlashingStatus(types.Included), tt.as)
|
|
has, st, err = db.HasAttesterSlashing(ctx, tt.as)
|
|
if err != nil {
|
|
t.Fatalf("Failed to get attester slashing: %v", err)
|
|
}
|
|
if !has {
|
|
t.Fatalf("Failed to find attester slashing: %v", tt.as)
|
|
}
|
|
if st != types.Included {
|
|
t.Fatalf("Failed to find attester slashing with the correct status: %v", tt.as)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestStore_LatestEpochDetected(t *testing.T) {
|
|
app := cli.App{}
|
|
set := flag.NewFlagSet("test", 0)
|
|
db := setupDB(t, cli.NewContext(&app, set, nil))
|
|
ctx := context.Background()
|
|
|
|
e, err := db.GetLatestEpochDetected(ctx)
|
|
if err != nil {
|
|
t.Fatalf("Get latest epoch detected failed: %v", err)
|
|
}
|
|
if e != 0 {
|
|
t.Fatalf("Latest epoch detected should have been 0 before setting got: %d", e)
|
|
}
|
|
epoch := uint64(1)
|
|
err = db.SetLatestEpochDetected(ctx, epoch)
|
|
if err != nil {
|
|
t.Fatalf("Set latest epoch detected failed: %v", err)
|
|
}
|
|
e, err = db.GetLatestEpochDetected(ctx)
|
|
if err != nil {
|
|
t.Fatalf("Get latest epoch detected failed: %v", err)
|
|
}
|
|
if e != epoch {
|
|
t.Fatalf("Latest epoch detected should have been: %d got: %d", epoch, e)
|
|
}
|
|
}
|