mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-31 23:41:22 +00:00
14b3181e67
* more spanner additions * implement iface * begin implement * wrapped up spanner functions * rem interface * added in necessary comments * comments on enums * begin adding tests * plug in surround vote detection * saved indexed db implementation * finally plugin slashing for historical data * Small fixes * add in all gazelle * save incoming new functions * resolve todo * fix broken test channel item * tests passing when fixing certain arguments and setups * Add comment and change unimplemented * find surround * added in gazelle * gazz * feedback from shay * fixed up naming * Update * Add tests for detectSurroundVotes * Remove logs * Fix slasher test * formatting * Remove unneeded condition * Test indices better * fixing broken build * pass tests * skip tests * imports * Update slasher/detection/attestations/attestations_test.go * Update slasher/beaconclient/historical_data_retrieval_test.go * Address comments * Rename function * Add comment for future optimization * Fix comment Co-authored-by: Ivan Martinez <ivanthegreatdev@gmail.com>
90 lines
2.6 KiB
Go
90 lines
2.6 KiB
Go
package beaconclient
|
|
|
|
import (
|
|
"context"
|
|
"reflect"
|
|
"strconv"
|
|
"testing"
|
|
|
|
"github.com/golang/mock/gomock"
|
|
ethpb "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/shared/mock"
|
|
"github.com/prysmaticlabs/prysm/shared/params"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil"
|
|
testDB "github.com/prysmaticlabs/prysm/slasher/db/testing"
|
|
logTest "github.com/sirupsen/logrus/hooks/test"
|
|
)
|
|
|
|
func TestService_RequestHistoricalAttestations(t *testing.T) {
|
|
hook := logTest.NewGlobal()
|
|
ctrl := gomock.NewController(t)
|
|
defer ctrl.Finish()
|
|
db := testDB.SetupSlasherDB(t, false)
|
|
defer testDB.TeardownSlasherDB(t, db)
|
|
client := mock.NewMockBeaconChainClient(ctrl)
|
|
|
|
bs := Service{
|
|
beaconClient: client,
|
|
slasherDB: db,
|
|
}
|
|
|
|
numAtts := 1000
|
|
wanted := make([]*ethpb.IndexedAttestation, numAtts)
|
|
for i := 0; i < numAtts; i++ {
|
|
wanted[i] = ðpb.IndexedAttestation{
|
|
AttestingIndices: []uint64{1, 2, 3},
|
|
Data: ðpb.AttestationData{
|
|
Slot: uint64(i),
|
|
Target: ðpb.Checkpoint{
|
|
Epoch: 1,
|
|
Root: make([]byte, 32),
|
|
},
|
|
},
|
|
}
|
|
}
|
|
|
|
// We override the page size in the requests to 100 so we will
|
|
// obtain 10 pages of indexed attestations from the server.
|
|
numPages := 100
|
|
perPage := numAtts / numPages
|
|
cfg := params.BeaconConfig()
|
|
cfg.DefaultPageSize = perPage
|
|
params.OverrideBeaconConfig(cfg)
|
|
|
|
// We expect there to be numPages calls to ListIndexedAttestations
|
|
// to retrieve all attestations for epoch 0.
|
|
for i := 0; i < numAtts; i += perPage {
|
|
if i+perPage >= numAtts {
|
|
client.EXPECT().ListIndexedAttestations(
|
|
gomock.Any(),
|
|
gomock.Any(),
|
|
).Return(ðpb.ListIndexedAttestationsResponse{
|
|
IndexedAttestations: wanted[i:],
|
|
NextPageToken: "",
|
|
TotalSize: int32(numAtts),
|
|
}, nil)
|
|
} else {
|
|
client.EXPECT().ListIndexedAttestations(
|
|
gomock.Any(),
|
|
gomock.Any(),
|
|
).Return(ðpb.ListIndexedAttestationsResponse{
|
|
IndexedAttestations: wanted[i : i+perPage],
|
|
NextPageToken: strconv.Itoa(i + 1),
|
|
TotalSize: int32(numAtts),
|
|
}, nil)
|
|
}
|
|
}
|
|
|
|
// We request attestations for epoch 0.
|
|
res, err := bs.RequestHistoricalAttestations(context.Background(), 0)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if !reflect.DeepEqual(res, wanted) {
|
|
t.Errorf("Wanted %v, received %v", wanted, res)
|
|
}
|
|
testutil.AssertLogsContain(t, hook, "Retrieved 100/1000 indexed attestations for epoch 0")
|
|
testutil.AssertLogsContain(t, hook, "Retrieved 500/1000 indexed attestations for epoch 0")
|
|
testutil.AssertLogsContain(t, hook, "Retrieved 1000/1000 indexed attestations for epoch 0")
|
|
}
|