2018-03-21 16:11:04 +00:00
|
|
|
package core
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/CityOfZion/neo-go/pkg/crypto"
|
|
|
|
"github.com/CityOfZion/neo-go/pkg/util"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestDecodeEncodeAccountState(t *testing.T) {
|
|
|
|
var (
|
|
|
|
n = 10
|
|
|
|
balances = make(map[util.Uint256]util.Fixed8)
|
|
|
|
votes = make([]*crypto.PublicKey, n)
|
|
|
|
)
|
|
|
|
for i := 0; i < n; i++ {
|
2019-08-23 15:50:45 +00:00
|
|
|
balances[randomUint256()] = util.Fixed8(int64(randomInt(1, 10000)))
|
2018-03-30 16:15:06 +00:00
|
|
|
votes[i] = &crypto.PublicKey{
|
|
|
|
ECPoint: crypto.RandomECPoint(),
|
|
|
|
}
|
2018-03-21 16:11:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
a := &AccountState{
|
2018-03-25 10:45:54 +00:00
|
|
|
Version: 0,
|
2019-08-23 15:50:45 +00:00
|
|
|
ScriptHash: randomUint160(),
|
2018-03-21 16:11:04 +00:00
|
|
|
IsFrozen: true,
|
|
|
|
Votes: votes,
|
|
|
|
Balances: balances,
|
|
|
|
}
|
|
|
|
|
|
|
|
buf := new(bytes.Buffer)
|
|
|
|
if err := a.EncodeBinary(buf); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
aDecode := &AccountState{}
|
|
|
|
if err := aDecode.DecodeBinary(buf); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2018-03-25 10:45:54 +00:00
|
|
|
assert.Equal(t, a.Version, aDecode.Version)
|
2018-03-21 16:11:04 +00:00
|
|
|
assert.Equal(t, a.ScriptHash, aDecode.ScriptHash)
|
|
|
|
assert.Equal(t, a.IsFrozen, aDecode.IsFrozen)
|
|
|
|
|
|
|
|
for i, vote := range a.Votes {
|
|
|
|
assert.Equal(t, vote.X, aDecode.Votes[i].X)
|
|
|
|
}
|
|
|
|
assert.Equal(t, a.Balances, aDecode.Balances)
|
|
|
|
}
|