mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 12:57:18 +00:00
943dec525c
* Delete deploy contract tool. Move mock to its own package as testonly with some helper functions * gofmt contracts/deposit/mock/mock.go * move stategen mock.go to its on testonly pkg * move password_reader_mock.go to mock testonly package * move mock keymanager to its own testonly package * move attestations mock * move voluntaryexits mock * Move slashings mock to mock pkg * move the slasher mock Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
55 lines
1.7 KiB
Go
55 lines
1.7 KiB
Go
package slasher
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/slasher/mock"
|
|
ethpb "github.com/prysmaticlabs/prysm/proto/prysm/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/testing/require"
|
|
)
|
|
|
|
func TestServer_IsSlashableAttestation_SlashingFound(t *testing.T) {
|
|
mockSlasher := &mock.MockSlashingChecker{
|
|
AttesterSlashingFound: true,
|
|
}
|
|
s := Server{SlashingChecker: mockSlasher}
|
|
ctx := context.Background()
|
|
slashing, err := s.IsSlashableAttestation(ctx, ðpb.IndexedAttestation{})
|
|
require.NoError(t, err)
|
|
require.Equal(t, true, len(slashing.AttesterSlashings) > 0)
|
|
}
|
|
|
|
func TestServer_IsSlashableAttestation_SlashingNotFound(t *testing.T) {
|
|
mockSlasher := &mock.MockSlashingChecker{
|
|
AttesterSlashingFound: false,
|
|
}
|
|
s := Server{SlashingChecker: mockSlasher}
|
|
ctx := context.Background()
|
|
slashing, err := s.IsSlashableAttestation(ctx, ðpb.IndexedAttestation{})
|
|
require.NoError(t, err)
|
|
require.Equal(t, true, len(slashing.AttesterSlashings) == 0)
|
|
}
|
|
|
|
func TestServer_IsSlashableBlock_SlashingFound(t *testing.T) {
|
|
mockSlasher := &mock.MockSlashingChecker{
|
|
ProposerSlashingFound: true,
|
|
}
|
|
s := Server{SlashingChecker: mockSlasher}
|
|
ctx := context.Background()
|
|
slashing, err := s.IsSlashableBlock(ctx, ðpb.SignedBeaconBlockHeader{})
|
|
require.NoError(t, err)
|
|
require.Equal(t, true, len(slashing.ProposerSlashings) > 0)
|
|
}
|
|
|
|
func TestServer_IsSlashableBlock_SlashingNotFound(t *testing.T) {
|
|
mockSlasher := &mock.MockSlashingChecker{
|
|
ProposerSlashingFound: false,
|
|
}
|
|
s := Server{SlashingChecker: mockSlasher}
|
|
ctx := context.Background()
|
|
slashing, err := s.IsSlashableBlock(ctx, ðpb.SignedBeaconBlockHeader{})
|
|
require.NoError(t, err)
|
|
require.Equal(t, true, len(slashing.ProposerSlashings) == 0)
|
|
}
|