2018-01-30 10:56:36 +00:00
|
|
|
package payload
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2020-11-23 11:09:00 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/internal/testserdes"
|
2020-03-03 14:21:42 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/crypto/hash"
|
|
|
|
. "github.com/nspcc-dev/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)
|
|
|
|
|
2020-03-26 14:43:24 +00:00
|
|
|
testserdes.EncodeDecodeBinary(t, inv, new(Inventory))
|
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{})
|
|
|
|
|
2020-03-26 14:43:24 +00:00
|
|
|
data, err := testserdes.EncodeBinary(msgInv)
|
|
|
|
assert.Nil(t, err)
|
|
|
|
assert.Equal(t, []byte{byte(TXType), 0}, data)
|
2019-08-29 17:27:16 +00:00
|
|
|
assert.Equal(t, 0, len(msgInv.Hashes))
|
|
|
|
}
|