forked from hiero-ledger/hiero-sdk-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
account_info_query_test.go
131 lines (102 loc) · 3.27 KB
/
account_info_query_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
package hedera
import (
"fmt"
"github.com/stretchr/testify/assert"
"strings"
"testing"
)
func TestSerializeAccountInfoQuery(t *testing.T) {
query := NewAccountInfoQuery().
SetAccountID(AccountID{Account: 3}).
Query
assert.Equal(t, `cryptoGetInfo:{header:{}accountID:{accountNum:3}}`, strings.ReplaceAll(query.pb.String(), " ", ""))
}
func TestAccountInfoQuery_Execute(t *testing.T) {
client := newTestClient(t)
newKey, err := GeneratePrivateKey()
assert.NoError(t, err)
newBalance := NewHbar(2)
assert.Equal(t, 2*HbarUnits.Hbar.numberOfTinybar(), newBalance.tinybar)
resp, err := NewAccountCreateTransaction().
SetKey(newKey.PublicKey()).
SetInitialBalance(newBalance).
Execute(client)
assert.NoError(t, err)
receipt, err := resp.GetReceipt(client)
assert.NoError(t, err)
accountID := *receipt.AccountID
assert.NoError(t, err)
info, err := NewAccountInfoQuery().
SetAccountID(accountID).
SetNodeAccountIDs([]AccountID{resp.NodeID}).
SetMaxQueryPayment(NewHbar(1)).
Execute(client)
assert.NoError(t, err)
assert.Equal(t, accountID, info.AccountID)
assert.Equal(t, false, info.IsDeleted)
assert.Equal(t, newKey.PublicKey(), info.Key)
assert.Equal(t, newBalance.tinybar, info.Balance.tinybar)
tx, err := NewAccountDeleteTransaction().
SetAccountID(accountID).
SetNodeAccountIDs([]AccountID{resp.NodeID}).
SetTransferAccountID(client.GetOperatorAccountID()).
SetTransactionID(TransactionIDGenerate(accountID)).
FreezeWith(client)
assert.NoError(t, err)
resp, err = tx.
Sign(newKey).
Execute(client)
assert.NoError(t, err)
_, err = resp.GetReceipt(client)
assert.NoError(t, err)
}
func TestAccountInfoQueryCost_Execute(t *testing.T) {
client := newTestClient(t)
newKey, err := GeneratePrivateKey()
assert.NoError(t, err)
newBalance := NewHbar(2)
assert.Equal(t, 2*HbarUnits.Hbar.numberOfTinybar(), newBalance.tinybar)
resp, err := NewAccountCreateTransaction().
SetKey(newKey.PublicKey()).
SetInitialBalance(newBalance).
Execute(client)
assert.NoError(t, err)
receipt, err := resp.GetReceipt(client)
assert.NoError(t, err)
accountID := *receipt.AccountID
assert.NoError(t, err)
accountInfo := NewAccountInfoQuery().
SetAccountID(accountID).
SetMaxQueryPayment(NewHbar(1)).
SetNodeAccountIDs([]AccountID{resp.NodeID})
cost, err := accountInfo.GetCost(client)
assert.NoError(t, err)
info, err := accountInfo.SetMaxQueryPayment(cost).Execute(client)
assert.NoError(t, err)
assert.Equal(t, accountID, info.AccountID)
assert.Equal(t, false, info.IsDeleted)
assert.Equal(t, newKey.PublicKey(), info.Key)
assert.Equal(t, newBalance.tinybar, info.Balance.tinybar)
tx, err := NewAccountDeleteTransaction().
SetAccountID(accountID).
SetNodeAccountIDs([]AccountID{resp.NodeID}).
SetTransferAccountID(client.GetOperatorAccountID()).
SetTransactionID(TransactionIDGenerate(accountID)).
FreezeWith(client)
assert.NoError(t, err)
resp, err = tx.
Sign(newKey).
Execute(client)
assert.NoError(t, err)
_, err = resp.GetReceipt(client)
assert.NoError(t, err)
}
func Test_AccountInfo_NoAccountID(t *testing.T) {
client := newTestClient(t)
_, err := NewAccountInfoQuery().
Execute(client)
assert.Error(t, err)
if err != nil {
assert.Equal(t, fmt.Sprintf("exceptional precheck status INVALID_ACCOUNT_ID"), err.Error())
}
}