mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-09 21:38:05 -05:00
* Migrate Prysm repo to Offchain Labs organization ahead of Pectra upgrade v6 * Replace prysmaticlabs with OffchainLabs on general markdowns * Update mock * Gazelle and add mock.go to excluded generated mock file
24 lines
484 B
Go
24 lines
484 B
Go
//go:build go1.18
|
|
|
|
package p2p_test
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/OffchainLabs/prysm/v6/beacon-chain/p2p"
|
|
"github.com/OffchainLabs/prysm/v6/beacon-chain/p2p/encoder"
|
|
)
|
|
|
|
func FuzzMsgID(f *testing.F) {
|
|
validTopic := fmt.Sprintf(p2p.BlockSubnetTopicFormat, []byte{0xb5, 0x30, 0x3f, 0x2a}) + "/" + encoder.ProtocolSuffixSSZSnappy
|
|
f.Add(validTopic)
|
|
|
|
f.Fuzz(func(t *testing.T, topic string) {
|
|
_, err := p2p.ExtractGossipDigest(topic)
|
|
if err != nil {
|
|
return
|
|
}
|
|
})
|
|
}
|