forked from hiero-ledger/hiero-sdk-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
live_hash_add_transaction_test.go
67 lines (54 loc) · 1.69 KB
/
live_hash_add_transaction_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
package hedera
import (
"encoding/hex"
"fmt"
"github.com/stretchr/testify/assert"
"testing"
"time"
)
func TestLiveHashAddTransaction_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())
}
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)
}