prysm-pulse/validator/client/beacon-api/beacon_committee_selections_test.go
Sammy Rosso 4ff91bebf8
Switch gomock library (#13639)
* Update gomock

* Update mockgen

* Gaz

* Go mod

* Cleanup

* Regenerate gomock

* Manually fix import
2024-02-21 18:37:17 +00:00

125 lines
3.0 KiB
Go

package beacon_api
import (
"bytes"
"context"
"encoding/json"
"testing"
"github.com/prysmaticlabs/prysm/v5/validator/client/iface"
"github.com/pkg/errors"
"github.com/prysmaticlabs/prysm/v5/testing/require"
"github.com/prysmaticlabs/prysm/v5/validator/client/beacon-api/mock"
test_helpers "github.com/prysmaticlabs/prysm/v5/validator/client/beacon-api/test-helpers"
"go.uber.org/mock/gomock"
)
func TestGetAggregatedSelections(t *testing.T) {
testcases := []struct {
name string
req []iface.BeaconCommitteeSelection
res []iface.BeaconCommitteeSelection
endpointError error
expectedErrorMessage string
}{
{
name: "valid",
req: []iface.BeaconCommitteeSelection{
{
SelectionProof: test_helpers.FillByteSlice(96, 82),
Slot: 75,
ValidatorIndex: 76,
},
},
res: []iface.BeaconCommitteeSelection{
{
SelectionProof: test_helpers.FillByteSlice(96, 100),
Slot: 75,
ValidatorIndex: 76,
},
},
},
{
name: "endpoint error",
req: []iface.BeaconCommitteeSelection{
{
SelectionProof: test_helpers.FillByteSlice(96, 82),
Slot: 75,
ValidatorIndex: 76,
},
},
endpointError: errors.New("bad request"),
expectedErrorMessage: "bad request",
},
{
name: "no response error",
req: []iface.BeaconCommitteeSelection{
{
SelectionProof: test_helpers.FillByteSlice(96, 82),
Slot: 75,
ValidatorIndex: 76,
},
},
expectedErrorMessage: "no aggregated selection returned",
},
{
name: "mismatch response",
req: []iface.BeaconCommitteeSelection{
{
SelectionProof: test_helpers.FillByteSlice(96, 82),
Slot: 75,
ValidatorIndex: 76,
},
{
SelectionProof: test_helpers.FillByteSlice(96, 102),
Slot: 75,
ValidatorIndex: 79,
},
},
res: []iface.BeaconCommitteeSelection{
{
SelectionProof: test_helpers.FillByteSlice(96, 100),
Slot: 75,
ValidatorIndex: 76,
},
},
expectedErrorMessage: "mismatching number of selections",
},
}
for _, test := range testcases {
t.Run(test.name, func(t *testing.T) {
ctrl := gomock.NewController(t)
jsonRestHandler := mock.NewMockJsonRestHandler(ctrl)
reqBody, err := json.Marshal(test.req)
require.NoError(t, err)
ctx := context.Background()
jsonRestHandler.EXPECT().Post(
ctx,
"/eth/v1/validator/beacon_committee_selections",
nil,
bytes.NewBuffer(reqBody),
&aggregatedSelectionResponse{},
).SetArg(
4,
aggregatedSelectionResponse{Data: test.res},
).Return(
test.endpointError,
).Times(1)
validatorClient := &beaconApiValidatorClient{jsonRestHandler: jsonRestHandler}
res, err := validatorClient.GetAggregatedSelections(ctx, test.req)
if test.expectedErrorMessage != "" {
require.ErrorContains(t, test.expectedErrorMessage, err)
return
}
require.NoError(t, err)
require.DeepEqual(t, test.res, res)
})
}
}