mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-23 11:57:18 +00:00
78bf39aff7
* checkpoint * checkpoint * varint prefix for ssz * move the encoding API around a little bit to support reader writer * add a simple test for the happy path subscribe * move wait timeout to testutil * Add inverted topic mapping * Add varint prefixing to ssz network encoder * fix spacing * fix comments * fix comments * make anon methods more clear * clean up log fields * move topic mapping, reformat TODOs, get ready for brutal team review * lint * lint * lint * Update beacon-chain/p2p/gossip_topic_mappings.go Co-Authored-By: Nishant Das <nishdas93@gmail.com> * PR feedback * PR feedback * PR feedback * PR feedback * PR feedback * basic test with a hardcoded fork choice * updated beacon config to use genesis fork version * checkpoint on hello handler * create a testing db method that can be used with the new database interface * lint * lint * PR feedback * checkpoint * passing tests * comments, errors * comments, errors * remove swarm * Update WORKSPACE * Update WORKSPACE * merge * lint * lint * touch * touch * imports
37 lines
871 B
Go
37 lines
871 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)
|
|
}
|
|
}
|