forked from hiero-ledger/hiero-sdk-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontract_delete_transaction_e2e_test.go
149 lines (117 loc) · 6.45 KB
/
contract_delete_transaction_e2e_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
//go:build all || e2e
// +build all e2e
package hedera
/*-
*
* Hedera Go SDK
*
* Copyright (C) 2020 - 2022 Hedera Hashgraph, LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
import (
"fmt"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"testing"
)
func TestIntegrationContractDeleteTransactionCanExecute(t *testing.T) {
// Note: this is the bytecode for the contract found in the example for ./examples/_Create_simpleContract
testContractByteCode := []byte(`608060405234801561001057600080fd5b50336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506101cb806100606000396000f3fe608060405260043610610046576000357c01000000000000000000000000000000000000000000000000000000009004806341c0e1b51461004b578063cfae321714610062575b600080fd5b34801561005757600080fd5b506100606100f2565b005b34801561006e57600080fd5b50610077610162565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156100b757808201518184015260208101905061009c565b50505050905090810190601f1680156100e45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415610160573373ffffffffffffffffffffffffffffffffffffffff16ff5b565b60606040805190810160405280600d81526020017f48656c6c6f2c20776f726c64210000000000000000000000000000000000000081525090509056fea165627a7a72305820ae96fb3af7cde9c0abfe365272441894ab717f816f07f41f07b1cbede54e256e0029`)
t.Parallel()
env := NewIntegrationTestEnv(t)
resp, err := NewFileCreateTransaction().
SetKeys(env.Client.GetOperatorPublicKey()).
SetNodeAccountIDs(env.NodeAccountIDs).
SetContents(testContractByteCode).
Execute(env.Client)
require.NoError(t, err)
receipt, err := resp.SetValidateStatus(true).GetReceipt(env.Client)
require.NoError(t, err)
fileID := *receipt.FileID
assert.NotNil(t, fileID)
resp, err = NewContractCreateTransaction().
SetAdminKey(env.Client.GetOperatorPublicKey()).
SetGas(100000).
SetNodeAccountIDs([]AccountID{resp.NodeID}).
SetConstructorParameters(NewContractFunctionParameters().AddString("hello from hedera")).
SetBytecodeFileID(fileID).
SetContractMemo("hedera-sdk-go::TestContractDeleteTransaction_Execute").
Execute(env.Client)
require.NoError(t, err)
receipt, err = resp.SetValidateStatus(true).GetReceipt(env.Client)
require.NoError(t, err)
assert.NotNil(t, receipt.ContractID)
contractID := *receipt.ContractID
resp, err = NewContractDeleteTransaction().
SetContractID(contractID).
SetTransferAccountID(env.Client.GetOperatorAccountID()).
SetNodeAccountIDs([]AccountID{resp.NodeID}).
Execute(env.Client)
require.NoError(t, err)
_, err = resp.SetValidateStatus(true).GetReceipt(env.Client)
require.NoError(t, err)
resp, err = NewFileDeleteTransaction().
SetFileID(fileID).
SetNodeAccountIDs([]AccountID{resp.NodeID}).
Execute(env.Client)
require.NoError(t, err)
_, err = resp.SetValidateStatus(true).GetReceipt(env.Client)
require.NoError(t, err)
err = CloseIntegrationTestEnv(env, nil)
require.NoError(t, err)
}
func TestIntegrationContractDeleteTransactionNoContractID(t *testing.T) {
// Note: this is the bytecode for the contract found in the example for ./examples/_Create_simpleContract
testContractByteCode := []byte(`608060405234801561001057600080fd5b50336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506101cb806100606000396000f3fe608060405260043610610046576000357c01000000000000000000000000000000000000000000000000000000009004806341c0e1b51461004b578063cfae321714610062575b600080fd5b34801561005757600080fd5b506100606100f2565b005b34801561006e57600080fd5b50610077610162565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156100b757808201518184015260208101905061009c565b50505050905090810190601f1680156100e45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415610160573373ffffffffffffffffffffffffffffffffffffffff16ff5b565b60606040805190810160405280600d81526020017f48656c6c6f2c20776f726c64210000000000000000000000000000000000000081525090509056fea165627a7a72305820ae96fb3af7cde9c0abfe365272441894ab717f816f07f41f07b1cbede54e256e0029`)
t.Parallel()
env := NewIntegrationTestEnv(t)
resp, err := NewFileCreateTransaction().
SetKeys(env.Client.GetOperatorPublicKey()).
SetNodeAccountIDs(env.NodeAccountIDs).
SetContents(testContractByteCode).
Execute(env.Client)
require.NoError(t, err)
receipt, err := resp.SetValidateStatus(true).GetReceipt(env.Client)
require.NoError(t, err)
fileID := *receipt.FileID
assert.NotNil(t, fileID)
resp, err = NewContractCreateTransaction().
SetAdminKey(env.Client.GetOperatorPublicKey()).
SetGas(100000).
SetNodeAccountIDs([]AccountID{resp.NodeID}).
SetConstructorParameters(NewContractFunctionParameters().AddString("hello from hedera")).
SetBytecodeFileID(fileID).
SetContractMemo("hedera-sdk-go::TestContractDeleteTransaction_Execute").
Execute(env.Client)
require.NoError(t, err)
receipt, err = resp.SetValidateStatus(true).GetReceipt(env.Client)
require.NoError(t, err)
resp2, err := NewContractDeleteTransaction().
SetNodeAccountIDs([]AccountID{resp.NodeID}).
Execute(env.Client)
assert.Error(t, err)
if err != nil {
assert.Equal(t, fmt.Sprintf("exceptional precheck status INVALID_CONTRACT_ID received for transaction %s", resp2.TransactionID), err.Error())
}
resp, err = NewFileDeleteTransaction().
SetFileID(fileID).
SetNodeAccountIDs([]AccountID{resp.NodeID}).
Execute(env.Client)
require.NoError(t, err)
_, err = resp.SetValidateStatus(true).GetReceipt(env.Client)
require.NoError(t, err)
err = CloseIntegrationTestEnv(env, nil)
require.NoError(t, err)
}