93d86305a2
This commit changes the InvVect_* constants, which are not standard Go style, to the InvType*. In order to preserve backwards compatibility, it also adds a legacy.go file which maps the old public constant names to the new ones. Closes #1.
268 lines
6.4 KiB
Go
268 lines
6.4 KiB
Go
// Copyright (c) 2013 Conformal Systems LLC.
|
|
// Use of this source code is governed by an ISC
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package btcwire_test
|
|
|
|
import (
|
|
"bytes"
|
|
"github.com/conformal/btcwire"
|
|
"github.com/davecgh/go-spew/spew"
|
|
"reflect"
|
|
"testing"
|
|
)
|
|
|
|
// TestInvVectStringer tests the stringized output for inventory vector types.
|
|
func TestInvTypeStringer(t *testing.T) {
|
|
tests := []struct {
|
|
in btcwire.InvType
|
|
want string
|
|
}{
|
|
{btcwire.InvTypeError, "ERROR"},
|
|
{btcwire.InvTypeTx, "MSG_TX"},
|
|
{btcwire.InvTypeBlock, "MSG_BLOCK"},
|
|
{0xffffffff, "Unknown InvType (4294967295)"},
|
|
}
|
|
|
|
t.Logf("Running %d tests", len(tests))
|
|
for i, test := range tests {
|
|
result := test.in.String()
|
|
if result != test.want {
|
|
t.Errorf("String #%d\n got: %s want: %s", i, result,
|
|
test.want)
|
|
continue
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
// TestInvVect tests the InvVect API.
|
|
func TestInvVect(t *testing.T) {
|
|
ivType := btcwire.InvTypeBlock
|
|
hash := btcwire.ShaHash{}
|
|
|
|
// Ensure we get the same payload and signature back out.
|
|
iv := btcwire.NewInvVect(ivType, &hash)
|
|
if iv.Type != ivType {
|
|
t.Errorf("NewInvVect: wrong type - got %v, want %v",
|
|
iv.Type, ivType)
|
|
}
|
|
if !iv.Hash.IsEqual(&hash) {
|
|
t.Errorf("NewInvVect: wrong hash - got %v, want %v",
|
|
spew.Sdump(iv.Hash), spew.Sdump(hash))
|
|
}
|
|
|
|
}
|
|
|
|
// TestInvVectWire tests the InvVect wire encode and decode for various
|
|
// protocol versions and supported inventory vector types.
|
|
func TestInvVectWire(t *testing.T) {
|
|
// Block 203707 hash.
|
|
hashStr := "3264bc2ac36a60840790ba1d475d01367e7c723da941069e9dc"
|
|
baseHash, err := btcwire.NewShaHashFromStr(hashStr)
|
|
if err != nil {
|
|
t.Errorf("NewShaHashFromStr: %v", err)
|
|
}
|
|
|
|
// errInvVect is an inventory vector with an error.
|
|
errInvVect := btcwire.InvVect{
|
|
Type: btcwire.InvTypeError,
|
|
Hash: btcwire.ShaHash{},
|
|
}
|
|
|
|
// errInvVectEncoded is the wire encoded bytes of errInvVect.
|
|
errInvVectEncoded := []byte{
|
|
0x00, 0x00, 0x00, 0x00, // InvTypeError
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // No hash
|
|
}
|
|
|
|
// txInvVect is an inventory vector representing a transaction.
|
|
txInvVect := btcwire.InvVect{
|
|
Type: btcwire.InvTypeTx,
|
|
Hash: *baseHash,
|
|
}
|
|
|
|
// txInvVectEncoded is the wire encoded bytes of txInvVect.
|
|
txInvVectEncoded := []byte{
|
|
0x01, 0x00, 0x00, 0x00, // InvTypeTx
|
|
0xdc, 0xe9, 0x69, 0x10, 0x94, 0xda, 0x23, 0xc7,
|
|
0xe7, 0x67, 0x13, 0xd0, 0x75, 0xd4, 0xa1, 0x0b,
|
|
0x79, 0x40, 0x08, 0xa6, 0x36, 0xac, 0xc2, 0x4b,
|
|
0x26, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // Block 203707 hash
|
|
}
|
|
|
|
// blockInvVect is an inventory vector representing a block.
|
|
blockInvVect := btcwire.InvVect{
|
|
Type: btcwire.InvTypeBlock,
|
|
Hash: *baseHash,
|
|
}
|
|
|
|
// blockInvVectEncoded is the wire encoded bytes of blockInvVect.
|
|
blockInvVectEncoded := []byte{
|
|
0x02, 0x00, 0x00, 0x00, // InvTypeBlock
|
|
0xdc, 0xe9, 0x69, 0x10, 0x94, 0xda, 0x23, 0xc7,
|
|
0xe7, 0x67, 0x13, 0xd0, 0x75, 0xd4, 0xa1, 0x0b,
|
|
0x79, 0x40, 0x08, 0xa6, 0x36, 0xac, 0xc2, 0x4b,
|
|
0x26, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // Block 203707 hash
|
|
}
|
|
|
|
tests := []struct {
|
|
in btcwire.InvVect // NetAddress to encode
|
|
out btcwire.InvVect // Expected decoded NetAddress
|
|
buf []byte // Wire encoding
|
|
pver uint32 // Protocol version for wire encoding
|
|
}{
|
|
// Latest protocol version error inventory vector.
|
|
{
|
|
errInvVect,
|
|
errInvVect,
|
|
errInvVectEncoded,
|
|
btcwire.ProtocolVersion,
|
|
},
|
|
|
|
// Latest protocol version tx inventory vector.
|
|
{
|
|
txInvVect,
|
|
txInvVect,
|
|
txInvVectEncoded,
|
|
btcwire.ProtocolVersion,
|
|
},
|
|
|
|
// Latest protocol version block inventory vector.
|
|
{
|
|
blockInvVect,
|
|
blockInvVect,
|
|
blockInvVectEncoded,
|
|
btcwire.ProtocolVersion,
|
|
},
|
|
|
|
// Protocol version BIP0035Version error inventory vector.
|
|
{
|
|
errInvVect,
|
|
errInvVect,
|
|
errInvVectEncoded,
|
|
btcwire.BIP0035Version,
|
|
},
|
|
|
|
// Protocol version BIP0035Version tx inventory vector.
|
|
{
|
|
txInvVect,
|
|
txInvVect,
|
|
txInvVectEncoded,
|
|
btcwire.BIP0035Version,
|
|
},
|
|
|
|
// Protocol version BIP0035Version block inventory vector.
|
|
{
|
|
blockInvVect,
|
|
blockInvVect,
|
|
blockInvVectEncoded,
|
|
btcwire.BIP0035Version,
|
|
},
|
|
|
|
// Protocol version BIP0031Version error inventory vector.
|
|
{
|
|
errInvVect,
|
|
errInvVect,
|
|
errInvVectEncoded,
|
|
btcwire.BIP0031Version,
|
|
},
|
|
|
|
// Protocol version BIP0031Version tx inventory vector.
|
|
{
|
|
txInvVect,
|
|
txInvVect,
|
|
txInvVectEncoded,
|
|
btcwire.BIP0031Version,
|
|
},
|
|
|
|
// Protocol version BIP0031Version block inventory vector.
|
|
{
|
|
blockInvVect,
|
|
blockInvVect,
|
|
blockInvVectEncoded,
|
|
btcwire.BIP0031Version,
|
|
},
|
|
|
|
// Protocol version NetAddressTimeVersion error inventory vector.
|
|
{
|
|
errInvVect,
|
|
errInvVect,
|
|
errInvVectEncoded,
|
|
btcwire.NetAddressTimeVersion,
|
|
},
|
|
|
|
// Protocol version NetAddressTimeVersion tx inventory vector.
|
|
{
|
|
txInvVect,
|
|
txInvVect,
|
|
txInvVectEncoded,
|
|
btcwire.NetAddressTimeVersion,
|
|
},
|
|
|
|
// Protocol version NetAddressTimeVersion block inventory vector.
|
|
{
|
|
blockInvVect,
|
|
blockInvVect,
|
|
blockInvVectEncoded,
|
|
btcwire.NetAddressTimeVersion,
|
|
},
|
|
|
|
// Protocol version MultipleAddressVersion error inventory vector.
|
|
{
|
|
errInvVect,
|
|
errInvVect,
|
|
errInvVectEncoded,
|
|
btcwire.MultipleAddressVersion,
|
|
},
|
|
|
|
// Protocol version MultipleAddressVersion tx inventory vector.
|
|
{
|
|
txInvVect,
|
|
txInvVect,
|
|
txInvVectEncoded,
|
|
btcwire.MultipleAddressVersion,
|
|
},
|
|
|
|
// Protocol version MultipleAddressVersion block inventory vector.
|
|
{
|
|
blockInvVect,
|
|
blockInvVect,
|
|
blockInvVectEncoded,
|
|
btcwire.MultipleAddressVersion,
|
|
},
|
|
}
|
|
|
|
t.Logf("Running %d tests", len(tests))
|
|
for i, test := range tests {
|
|
// Encode to wire format.
|
|
var buf bytes.Buffer
|
|
err := btcwire.TstWriteInvVect(&buf, test.pver, &test.in)
|
|
if err != nil {
|
|
t.Errorf("writeInvVect #%d error %v", i, err)
|
|
continue
|
|
}
|
|
if !bytes.Equal(buf.Bytes(), test.buf) {
|
|
t.Errorf("writeInvVect #%d\n got: %s want: %s", i,
|
|
spew.Sdump(buf.Bytes()), spew.Sdump(test.buf))
|
|
continue
|
|
}
|
|
|
|
// Decode the message from wire format.
|
|
var iv btcwire.InvVect
|
|
rbuf := bytes.NewBuffer(test.buf)
|
|
err = btcwire.TstReadInvVect(rbuf, test.pver, &iv)
|
|
if err != nil {
|
|
t.Errorf("readInvVect #%d error %v", i, err)
|
|
continue
|
|
}
|
|
if !reflect.DeepEqual(iv, test.out) {
|
|
t.Errorf("readInvVect #%d\n got: %s want: %s", i,
|
|
spew.Sdump(iv), spew.Sdump(test.out))
|
|
continue
|
|
}
|
|
}
|
|
}
|