mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-07 10:12:19 +00:00
b5c4dc2a75
* init-sync updates * slasher/db/kv tests * beacon-chain/rpc/beacon tests * update kv_test * beacon-chain/rpc-validator tests updated * slasher/db/kv - remove teardown method * beacon-chain/sync tests updated * beacon-chain/db/kv tests updated * beacon-chain/blockchain tests updated * beacon-chain/state/stategen tests updated * beacon-chain/powchain updates * updates rest of slasher tests * validator/db tests * rest of the tests * minor comments update * gazelle * Merge refs/heads/master into teardowndb-to-cleanup
799 lines
21 KiB
Go
799 lines
21 KiB
Go
package kv
|
|
|
|
import (
|
|
"context"
|
|
"flag"
|
|
"reflect"
|
|
"testing"
|
|
|
|
ethpb "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
|
|
"gopkg.in/urfave/cli.v2"
|
|
)
|
|
|
|
type testStruct struct {
|
|
idxAtt *ethpb.IndexedAttestation
|
|
}
|
|
|
|
var tests []testStruct
|
|
|
|
func init() {
|
|
tests = []testStruct{
|
|
{
|
|
idxAtt: ðpb.IndexedAttestation{
|
|
AttestingIndices: []uint64{0},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 1},
|
|
},
|
|
Signature: []byte{1, 2},
|
|
},
|
|
},
|
|
{
|
|
idxAtt: ðpb.IndexedAttestation{
|
|
AttestingIndices: []uint64{1, 2},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 2},
|
|
},
|
|
Signature: []byte{3, 4},
|
|
},
|
|
},
|
|
{
|
|
idxAtt: ðpb.IndexedAttestation{
|
|
AttestingIndices: []uint64{0},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 1},
|
|
Target: ðpb.Checkpoint{Epoch: 2},
|
|
},
|
|
Signature: []byte{5, 6},
|
|
},
|
|
},
|
|
{
|
|
idxAtt: ðpb.IndexedAttestation{
|
|
AttestingIndices: []uint64{0},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 1},
|
|
Target: ðpb.Checkpoint{Epoch: 3},
|
|
},
|
|
Signature: []byte{5, 6},
|
|
},
|
|
},
|
|
}
|
|
}
|
|
|
|
func TestHasIndexedAttestation_NilDB(t *testing.T) {
|
|
app := cli.App{}
|
|
set := flag.NewFlagSet("test", 0)
|
|
db := setupDB(t, cli.NewContext(&app, set, nil))
|
|
ctx := context.Background()
|
|
|
|
hasIdxAtt, err := db.HasIndexedAttestation(ctx, tests[0].idxAtt)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if hasIdxAtt {
|
|
t.Fatal("HasIndexedAttestation should return false")
|
|
}
|
|
}
|
|
|
|
func TestSaveIndexedAttestation(t *testing.T) {
|
|
app := &cli.App{}
|
|
set := flag.NewFlagSet("test", 0)
|
|
db := setupDB(t, cli.NewContext(app, set, nil))
|
|
ctx := context.Background()
|
|
|
|
for _, tt := range tests {
|
|
if err := db.SaveIndexedAttestation(ctx, tt.idxAtt); err != nil {
|
|
t.Fatalf("save indexed attestation failed: %v", err)
|
|
}
|
|
|
|
exists, err := db.HasIndexedAttestation(ctx, tt.idxAtt)
|
|
if err != nil {
|
|
t.Fatalf("failed to get indexed attestation: %v", err)
|
|
}
|
|
|
|
if !exists {
|
|
t.Fatal("Expected to find saved attestation in DB")
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestIndexedAttestationsWithPrefix(t *testing.T) {
|
|
type prefixTestStruct struct {
|
|
name string
|
|
attsInDB []*ethpb.IndexedAttestation
|
|
targetEpoch uint64
|
|
searchPrefix []byte
|
|
expectedResult []*ethpb.IndexedAttestation
|
|
}
|
|
prefixTests := []prefixTestStruct{
|
|
{
|
|
name: "single item, same sig, should find one",
|
|
attsInDB: []*ethpb.IndexedAttestation{
|
|
{
|
|
AttestingIndices: []uint64{0},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 1},
|
|
},
|
|
Signature: []byte{1, 2},
|
|
},
|
|
},
|
|
searchPrefix: []byte{1, 2},
|
|
targetEpoch: 1,
|
|
expectedResult: []*ethpb.IndexedAttestation{
|
|
{
|
|
AttestingIndices: []uint64{0},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 1},
|
|
},
|
|
Signature: []byte{1, 2},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "multiple item, same sig, should find 3",
|
|
attsInDB: []*ethpb.IndexedAttestation{
|
|
{
|
|
AttestingIndices: []uint64{0},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 1},
|
|
BeaconBlockRoot: []byte("hi there"),
|
|
},
|
|
Signature: []byte{1, 2, 3},
|
|
},
|
|
{
|
|
AttestingIndices: []uint64{1},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 1},
|
|
BeaconBlockRoot: []byte("hi there 2"),
|
|
},
|
|
Signature: []byte{1, 2, 4},
|
|
},
|
|
{
|
|
AttestingIndices: []uint64{0},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 1},
|
|
BeaconBlockRoot: []byte("hi there 3"),
|
|
},
|
|
Signature: []byte{1, 2, 5},
|
|
},
|
|
},
|
|
searchPrefix: []byte{1, 2},
|
|
targetEpoch: 1,
|
|
expectedResult: []*ethpb.IndexedAttestation{
|
|
{
|
|
AttestingIndices: []uint64{0},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 1},
|
|
BeaconBlockRoot: []byte("hi there"),
|
|
},
|
|
Signature: []byte{1, 2, 3},
|
|
},
|
|
{
|
|
AttestingIndices: []uint64{1},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 1},
|
|
BeaconBlockRoot: []byte("hi there 2"),
|
|
},
|
|
Signature: []byte{1, 2, 4},
|
|
},
|
|
{
|
|
AttestingIndices: []uint64{0},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 1},
|
|
BeaconBlockRoot: []byte("hi there 3"),
|
|
},
|
|
Signature: []byte{1, 2, 5},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "multiple items, different sig and epoch, should find 2",
|
|
attsInDB: []*ethpb.IndexedAttestation{
|
|
{
|
|
AttestingIndices: []uint64{0},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 1},
|
|
BeaconBlockRoot: []byte("hi there"),
|
|
},
|
|
Signature: []byte{1, 2, 3},
|
|
},
|
|
{
|
|
AttestingIndices: []uint64{1},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 2},
|
|
BeaconBlockRoot: []byte("hi there"),
|
|
},
|
|
Signature: []byte{1, 2, 4},
|
|
},
|
|
{
|
|
AttestingIndices: []uint64{0},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 3},
|
|
BeaconBlockRoot: []byte("hi there 3"),
|
|
},
|
|
Signature: []byte{1, 2, 5},
|
|
},
|
|
{
|
|
AttestingIndices: []uint64{1},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 3},
|
|
BeaconBlockRoot: []byte("hi there 2"),
|
|
},
|
|
Signature: []byte{1, 3, 1},
|
|
},
|
|
{
|
|
AttestingIndices: []uint64{1},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 2},
|
|
BeaconBlockRoot: []byte("hi there 2"),
|
|
},
|
|
Signature: []byte{0, 2, 4},
|
|
},
|
|
{
|
|
AttestingIndices: []uint64{4},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 2},
|
|
BeaconBlockRoot: []byte("hi there 2"),
|
|
},
|
|
Signature: []byte{1, 2, 9},
|
|
},
|
|
},
|
|
searchPrefix: []byte{1, 2},
|
|
targetEpoch: 2,
|
|
expectedResult: []*ethpb.IndexedAttestation{
|
|
{
|
|
AttestingIndices: []uint64{1},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 2},
|
|
BeaconBlockRoot: []byte("hi there"),
|
|
},
|
|
Signature: []byte{1, 2, 4},
|
|
},
|
|
{
|
|
AttestingIndices: []uint64{4},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 2},
|
|
BeaconBlockRoot: []byte("hi there 2"),
|
|
},
|
|
Signature: []byte{1, 2, 9},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "multiple items, different sigs, should not find any atts",
|
|
attsInDB: []*ethpb.IndexedAttestation{
|
|
{
|
|
AttestingIndices: []uint64{0},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 2},
|
|
BeaconBlockRoot: []byte("hi there"),
|
|
},
|
|
Signature: []byte{3, 5, 3},
|
|
},
|
|
{
|
|
AttestingIndices: []uint64{0},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 2},
|
|
BeaconBlockRoot: []byte("hi there"),
|
|
},
|
|
Signature: []byte{3, 5, 3},
|
|
},
|
|
{
|
|
AttestingIndices: []uint64{1},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 1},
|
|
BeaconBlockRoot: []byte("hi there 2"),
|
|
},
|
|
Signature: []byte{1, 2, 4},
|
|
},
|
|
{
|
|
AttestingIndices: []uint64{0},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 1},
|
|
BeaconBlockRoot: []byte("hi there 3"),
|
|
},
|
|
Signature: []byte{1, 2, 5},
|
|
},
|
|
},
|
|
searchPrefix: []byte{3, 5},
|
|
targetEpoch: 1,
|
|
},
|
|
}
|
|
for _, tt := range prefixTests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
app := cli.App{}
|
|
set := flag.NewFlagSet("test", 0)
|
|
db := setupDB(t, cli.NewContext(&app, set, nil))
|
|
ctx := context.Background()
|
|
|
|
if err := db.SaveIndexedAttestations(ctx, tt.attsInDB); err != nil {
|
|
t.Fatalf("save indexed attestation failed: %v", err)
|
|
}
|
|
for _, att := range tt.attsInDB {
|
|
found, err := db.HasIndexedAttestation(ctx, att)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if !found {
|
|
t.Fatalf("Expected to save %v", att)
|
|
}
|
|
}
|
|
|
|
idxAtts, err := db.IndexedAttestationsWithPrefix(ctx, tt.targetEpoch, tt.searchPrefix)
|
|
if err != nil {
|
|
t.Fatalf("failed to get indexed attestation: %v", err)
|
|
}
|
|
|
|
if !reflect.DeepEqual(tt.expectedResult, idxAtts) {
|
|
t.Fatalf("Expected %v, received: %v", tt.expectedResult, idxAtts)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestIndexedAttestationsForTarget(t *testing.T) {
|
|
type prefixTestStruct struct {
|
|
name string
|
|
attsInDB []*ethpb.IndexedAttestation
|
|
targetEpoch uint64
|
|
expectedResult []*ethpb.IndexedAttestation
|
|
}
|
|
prefixTests := []prefixTestStruct{
|
|
{
|
|
name: "single item, should find one",
|
|
attsInDB: []*ethpb.IndexedAttestation{
|
|
{
|
|
AttestingIndices: []uint64{0},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 1},
|
|
},
|
|
Signature: []byte{1, 2},
|
|
},
|
|
},
|
|
targetEpoch: 1,
|
|
expectedResult: []*ethpb.IndexedAttestation{
|
|
{
|
|
AttestingIndices: []uint64{0},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 1},
|
|
},
|
|
Signature: []byte{1, 2},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "multiple items, same epoch, should find 3",
|
|
attsInDB: []*ethpb.IndexedAttestation{
|
|
{
|
|
AttestingIndices: []uint64{0},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 3},
|
|
BeaconBlockRoot: []byte("hi there"),
|
|
},
|
|
Signature: []byte{1, 2, 3},
|
|
},
|
|
{
|
|
AttestingIndices: []uint64{1},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 3},
|
|
BeaconBlockRoot: []byte("hi there 2"),
|
|
},
|
|
Signature: []byte{1, 5, 4},
|
|
},
|
|
{
|
|
AttestingIndices: []uint64{0},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 3},
|
|
BeaconBlockRoot: []byte("hi there 3"),
|
|
},
|
|
Signature: []byte{8, 2, 5},
|
|
},
|
|
},
|
|
targetEpoch: 3,
|
|
expectedResult: []*ethpb.IndexedAttestation{
|
|
{
|
|
AttestingIndices: []uint64{0},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 3},
|
|
BeaconBlockRoot: []byte("hi there"),
|
|
},
|
|
Signature: []byte{1, 2, 3},
|
|
},
|
|
{
|
|
AttestingIndices: []uint64{1},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 3},
|
|
BeaconBlockRoot: []byte("hi there 2"),
|
|
},
|
|
Signature: []byte{1, 5, 4},
|
|
},
|
|
{
|
|
AttestingIndices: []uint64{0},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 3},
|
|
BeaconBlockRoot: []byte("hi there 3"),
|
|
},
|
|
Signature: []byte{8, 2, 5},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "multiple items, different epochs, should not find any atts",
|
|
attsInDB: []*ethpb.IndexedAttestation{
|
|
{
|
|
AttestingIndices: []uint64{0},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 1},
|
|
BeaconBlockRoot: []byte("hi there"),
|
|
},
|
|
Signature: []byte{3, 5, 3},
|
|
},
|
|
{
|
|
AttestingIndices: []uint64{0},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 2},
|
|
BeaconBlockRoot: []byte("hi there"),
|
|
},
|
|
Signature: []byte{3, 5, 3},
|
|
},
|
|
{
|
|
AttestingIndices: []uint64{1},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 3},
|
|
BeaconBlockRoot: []byte("hi there 2"),
|
|
},
|
|
Signature: []byte{1, 2, 4},
|
|
},
|
|
{
|
|
AttestingIndices: []uint64{0},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 5},
|
|
BeaconBlockRoot: []byte("hi there 3"),
|
|
},
|
|
Signature: []byte{1, 2, 5},
|
|
},
|
|
},
|
|
targetEpoch: 4,
|
|
},
|
|
}
|
|
for _, tt := range prefixTests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
app := cli.App{}
|
|
set := flag.NewFlagSet("test", 0)
|
|
db := setupDB(t, cli.NewContext(&app, set, nil))
|
|
ctx := context.Background()
|
|
|
|
if err := db.SaveIndexedAttestations(ctx, tt.attsInDB); err != nil {
|
|
t.Fatalf("save indexed attestation failed: %v", err)
|
|
}
|
|
for _, att := range tt.attsInDB {
|
|
found, err := db.HasIndexedAttestation(ctx, att)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if !found {
|
|
t.Fatalf("Expected to save %v", att)
|
|
}
|
|
}
|
|
|
|
idxAtts, err := db.IndexedAttestationsForTarget(ctx, tt.targetEpoch)
|
|
if err != nil {
|
|
t.Fatalf("failed to get indexed attestation: %v", err)
|
|
}
|
|
|
|
if !reflect.DeepEqual(tt.expectedResult, idxAtts) {
|
|
t.Fatalf("Expected %v, received: %v", tt.expectedResult, idxAtts)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestDeleteIndexedAttestation(t *testing.T) {
|
|
type deleteTestStruct struct {
|
|
name string
|
|
attsInDB []*ethpb.IndexedAttestation
|
|
deleteAtts []*ethpb.IndexedAttestation
|
|
foundArray []bool
|
|
}
|
|
deleteTests := []deleteTestStruct{
|
|
{
|
|
name: "single item, should delete all",
|
|
attsInDB: []*ethpb.IndexedAttestation{
|
|
{
|
|
AttestingIndices: []uint64{0},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 1},
|
|
},
|
|
Signature: []byte{1, 2},
|
|
},
|
|
},
|
|
deleteAtts: []*ethpb.IndexedAttestation{
|
|
{
|
|
AttestingIndices: []uint64{0},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 1},
|
|
},
|
|
Signature: []byte{1, 2},
|
|
},
|
|
},
|
|
foundArray: []bool{false},
|
|
},
|
|
{
|
|
name: "multiple items, should delete 2",
|
|
attsInDB: []*ethpb.IndexedAttestation{
|
|
{
|
|
AttestingIndices: []uint64{0},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 1},
|
|
},
|
|
Signature: []byte{1, 2},
|
|
},
|
|
{
|
|
AttestingIndices: []uint64{0},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 3},
|
|
},
|
|
Signature: []byte{2, 4},
|
|
},
|
|
{
|
|
AttestingIndices: []uint64{0},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 4},
|
|
},
|
|
Signature: []byte{3, 5},
|
|
},
|
|
},
|
|
deleteAtts: []*ethpb.IndexedAttestation{
|
|
{
|
|
AttestingIndices: []uint64{0},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 1},
|
|
},
|
|
Signature: []byte{1, 2},
|
|
},
|
|
{
|
|
AttestingIndices: []uint64{0},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 4},
|
|
},
|
|
Signature: []byte{3, 5},
|
|
},
|
|
},
|
|
foundArray: []bool{false, true, false},
|
|
},
|
|
{
|
|
name: "multiple similar items, should delete 1",
|
|
attsInDB: []*ethpb.IndexedAttestation{
|
|
{
|
|
AttestingIndices: []uint64{0},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 1},
|
|
},
|
|
Signature: []byte{1, 2, 2},
|
|
},
|
|
{
|
|
AttestingIndices: []uint64{0},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 1},
|
|
},
|
|
Signature: []byte{1, 2, 3},
|
|
},
|
|
{
|
|
AttestingIndices: []uint64{0},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 1},
|
|
},
|
|
Signature: []byte{1, 2, 4},
|
|
},
|
|
},
|
|
deleteAtts: []*ethpb.IndexedAttestation{
|
|
{
|
|
AttestingIndices: []uint64{0},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 1},
|
|
},
|
|
Signature: []byte{1, 2, 3},
|
|
},
|
|
},
|
|
foundArray: []bool{true, false, true},
|
|
},
|
|
{
|
|
name: "should not delete any if not in list",
|
|
attsInDB: []*ethpb.IndexedAttestation{
|
|
{
|
|
AttestingIndices: []uint64{0},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 1},
|
|
},
|
|
Signature: []byte{1, 2, 2},
|
|
},
|
|
{
|
|
AttestingIndices: []uint64{0},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 1},
|
|
},
|
|
Signature: []byte{1, 2, 3},
|
|
},
|
|
{
|
|
AttestingIndices: []uint64{0},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 1},
|
|
},
|
|
Signature: []byte{1, 2, 4},
|
|
},
|
|
},
|
|
deleteAtts: []*ethpb.IndexedAttestation{
|
|
{
|
|
AttestingIndices: []uint64{3},
|
|
Data: ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Epoch: 0},
|
|
Target: ðpb.Checkpoint{Epoch: 1},
|
|
},
|
|
Signature: []byte{1, 2, 6},
|
|
},
|
|
},
|
|
foundArray: []bool{true, true, true},
|
|
},
|
|
}
|
|
for _, tt := range deleteTests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
app := &cli.App{}
|
|
set := flag.NewFlagSet("test", 0)
|
|
db := setupDB(t, cli.NewContext(app, set, nil))
|
|
ctx := context.Background()
|
|
|
|
if err := db.SaveIndexedAttestations(ctx, tt.attsInDB); err != nil {
|
|
t.Fatalf("save indexed attestation failed: %v", err)
|
|
}
|
|
|
|
for _, att := range tt.attsInDB {
|
|
found, err := db.HasIndexedAttestation(ctx, att)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if !found {
|
|
t.Fatalf("Expected to save %v", att)
|
|
}
|
|
}
|
|
|
|
for _, att := range tt.deleteAtts {
|
|
if err := db.DeleteIndexedAttestation(ctx, att); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
for i, att := range tt.attsInDB {
|
|
found, err := db.HasIndexedAttestation(ctx, att)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if found != tt.foundArray[i] {
|
|
t.Fatalf("Expected found to be %t: %v", tt.foundArray[i], att)
|
|
}
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestHasIndexedAttestation(t *testing.T) {
|
|
app := cli.App{}
|
|
set := flag.NewFlagSet("test", 0)
|
|
db := setupDB(t, cli.NewContext(&app, set, nil))
|
|
ctx := context.Background()
|
|
|
|
for _, tt := range tests {
|
|
exists, err := db.HasIndexedAttestation(ctx, tt.idxAtt)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if exists {
|
|
t.Fatal("has indexed attestation should return false for indexed attestations that are not in db")
|
|
}
|
|
|
|
if err := db.SaveIndexedAttestation(ctx, tt.idxAtt); err != nil {
|
|
t.Fatalf("save indexed attestation failed: %v", err)
|
|
}
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
exists, err := db.HasIndexedAttestation(ctx, tt.idxAtt)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if !exists {
|
|
t.Fatal("has indexed attestation should return true")
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestPruneHistoryIndexedAttestation(t *testing.T) {
|
|
app := cli.App{}
|
|
set := flag.NewFlagSet("test", 0)
|
|
db := setupDB(t, cli.NewContext(&app, set, nil))
|
|
ctx := context.Background()
|
|
|
|
for _, tt := range tests {
|
|
if err := db.SaveIndexedAttestation(ctx, tt.idxAtt); err != nil {
|
|
t.Fatalf("save indexed attestation failed: %v", err)
|
|
}
|
|
|
|
found, err := db.HasIndexedAttestation(ctx, tt.idxAtt)
|
|
if err != nil {
|
|
t.Fatalf("failed to get indexed attestation: %v", err)
|
|
}
|
|
|
|
if !found {
|
|
t.Fatal("Expected to find attestation in DB")
|
|
}
|
|
}
|
|
currentEpoch := uint64(2)
|
|
historyToKeep := uint64(1)
|
|
if err := db.PruneAttHistory(ctx, currentEpoch, historyToKeep); err != nil {
|
|
t.Fatalf("failed to prune: %v", err)
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
exists, err := db.HasIndexedAttestation(ctx, tt.idxAtt)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
if tt.idxAtt.Data.Target.Epoch > currentEpoch-historyToKeep {
|
|
if !exists {
|
|
t.Fatal("Expected to find attestation newer than prune age in DB")
|
|
}
|
|
} else {
|
|
if exists {
|
|
t.Fatal("Expected to not find attestation older than prune age in DB")
|
|
}
|
|
}
|
|
}
|
|
}
|