prysm-pulse/slasher/beaconclient/validator_retrieval_test.go
shayzluf 0df12261a1
slasher retrieve and cache validator public key (#5220)
* cache and retrieval of validator public keys

* fix comments

* fix comment

* fix variables

* gaz

* ivan feedback fixes

* goimports

* fix test

* comments on in line slice update

Co-authored-by: terence tsao <terence@prysmaticlabs.com>
2020-04-02 06:08:23 +03:00

84 lines
2.3 KiB
Go

package beaconclient
import (
"bytes"
"context"
"testing"
"github.com/golang/mock/gomock"
ethpb "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
"github.com/prysmaticlabs/prysm/shared/mock"
"github.com/prysmaticlabs/prysm/shared/testutil"
"github.com/prysmaticlabs/prysm/slasher/cache"
"github.com/sirupsen/logrus"
logTest "github.com/sirupsen/logrus/hooks/test"
)
func TestService_RequestValidator(t *testing.T) {
hook := logTest.NewGlobal()
logrus.SetLevel(logrus.TraceLevel)
ctrl := gomock.NewController(t)
defer ctrl.Finish()
client := mock.NewMockBeaconChainClient(ctrl)
validatorCache, err := cache.NewPublicKeyCache(0, nil)
if err != nil {
t.Fatalf("could not create new cache: %v", err)
}
bs := Service{
beaconClient: client,
publicKeyCache: validatorCache,
}
wanted := &ethpb.Validators{
ValidatorList: []*ethpb.Validators_ValidatorContainer{
{
Index: 0, Validator: &ethpb.Validator{PublicKey: []byte{1, 2, 3}},
},
{
Index: 1, Validator: &ethpb.Validator{PublicKey: []byte{2, 4, 5}},
},
},
}
wanted2 := &ethpb.Validators{
ValidatorList: []*ethpb.Validators_ValidatorContainer{
{
Index: 3, Validator: &ethpb.Validator{PublicKey: []byte{3, 4, 5}},
},
},
}
client.EXPECT().ListValidators(
gomock.Any(),
gomock.Any(),
).Return(wanted, nil)
client.EXPECT().ListValidators(
gomock.Any(),
gomock.Any(),
).Return(wanted2, nil)
// We request public key of validator id 0,1.
res, err := bs.FindOrGetPublicKeys(context.Background(), []uint64{0, 1})
if err != nil {
t.Fatal(err)
}
for i, v := range wanted.ValidatorList {
if !bytes.Equal(res[v.Index], wanted.ValidatorList[i].Validator.PublicKey) {
t.Errorf("Wanted %v, received %v", wanted, res)
}
}
testutil.AssertLogsContain(t, hook, "Retrieved validators id public key map:")
testutil.AssertLogsDoNotContain(t, hook, "Retrieved validators public keys from cache:")
// We expect public key of validator id 0 to be in cache.
res, err = bs.FindOrGetPublicKeys(context.Background(), []uint64{0, 3})
if err != nil {
t.Fatal(err)
}
for i, v := range wanted2.ValidatorList {
if !bytes.Equal(res[v.Index], wanted2.ValidatorList[i].Validator.PublicKey) {
t.Errorf("Wanted %v, received %v", wanted2, res)
}
}
testutil.AssertLogsContain(t, hook, "Retrieved validators public keys from cache: map[0:[1 2 3]]")
}