2018-01-30 10:56:36 +00:00
|
|
|
package payload
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2019-08-23 15:50:45 +00:00
|
|
|
"github.com/CityOfZion/neo-go/pkg/crypto/hash"
|
2019-09-16 09:18:13 +00:00
|
|
|
"github.com/CityOfZion/neo-go/pkg/io"
|
2018-02-01 18:54:23 +00:00
|
|
|
. "github.com/CityOfZion/neo-go/pkg/util"
|
2019-08-29 14:33:53 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
2018-01-30 10:56:36 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestInventoryEncodeDecode(t *testing.T) {
|
|
|
|
hashes := []Uint256{
|
2019-08-23 15:50:45 +00:00
|
|
|
hash.Sha256([]byte("a")),
|
|
|
|
hash.Sha256([]byte("b")),
|
2018-01-30 10:56:36 +00:00
|
|
|
}
|
|
|
|
inv := NewInventory(BlockType, hashes)
|
|
|
|
|
2019-09-16 09:18:13 +00:00
|
|
|
buf := io.NewBufBinWriter()
|
|
|
|
err := inv.EncodeBinary(buf.BinWriter)
|
2019-08-29 14:33:53 +00:00
|
|
|
assert.Nil(t, err)
|
2018-01-30 10:56:36 +00:00
|
|
|
|
2019-09-16 09:18:13 +00:00
|
|
|
b := buf.Bytes()
|
|
|
|
r := io.NewBinReaderFromBuf(b)
|
2018-01-30 10:56:36 +00:00
|
|
|
invDecode := &Inventory{}
|
2019-09-16 09:18:13 +00:00
|
|
|
err = invDecode.DecodeBinary(r)
|
2019-08-29 14:33:53 +00:00
|
|
|
assert.Nil(t, err)
|
|
|
|
assert.Equal(t, inv, invDecode)
|
2018-01-30 10:56:36 +00:00
|
|
|
}
|
2019-08-29 17:27:16 +00:00
|
|
|
|
|
|
|
func TestEmptyInv(t *testing.T) {
|
|
|
|
msgInv := NewInventory(TXType, []Uint256{})
|
|
|
|
|
2019-09-16 09:18:13 +00:00
|
|
|
buf := io.NewBufBinWriter()
|
|
|
|
err := msgInv.EncodeBinary(buf.BinWriter)
|
2019-08-29 17:27:16 +00:00
|
|
|
assert.Nil(t, err)
|
|
|
|
assert.Equal(t, []byte{byte(TXType), 0}, buf.Bytes())
|
|
|
|
assert.Equal(t, 0, len(msgInv.Hashes))
|
|
|
|
}
|