solana-go/account_test.go

122 lines
3.4 KiB
Go
Raw Normal View History

2020-11-25 11:25:32 -08:00
package solana
import (
"testing"
2020-11-26 14:05:05 -08:00
"github.com/magiconair/properties/assert"
2020-11-25 11:25:32 -08:00
"github.com/stretchr/testify/require"
)
func TestNewAccount(t *testing.T) {
a := NewAccount()
privateKey := a.PrivateKey
public := a.PublicKey()
a2, err := AccountFromPrivateKeyBase58(privateKey.String())
require.NoError(t, err)
require.Equal(t, privateKey, a2.PrivateKey)
require.Equal(t, public, a2.PublicKey())
}
2020-11-26 14:05:05 -08:00
func Test_AccountMeta_less(t *testing.T) {
pkey := MustPublicKeyFromBase58("SysvarS1otHashes111111111111111111111111111")
tests := []struct {
name string
left *AccountMeta
right *AccountMeta
expect bool
}{
{
name: "accounts are equal",
left: &AccountMeta{PublicKey: pkey, IsSigner: false, IsWritable: false},
right: &AccountMeta{PublicKey: pkey, IsSigner: false, IsWritable: false},
expect: false,
},
{
name: "left is a signer, right is not a signer",
left: &AccountMeta{PublicKey: pkey, IsSigner: true, IsWritable: false},
right: &AccountMeta{PublicKey: pkey, IsSigner: false, IsWritable: false},
expect: true,
},
{
name: "left is not a signer, right is a signer",
left: &AccountMeta{PublicKey: pkey, IsSigner: false, IsWritable: false},
right: &AccountMeta{PublicKey: pkey, IsSigner: true, IsWritable: false},
expect: false,
},
{
name: "left is writable, right is not writable",
left: &AccountMeta{PublicKey: pkey, IsSigner: false, IsWritable: true},
right: &AccountMeta{PublicKey: pkey, IsSigner: false, IsWritable: false},
expect: true,
},
{
name: "left is not writable, right is writable",
left: &AccountMeta{PublicKey: pkey, IsSigner: false, IsWritable: false},
right: &AccountMeta{PublicKey: pkey, IsSigner: false, IsWritable: true},
expect: false,
},
{
name: "both are signers and left is writable, right is not writable",
left: &AccountMeta{PublicKey: pkey, IsSigner: true, IsWritable: true},
right: &AccountMeta{PublicKey: pkey, IsSigner: true, IsWritable: false},
expect: true,
},
{
name: "both are signers andleft is not writable, right is writable",
left: &AccountMeta{PublicKey: pkey, IsSigner: true, IsWritable: false},
right: &AccountMeta{PublicKey: pkey, IsSigner: true, IsWritable: true},
expect: false,
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
assert.Equal(t, test.expect, test.left.less(test.right))
})
}
2021-07-29 08:19:13 -07:00
}
func TestAccountMetaSlice(t *testing.T) {
pkey1 := MustPublicKeyFromBase58("SysvarS1otHashes111111111111111111111111111")
var slice AccountMetaSlice
setting := []*AccountMeta{
{PublicKey: pkey1, IsSigner: true, IsWritable: false},
}
err := slice.SetAccounts(setting)
require.NoError(t, err)
require.Len(t, slice, 1)
require.Equal(t, setting[0], slice[0])
require.Equal(t, setting, slice.GetAccounts())
{
pkey2 := MustPublicKeyFromBase58("BPFLoaderUpgradeab1e11111111111111111111111")
meta := NewAccountMeta(pkey2, true, false)
slice.Append(meta)
require.Len(t, slice, 2)
require.Equal(t, meta, slice[1])
require.Equal(t, meta, slice.GetAccounts()[1])
}
}
func TestNewAccountMeta(t *testing.T) {
pkey := MustPublicKeyFromBase58("SysvarS1otHashes111111111111111111111111111")
isWritable := false
isSigner := true
out := NewAccountMeta(pkey, isWritable, isSigner)
require.NotNil(t, out)
2020-11-26 14:05:05 -08:00
2021-07-29 08:19:13 -07:00
require.Equal(t, isSigner, out.IsSigner)
require.Equal(t, isWritable, out.IsWritable)
2020-11-26 14:05:05 -08:00
}