forked from TrueCloudLab/neoneo-go
9abda40171
Frequently one needs to check if struct serializes/deserializes properly. This commit implements helpers for such cases including: 1. JSON 2. io.Serializable interface
41 lines
1.1 KiB
Go
41 lines
1.1 KiB
Go
package state
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/transaction"
|
|
"github.com/nspcc-dev/neo-go/pkg/crypto/keys"
|
|
"github.com/nspcc-dev/neo-go/pkg/internal/random"
|
|
"github.com/nspcc-dev/neo-go/pkg/internal/testserdes"
|
|
"github.com/nspcc-dev/neo-go/pkg/util"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestEncodeDecodeAssetState(t *testing.T) {
|
|
asset := &Asset{
|
|
ID: random.Uint256(),
|
|
AssetType: transaction.Token,
|
|
Name: "super cool token",
|
|
Amount: util.Fixed8(1000000),
|
|
Available: util.Fixed8(100),
|
|
Precision: 0,
|
|
FeeMode: feeMode,
|
|
Owner: keys.PublicKey{},
|
|
Admin: random.Uint160(),
|
|
Issuer: random.Uint160(),
|
|
Expiration: 10,
|
|
IsFrozen: false,
|
|
}
|
|
|
|
testserdes.EncodeDecodeBinary(t, asset, new(Asset))
|
|
}
|
|
|
|
func TestAssetState_GetName_NEO(t *testing.T) {
|
|
asset := &Asset{AssetType: transaction.GoverningToken}
|
|
assert.Equal(t, "NEO", asset.GetName())
|
|
}
|
|
|
|
func TestAssetState_GetName_NEOGas(t *testing.T) {
|
|
asset := &Asset{AssetType: transaction.UtilityToken}
|
|
assert.Equal(t, "NEOGas", asset.GetName())
|
|
}
|