mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-03 08:37:37 +00:00
ad269ee147
* Wrap beacon fuzz tests in go-fuzz compatible test functions * Add fuzzbuzz.yaml
35 lines
793 B
Go
35 lines
793 B
Go
package fuzz
|
|
|
|
import (
|
|
"bytes"
|
|
|
|
ethpb "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/p2p/encoder"
|
|
"github.com/prysmaticlabs/prysm/shared/params"
|
|
)
|
|
|
|
var buf = new(bytes.Buffer)
|
|
|
|
// FuzzSszEncoderAttestation wraps SszEncoderAttestationFuzz in a
|
|
// go-fuzz compatible interface
|
|
func FuzzSszEncoderAttestation(b []byte) int {
|
|
SszEncoderAttestationFuzz(b)
|
|
return 0
|
|
}
|
|
|
|
// SszEncoderAttestationFuzz runs network encode/decode for attestations.
|
|
func SszEncoderAttestationFuzz(b []byte) {
|
|
params.UseMainnetConfig()
|
|
buf.Reset()
|
|
input := ðpb.Attestation{}
|
|
e := encoder.SszNetworkEncoder{}
|
|
if err := e.DecodeGossip(b, input); err != nil {
|
|
_ = err
|
|
return
|
|
}
|
|
if _, err := e.EncodeGossip(buf, input); err != nil {
|
|
_ = err
|
|
return
|
|
}
|
|
}
|