mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-28 22:27:17 +00:00
c09a6b87c3
* add validation * add test * add new changes * fix lint * Update beacon-chain/sync/validate_attetser_slashing_test.go Co-Authored-By: shayzluf <thezluf@gmail.com> * terence's comments * change key
36 lines
870 B
Go
36 lines
870 B
Go
package sync
|
|
|
|
import (
|
|
"bytes"
|
|
"testing"
|
|
|
|
p2ptest "github.com/prysmaticlabs/prysm/beacon-chain/p2p/testing"
|
|
pb "github.com/prysmaticlabs/prysm/proto/beacon/p2p/v1"
|
|
)
|
|
|
|
func TestRegularSync_generateErrorResponse(t *testing.T) {
|
|
r := &RegularSync{
|
|
p2p: p2ptest.NewTestP2P(t),
|
|
}
|
|
data, err := r.generateErrorResponse(responseCodeServerError, "something bad happened")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
buf := bytes.NewBuffer(data)
|
|
b := make([]byte, 1)
|
|
if _, err := buf.Read(b); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if b[0] != responseCodeServerError {
|
|
t.Errorf("The first byte was not the status code. Got %#x wanted %#x", b, responseCodeServerError)
|
|
}
|
|
msg := &pb.ErrorMessage{}
|
|
if err := r.p2p.Encoding().Decode(buf, msg); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if msg.ErrorMessage != "something bad happened" {
|
|
t.Errorf("Received the wrong message: %v", msg)
|
|
}
|
|
}
|