2018-01-30 10:56:36 +00:00
|
|
|
package payload
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"testing"
|
|
|
|
|
2019-08-23 15:50:45 +00:00
|
|
|
"github.com/CityOfZion/neo-go/pkg/crypto/hash"
|
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)
|
|
|
|
|
|
|
|
buf := new(bytes.Buffer)
|
2019-08-29 14:33:53 +00:00
|
|
|
err := inv.EncodeBinary(buf)
|
|
|
|
assert.Nil(t, err)
|
2018-01-30 10:56:36 +00:00
|
|
|
|
|
|
|
invDecode := &Inventory{}
|
2019-08-29 14:33:53 +00:00
|
|
|
err = invDecode.DecodeBinary(buf)
|
|
|
|
assert.Nil(t, err)
|
|
|
|
assert.Equal(t, inv, invDecode)
|
2018-01-30 10:56:36 +00:00
|
|
|
}
|