2018-03-21 16:11:04 +00:00
|
|
|
package core
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/CityOfZion/neo-go/pkg/core/storage"
|
|
|
|
"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{
|
|
|
|
states: []CoinState{
|
|
|
|
CoinStateConfirmed,
|
|
|
|
CoinStateSpent,
|
|
|
|
CoinStateSpent,
|
|
|
|
CoinStateSpent,
|
|
|
|
CoinStateConfirmed,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
buf := new(bytes.Buffer)
|
|
|
|
assert.Nil(t, unspent.EncodeBinary(buf))
|
|
|
|
unspentDecode := &UnspentCoinState{}
|
|
|
|
assert.Nil(t, unspentDecode.DecodeBinary(buf))
|
|
|
|
}
|
|
|
|
|
2018-04-16 20:15:30 +00:00
|
|
|
func TestCommitUnspentCoins(t *testing.T) {
|
2018-03-21 16:11:04 +00:00
|
|
|
var (
|
|
|
|
store = storage.NewMemoryStore()
|
|
|
|
batch = store.Batch()
|
|
|
|
unspentCoins = make(UnspentCoins)
|
|
|
|
)
|
|
|
|
|
2019-08-23 15:50:45 +00:00
|
|
|
txA := randomUint256()
|
|
|
|
txB := randomUint256()
|
|
|
|
txC := randomUint256()
|
2018-03-21 16:11:04 +00:00
|
|
|
|
|
|
|
unspentCoins[txA] = &UnspentCoinState{
|
|
|
|
states: []CoinState{CoinStateConfirmed},
|
|
|
|
}
|
|
|
|
unspentCoins[txB] = &UnspentCoinState{
|
|
|
|
states: []CoinState{
|
|
|
|
CoinStateConfirmed,
|
|
|
|
CoinStateConfirmed,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
unspentCoins[txC] = &UnspentCoinState{
|
|
|
|
states: []CoinState{
|
|
|
|
CoinStateConfirmed,
|
|
|
|
CoinStateConfirmed,
|
|
|
|
CoinStateConfirmed,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
assert.Nil(t, unspentCoins.commit(batch))
|
|
|
|
assert.Nil(t, store.PutBatch(batch))
|
|
|
|
}
|