forked from hiero-ledger/hiero-sdk-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
live_hash_query_test.go
160 lines (129 loc) · 4.21 KB
/
live_hash_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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
package hedera
import (
"encoding/hex"
"fmt"
"github.com/stretchr/testify/assert"
"strings"
"testing"
"time"
)
func TestSerializeLiveHashQuery(t *testing.T) {
query := NewLiveHashQuery().
SetAccountID(AccountID{Account: 3}).
Query
assert.Equal(t, `cryptoGetLiveHash:{header:{}accountID:{accountNum:3}}`, strings.ReplaceAll(query.pb.String(), " ", ""))
}
func TestLiveHashQuery_Execute(t *testing.T) {
client := newTestClient(t)
_hash, err := hex.DecodeString("100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002")
if err != nil {
}
newKey, err := GeneratePrivateKey()
assert.NoError(t, err)
resp, err := NewAccountCreateTransaction().
SetKey(newKey.PublicKey()).
SetInitialBalance(NewHbar(1)).
Execute(client)
receipt, err := resp.GetReceipt(client)
assert.NoError(t, err)
accountID := *receipt.AccountID
resp2, err := NewLiveHashAddTransaction().
SetAccountID(accountID).
SetDuration(24 * 30 * time.Hour).
SetNodeAccountIDs([]AccountID{resp.NodeID}).
SetHash(_hash).
SetKeys(newKey.PublicKey()).
Execute(client)
assert.Error(t, err)
if err != nil {
assert.Equal(t, fmt.Sprintf("exceptional precheck status NOT_SUPPORTED received for transaction %s", resp2.TransactionID), err.Error())
}
_, err = NewLiveHashQuery().
SetAccountID(accountID).
SetNodeAccountIDs([]AccountID{resp.NodeID}).
SetMaxQueryPayment(NewHbar(1)).
SetHash(_hash).
Execute(client)
assert.Error(t, err)
if err != nil {
assert.Equal(t, fmt.Sprintf("exceptional precheck status NOT_SUPPORTED"), err.Error())
}
resp2, err = NewLiveHashDeleteTransaction().
SetAccountID(accountID).
SetNodeAccountIDs([]AccountID{resp.NodeID}).
SetHash(_hash).
Execute(client)
assert.Error(t, err)
if err != nil {
assert.Equal(t, fmt.Sprintf("exceptional precheck status NOT_SUPPORTED received for transaction %s", resp2.TransactionID), err.Error())
}
tx, err := NewAccountDeleteTransaction().
SetAccountID(accountID).
SetNodeAccountIDs([]AccountID{resp.NodeID}).
SetTransferAccountID(client.GetOperatorAccountID()).
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 TestLiveHashQueryCost_Execute(t *testing.T) {
client := newTestClient(t)
_hash, err := hex.DecodeString("100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002")
if err != nil {
}
newKey, err := GeneratePrivateKey()
assert.NoError(t, err)
resp, err := NewAccountCreateTransaction().
SetKey(newKey.PublicKey()).
SetInitialBalance(NewHbar(1)).
Execute(client)
receipt, err := resp.GetReceipt(client)
assert.NoError(t, err)
accountID := *receipt.AccountID
resp2, err := NewLiveHashAddTransaction().
SetAccountID(accountID).
SetDuration(24 * 30 * time.Hour).
SetNodeAccountIDs([]AccountID{resp.NodeID}).
SetHash(_hash).
SetKeys(newKey.PublicKey()).
Execute(client)
assert.Error(t, err)
if err != nil {
assert.Equal(t, fmt.Sprintf("exceptional precheck status NOT_SUPPORTED received for transaction %s", resp2.TransactionID), err.Error())
}
liveHashQ := NewLiveHashQuery().
SetAccountID(accountID).
SetMaxQueryPayment(NewHbar(1)).
SetNodeAccountIDs([]AccountID{resp.NodeID}).
SetHash(_hash)
cost, err := liveHashQ.GetCost(client)
assert.Error(t, err)
_, err = liveHashQ.SetQueryPayment(cost).Execute(client)
assert.Error(t, err)
if err != nil {
assert.Equal(t, fmt.Sprintf("exceptional precheck status NOT_SUPPORTED"), err.Error())
}
resp2, err = NewLiveHashDeleteTransaction().
SetAccountID(accountID).
SetNodeAccountIDs([]AccountID{resp.NodeID}).
SetHash(_hash).
Execute(client)
assert.Error(t, err)
if err != nil {
assert.Equal(t, fmt.Sprintf("exceptional precheck status NOT_SUPPORTED received for transaction %s", resp2.TransactionID), err.Error())
}
tx, err := NewAccountDeleteTransaction().
SetAccountID(accountID).
SetNodeAccountIDs([]AccountID{resp.NodeID}).
SetTransferAccountID(client.GetOperatorAccountID()).
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)
}