2018-03-21 16:11:04 +00:00
|
|
|
package core
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2019-11-25 17:39:11 +00:00
|
|
|
"github.com/CityOfZion/neo-go/pkg/core/entities"
|
2019-09-16 09:18:13 +00:00
|
|
|
"github.com/CityOfZion/neo-go/pkg/io"
|
2018-03-21 16:11:04 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
2018-04-16 20:15:30 +00:00
|
|
|
func TestDecodeEncodeUnspentCoinState(t *testing.T) {
|
2018-03-21 16:11:04 +00:00
|
|
|
unspent := &UnspentCoinState{
|
2019-11-25 17:39:11 +00:00
|
|
|
states: []entities.CoinState{
|
|
|
|
entities.CoinStateConfirmed,
|
|
|
|
entities.CoinStateSpent,
|
|
|
|
entities.CoinStateSpent,
|
|
|
|
entities.CoinStateSpent,
|
|
|
|
entities.CoinStateConfirmed,
|
2018-03-21 16:11:04 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2019-09-16 09:18:13 +00:00
|
|
|
buf := io.NewBufBinWriter()
|
2019-09-16 16:31:49 +00:00
|
|
|
unspent.EncodeBinary(buf.BinWriter)
|
|
|
|
assert.Nil(t, buf.Err)
|
2018-03-21 16:11:04 +00:00
|
|
|
unspentDecode := &UnspentCoinState{}
|
2019-09-16 16:31:49 +00:00
|
|
|
r := io.NewBinReaderFromBuf(buf.Bytes())
|
|
|
|
unspentDecode.DecodeBinary(r)
|
|
|
|
assert.Nil(t, r.Err)
|
2018-03-21 16:11:04 +00:00
|
|
|
}
|