2014-10-23 15:57:54 +00:00
|
|
|
package p2p
|
|
|
|
|
|
|
|
import (
|
2014-11-04 12:21:44 +00:00
|
|
|
"bytes"
|
|
|
|
"io/ioutil"
|
2014-10-23 15:57:54 +00:00
|
|
|
"testing"
|
2014-11-04 12:21:44 +00:00
|
|
|
|
|
|
|
"github.com/ethereum/go-ethereum/ethutil"
|
2014-10-23 15:57:54 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestNewMsg(t *testing.T) {
|
2014-11-04 12:21:44 +00:00
|
|
|
msg := NewMsg(3, 1, "000")
|
|
|
|
if msg.Code != 3 {
|
|
|
|
t.Errorf("incorrect code %d, want %d", msg.Code)
|
2014-10-23 15:57:54 +00:00
|
|
|
}
|
2014-11-04 12:21:44 +00:00
|
|
|
if msg.Size != 5 {
|
|
|
|
t.Errorf("incorrect size %d, want %d", msg.Size, 5)
|
2014-10-23 15:57:54 +00:00
|
|
|
}
|
2014-11-04 12:21:44 +00:00
|
|
|
pl, _ := ioutil.ReadAll(msg.Payload)
|
|
|
|
expect := []byte{0x01, 0x83, 0x30, 0x30, 0x30}
|
|
|
|
if !bytes.Equal(pl, expect) {
|
|
|
|
t.Errorf("incorrect payload content, got %x, want %x", pl, expect)
|
2014-10-23 15:57:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestEncodeDecodeMsg(t *testing.T) {
|
2014-11-04 12:21:44 +00:00
|
|
|
msg := NewMsg(3, 1, "000")
|
|
|
|
buf := new(bytes.Buffer)
|
|
|
|
if err := writeMsg(buf, msg); err != nil {
|
|
|
|
t.Fatalf("encodeMsg error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
t.Logf("encoded: %x", buf.Bytes())
|
|
|
|
|
|
|
|
decmsg, err := readMsg(buf)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("readMsg error: %v", err)
|
|
|
|
}
|
|
|
|
if decmsg.Code != 3 {
|
|
|
|
t.Errorf("incorrect code %d, want %d", decmsg.Code, 3)
|
|
|
|
}
|
|
|
|
if decmsg.Size != 5 {
|
|
|
|
t.Errorf("incorrect size %d, want %d", decmsg.Size, 5)
|
|
|
|
}
|
|
|
|
data, err := decmsg.Data()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("first payload item decode error: %v", err)
|
|
|
|
}
|
2014-11-24 18:02:48 +00:00
|
|
|
if v := data.Len(); v != 2 {
|
|
|
|
t.Errorf("incorrect data.Len(): got %v, expected %d", v, 1)
|
|
|
|
}
|
2014-11-04 12:21:44 +00:00
|
|
|
if v := data.Get(0).Uint(); v != 1 {
|
|
|
|
t.Errorf("incorrect data[0]: got %v, expected %d", v, 1)
|
|
|
|
}
|
|
|
|
if v := data.Get(1).Str(); v != "000" {
|
|
|
|
t.Errorf("incorrect data[1]: got %q, expected %q", v, "000")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestDecodeRealMsg(t *testing.T) {
|
|
|
|
data := ethutil.Hex2Bytes("2240089100000080f87e8002b5457468657265756d282b2b292f5065657220536572766572204f6e652f76302e372e382f52656c656173652f4c696e75782f672b2bc082765fb84086dd80b7aefd6a6d2e3b93f4f300a86bfb6ef7bdc97cb03f793db6bb")
|
|
|
|
msg, err := readMsg(bytes.NewReader(data))
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if msg.Code != 0 {
|
|
|
|
t.Errorf("incorrect code %d, want %d", msg.Code, 0)
|
2014-10-23 15:57:54 +00:00
|
|
|
}
|
|
|
|
}
|