931388b687
* Virtual machine for the NEO blockhain. * fixed big.Int numeric operation pointer issue. * added appcall * Added README for vm package. * removed main.go * started VM cli (prompt) integration * added support for printing the stack. * moved cli to vm package * fixed vet errors * updated readme * added more test for VM and fixed some edge cases. * bumped version -> 0.37.0
51 lines
1.1 KiB
Go
51 lines
1.1 KiB
Go
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++ {
|
|
balances[util.RandomUint256()] = util.Fixed8(int64(util.RandomInt(1, 10000)))
|
|
votes[i] = &crypto.PublicKey{
|
|
ECPoint: crypto.RandomECPoint(),
|
|
}
|
|
}
|
|
|
|
a := &AccountState{
|
|
Version: 0,
|
|
ScriptHash: util.RandomUint160(),
|
|
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)
|
|
}
|
|
|
|
assert.Equal(t, a.Version, aDecode.Version)
|
|
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)
|
|
}
|