2016-08-08 18:42:54 +02:00
|
|
|
// Copyright (c) 2013-2016 The btcsuite developers
|
2013-05-08 21:31:00 +02:00
|
|
|
// Use of this source code is governed by an ISC
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2016-08-08 18:42:54 +02:00
|
|
|
package wire
|
2013-05-08 21:31:00 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2013-05-11 04:46:41 +02:00
|
|
|
"io"
|
2013-05-08 21:31:00 +02:00
|
|
|
"reflect"
|
|
|
|
"testing"
|
2014-07-03 02:43:33 +02:00
|
|
|
|
|
|
|
"github.com/davecgh/go-spew/spew"
|
2013-05-08 21:31:00 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// TestPongLatest tests the MsgPong API against the latest protocol version.
|
|
|
|
func TestPongLatest(t *testing.T) {
|
2016-10-19 01:21:48 +02:00
|
|
|
enc := BaseEncoding
|
2016-08-08 18:42:54 +02:00
|
|
|
pver := ProtocolVersion
|
2013-05-08 21:31:00 +02:00
|
|
|
|
2016-08-08 18:42:54 +02:00
|
|
|
nonce, err := RandomUint64()
|
2013-05-08 21:31:00 +02:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("RandomUint64: error generating nonce: %v", err)
|
|
|
|
}
|
2016-08-08 18:42:54 +02:00
|
|
|
msg := NewMsgPong(nonce)
|
2013-05-08 21:31:00 +02:00
|
|
|
if msg.Nonce != nonce {
|
|
|
|
t.Errorf("NewMsgPong: wrong nonce - got %v, want %v",
|
|
|
|
msg.Nonce, nonce)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ensure the command is expected value.
|
|
|
|
wantCmd := "pong"
|
|
|
|
if cmd := msg.Command(); cmd != wantCmd {
|
|
|
|
t.Errorf("NewMsgPong: wrong command - got %v want %v",
|
|
|
|
cmd, wantCmd)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ensure max payload is expected value for latest protocol version.
|
|
|
|
wantPayload := uint32(8)
|
|
|
|
maxPayload := msg.MaxPayloadLength(pver)
|
|
|
|
if maxPayload != wantPayload {
|
|
|
|
t.Errorf("MaxPayloadLength: wrong max payload length for "+
|
|
|
|
"protocol version %d - got %v, want %v", pver,
|
|
|
|
maxPayload, wantPayload)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test encode with latest protocol version.
|
|
|
|
var buf bytes.Buffer
|
2016-10-19 01:21:48 +02:00
|
|
|
err = msg.BtcEncode(&buf, pver, enc)
|
2013-05-08 21:31:00 +02:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("encode of MsgPong failed %v err <%v>", msg, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test decode with latest protocol version.
|
2016-08-08 18:42:54 +02:00
|
|
|
readmsg := NewMsgPong(0)
|
2016-10-19 01:21:48 +02:00
|
|
|
err = readmsg.BtcDecode(&buf, pver, enc)
|
2013-05-08 21:31:00 +02:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("decode of MsgPong failed [%v] err <%v>", buf, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ensure nonce is the same.
|
|
|
|
if msg.Nonce != readmsg.Nonce {
|
|
|
|
t.Errorf("Should get same nonce for protocol version %d", pver)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TestPongBIP0031 tests the MsgPong API against the protocol version
|
|
|
|
// BIP0031Version.
|
|
|
|
func TestPongBIP0031(t *testing.T) {
|
|
|
|
// Use the protocol version just prior to BIP0031Version changes.
|
2016-08-08 18:42:54 +02:00
|
|
|
pver := BIP0031Version
|
2016-10-19 01:21:48 +02:00
|
|
|
enc := BaseEncoding
|
2013-05-08 21:31:00 +02:00
|
|
|
|
2016-08-08 18:42:54 +02:00
|
|
|
nonce, err := RandomUint64()
|
2013-05-08 21:31:00 +02:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Error generating nonce: %v", err)
|
|
|
|
}
|
2016-08-08 18:42:54 +02:00
|
|
|
msg := NewMsgPong(nonce)
|
2013-05-08 21:31:00 +02:00
|
|
|
if msg.Nonce != nonce {
|
|
|
|
t.Errorf("Should get same nonce back out.")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ensure max payload is expected value for old protocol version.
|
|
|
|
size := msg.MaxPayloadLength(pver)
|
|
|
|
if size != 0 {
|
|
|
|
t.Errorf("Max length should be 0 for pong protocol version %d.",
|
|
|
|
pver)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test encode with old protocol version.
|
|
|
|
var buf bytes.Buffer
|
2016-10-19 01:21:48 +02:00
|
|
|
err = msg.BtcEncode(&buf, pver, enc)
|
2013-05-08 21:31:00 +02:00
|
|
|
if err == nil {
|
|
|
|
t.Errorf("encode of MsgPong succeeded when it shouldn't have %v",
|
|
|
|
msg)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test decode with old protocol version.
|
2016-08-08 18:42:54 +02:00
|
|
|
readmsg := NewMsgPong(0)
|
2016-10-19 01:21:48 +02:00
|
|
|
err = readmsg.BtcDecode(&buf, pver, enc)
|
2013-05-08 21:31:00 +02:00
|
|
|
if err == nil {
|
2013-07-27 22:56:17 +02:00
|
|
|
t.Errorf("decode of MsgPong succeeded when it shouldn't have %v",
|
2013-05-08 21:31:00 +02:00
|
|
|
spew.Sdump(buf))
|
|
|
|
}
|
|
|
|
|
|
|
|
// Since this protocol version doesn't support pong, make sure the
|
|
|
|
// nonce didn't get encoded and decoded back out.
|
|
|
|
if msg.Nonce == readmsg.Nonce {
|
|
|
|
t.Errorf("Should not get same nonce for protocol version %d", pver)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TestPongCrossProtocol tests the MsgPong API when encoding with the latest
|
2014-05-05 09:15:18 +02:00
|
|
|
// protocol version and decoding with BIP0031Version.
|
2013-05-08 21:31:00 +02:00
|
|
|
func TestPongCrossProtocol(t *testing.T) {
|
2016-08-08 18:42:54 +02:00
|
|
|
nonce, err := RandomUint64()
|
2013-05-08 21:31:00 +02:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Error generating nonce: %v", err)
|
|
|
|
}
|
2016-08-08 18:42:54 +02:00
|
|
|
msg := NewMsgPong(nonce)
|
2013-05-08 21:31:00 +02:00
|
|
|
if msg.Nonce != nonce {
|
|
|
|
t.Errorf("Should get same nonce back out.")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Encode with latest protocol version.
|
|
|
|
var buf bytes.Buffer
|
2016-10-19 01:21:48 +02:00
|
|
|
err = msg.BtcEncode(&buf, ProtocolVersion, BaseEncoding)
|
2013-05-08 21:31:00 +02:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("encode of MsgPong failed %v err <%v>", msg, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Decode with old protocol version.
|
2016-08-08 18:42:54 +02:00
|
|
|
readmsg := NewMsgPong(0)
|
2016-10-19 01:21:48 +02:00
|
|
|
err = readmsg.BtcDecode(&buf, BIP0031Version, BaseEncoding)
|
2013-05-08 21:31:00 +02:00
|
|
|
if err == nil {
|
|
|
|
t.Errorf("encode of MsgPong succeeded when it shouldn't have %v",
|
|
|
|
msg)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Since one of the protocol versions doesn't support the pong message,
|
2014-05-05 09:15:18 +02:00
|
|
|
// make sure the nonce didn't get encoded and decoded back out.
|
2013-05-08 21:31:00 +02:00
|
|
|
if msg.Nonce == readmsg.Nonce {
|
|
|
|
t.Error("Should not get same nonce for cross protocol")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TestPongWire tests the MsgPong wire encode and decode for various protocol
|
|
|
|
// versions.
|
|
|
|
func TestPongWire(t *testing.T) {
|
|
|
|
tests := []struct {
|
2016-10-19 01:21:48 +02:00
|
|
|
in MsgPong // Message to encode
|
|
|
|
out MsgPong // Expected decoded message
|
|
|
|
buf []byte // Wire encoding
|
|
|
|
pver uint32 // Protocol version for wire encoding
|
|
|
|
enc MessageEncoding // Message encoding format
|
2013-05-08 21:31:00 +02:00
|
|
|
}{
|
|
|
|
// Latest protocol version.
|
|
|
|
{
|
2016-08-08 18:42:54 +02:00
|
|
|
MsgPong{Nonce: 123123}, // 0x1e0f3
|
|
|
|
MsgPong{Nonce: 123123}, // 0x1e0f3
|
2013-05-08 21:31:00 +02:00
|
|
|
[]byte{0xf3, 0xe0, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00},
|
2016-08-08 18:42:54 +02:00
|
|
|
ProtocolVersion,
|
2016-10-19 01:21:48 +02:00
|
|
|
BaseEncoding,
|
2013-05-08 21:31:00 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
// Protocol version BIP0031Version+1
|
|
|
|
{
|
2016-08-08 18:42:54 +02:00
|
|
|
MsgPong{Nonce: 456456}, // 0x6f708
|
|
|
|
MsgPong{Nonce: 456456}, // 0x6f708
|
2013-05-08 21:31:00 +02:00
|
|
|
[]byte{0x08, 0xf7, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00},
|
2016-08-08 18:42:54 +02:00
|
|
|
BIP0031Version + 1,
|
2016-10-19 01:21:48 +02:00
|
|
|
BaseEncoding,
|
2013-05-08 21:31:00 +02:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
t.Logf("Running %d tests", len(tests))
|
|
|
|
for i, test := range tests {
|
|
|
|
// Encode the message to wire format.
|
|
|
|
var buf bytes.Buffer
|
2016-10-19 01:21:48 +02:00
|
|
|
err := test.in.BtcEncode(&buf, test.pver, test.enc)
|
2013-05-11 04:46:41 +02:00
|
|
|
if err != nil {
|
2013-05-08 21:31:00 +02:00
|
|
|
t.Errorf("BtcEncode #%d error %v", i, err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if !bytes.Equal(buf.Bytes(), test.buf) {
|
|
|
|
t.Errorf("BtcEncode #%d\n got: %s want: %s", i,
|
|
|
|
spew.Sdump(buf.Bytes()), spew.Sdump(test.buf))
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// Decode the message from wire format.
|
2016-08-08 18:42:54 +02:00
|
|
|
var msg MsgPong
|
2014-06-05 06:39:03 +02:00
|
|
|
rbuf := bytes.NewReader(test.buf)
|
2016-10-19 01:21:48 +02:00
|
|
|
err = msg.BtcDecode(rbuf, test.pver, test.enc)
|
2013-05-11 04:46:41 +02:00
|
|
|
if err != nil {
|
2013-05-08 21:31:00 +02:00
|
|
|
t.Errorf("BtcDecode #%d error %v", i, err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if !reflect.DeepEqual(msg, test.out) {
|
|
|
|
t.Errorf("BtcDecode #%d\n got: %s want: %s", i,
|
|
|
|
spew.Sdump(msg), spew.Sdump(test.out))
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-05-11 04:46:41 +02:00
|
|
|
|
|
|
|
// TestPongWireErrors performs negative tests against wire encode and decode
|
|
|
|
// of MsgPong to confirm error paths work correctly.
|
|
|
|
func TestPongWireErrors(t *testing.T) {
|
2016-08-08 18:42:54 +02:00
|
|
|
pver := ProtocolVersion
|
|
|
|
pverNoPong := BIP0031Version
|
|
|
|
wireErr := &MessageError{}
|
2013-05-11 04:46:41 +02:00
|
|
|
|
2016-08-08 18:42:54 +02:00
|
|
|
basePong := NewMsgPong(123123) // 0x1e0f3
|
2013-05-11 04:46:41 +02:00
|
|
|
basePongEncoded := []byte{
|
|
|
|
0xf3, 0xe0, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
}
|
|
|
|
|
|
|
|
tests := []struct {
|
2016-10-19 01:21:48 +02:00
|
|
|
in *MsgPong // Value to encode
|
|
|
|
buf []byte // Wire encoding
|
|
|
|
pver uint32 // Protocol version for wire encoding
|
|
|
|
enc MessageEncoding // Message encoding format
|
|
|
|
max int // Max size of fixed buffer to induce errors
|
|
|
|
writeErr error // Expected write error
|
|
|
|
readErr error // Expected read error
|
2013-05-11 04:46:41 +02:00
|
|
|
}{
|
|
|
|
// Latest protocol version with intentional read/write errors.
|
|
|
|
// Force error in nonce.
|
2016-10-19 01:21:48 +02:00
|
|
|
{basePong, basePongEncoded, pver, BaseEncoding, 0, io.ErrShortWrite, io.EOF},
|
2013-05-11 04:46:41 +02:00
|
|
|
// Force error due to unsupported protocol version.
|
2016-10-19 01:21:48 +02:00
|
|
|
{basePong, basePongEncoded, pverNoPong, BaseEncoding, 4, wireErr, wireErr},
|
2013-05-11 04:46:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
t.Logf("Running %d tests", len(tests))
|
|
|
|
for i, test := range tests {
|
|
|
|
// Encode to wire format.
|
|
|
|
w := newFixedWriter(test.max)
|
2016-10-19 01:21:48 +02:00
|
|
|
err := test.in.BtcEncode(w, test.pver, test.enc)
|
2013-05-11 04:46:41 +02:00
|
|
|
if reflect.TypeOf(err) != reflect.TypeOf(test.writeErr) {
|
|
|
|
t.Errorf("BtcEncode #%d wrong error got: %v, want: %v",
|
|
|
|
i, err, test.writeErr)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2016-08-08 18:42:54 +02:00
|
|
|
// For errors which are not of type MessageError, check them for
|
|
|
|
// equality.
|
|
|
|
if _, ok := err.(*MessageError); !ok {
|
2013-05-11 04:46:41 +02:00
|
|
|
if err != test.writeErr {
|
|
|
|
t.Errorf("BtcEncode #%d wrong error got: %v, "+
|
|
|
|
"want: %v", i, err, test.writeErr)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Decode from wire format.
|
2016-08-08 18:42:54 +02:00
|
|
|
var msg MsgPong
|
2013-05-11 04:46:41 +02:00
|
|
|
r := newFixedReader(test.max, test.buf)
|
2016-10-19 01:21:48 +02:00
|
|
|
err = msg.BtcDecode(r, test.pver, test.enc)
|
2013-05-11 04:46:41 +02:00
|
|
|
if reflect.TypeOf(err) != reflect.TypeOf(test.readErr) {
|
|
|
|
t.Errorf("BtcDecode #%d wrong error got: %v, want: %v",
|
|
|
|
i, err, test.readErr)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2016-08-08 18:42:54 +02:00
|
|
|
// For errors which are not of type MessageError, check them for
|
|
|
|
// equality.
|
|
|
|
if _, ok := err.(*MessageError); !ok {
|
2013-05-11 04:46:41 +02:00
|
|
|
if err != test.readErr {
|
2013-05-11 19:55:50 +02:00
|
|
|
t.Errorf("BtcDecode #%d wrong error got: %v, "+
|
2013-05-11 04:46:41 +02:00
|
|
|
"want: %v", i, err, test.readErr)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|