mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-27 21:57:16 +00:00
b86388410d
* begin reorder * move into beacon server * add proposer server * fix * add proposer server * wrap up rpc reorder * gazelle * lint fix * fix broken build
29 lines
688 B
Go
29 lines
688 B
Go
package rpc
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
pbp2p "github.com/prysmaticlabs/prysm/proto/beacon/p2p/v1"
|
|
pb "github.com/prysmaticlabs/prysm/proto/beacon/rpc/v1"
|
|
)
|
|
|
|
func TestAttestHead(t *testing.T) {
|
|
mockAttestationService := &mockAttestationService{}
|
|
attesterServer := &AttesterServer{
|
|
attestationService: mockAttestationService,
|
|
}
|
|
req := &pb.AttestRequest{
|
|
Attestation: &pbp2p.Attestation{
|
|
Data: &pbp2p.AttestationData{
|
|
Slot: 999,
|
|
Shard: 1,
|
|
ShardBlockRootHash32: []byte{'a'},
|
|
},
|
|
},
|
|
}
|
|
if _, err := attesterServer.AttestHead(context.Background(), req); err != nil {
|
|
t.Errorf("Could not attest head correctly: %v", err)
|
|
}
|
|
}
|