-
Notifications
You must be signed in to change notification settings - Fork 531
/
Copy pathself_destruct_test.go
68 lines (58 loc) · 2.5 KB
/
self_destruct_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
package arbtest
import (
"context"
"math/big"
"testing"
"github.com/ethereum/go-ethereum/params"
"github.com/offchainlabs/nitro/solgen/go/mocksgen"
)
func TestSelfDestruct(t *testing.T) {
t.Parallel()
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
builder := NewNodeBuilder(ctx).DefaultConfig(t, true)
cleanup := builder.Build(t)
defer cleanup()
builder.L2Info.GenerateAccount("destination")
destination := builder.L2Info.GetAddress("destination")
builder.L2Info.GenerateAccount("self_destruct")
auth := builder.L2Info.GetDefaultTransactOpts("self_destruct", ctx)
auth.GasLimit = 32000000
balance := big.NewInt(params.Ether)
balance.Mul(balance, big.NewInt(100))
builder.L2.TransferBalance(t, "Faucet", "self_destruct", balance, builder.L2Info)
// Test self-destruct with recipient same as the contract (contract is created and destroyed in the same transaction)
auth.Value = big.NewInt(params.Ether)
_, tx, _, err := mocksgen.DeploySelfDestructInConstructorWithoutDestination(&auth, builder.L2.Client)
Require(t, err)
_, err = builder.L2.EnsureTxSucceeded(tx)
Require(t, err)
// Test self-destruct with recipient different from the contract (contract is created and destroyed in the same transaction)
auth.Value = big.NewInt(params.Ether)
_, tx, _, err = mocksgen.DeploySelfDestructInConstructorWithDestination(&auth, builder.L2.Client, destination)
Require(t, err)
_, err = builder.L2.EnsureTxSucceeded(tx)
Require(t, err)
// Test self-destruct with recipient same as the contract (contract is created and destroyed in different transaction)
auth.Value = big.NewInt(params.Ether)
_, tx, selfDestructOutsideConstructor, err := mocksgen.DeploySelfDestructOutsideConstructor(&auth, builder.L2.Client)
Require(t, err)
_, err = builder.L2.EnsureTxSucceeded(tx)
Require(t, err)
auth.Value = nil
tx, err = selfDestructOutsideConstructor.SelfDestructWithoutDestination(&auth)
Require(t, err)
_, err = builder.L2.EnsureTxSucceeded(tx)
Require(t, err)
// Test self-destruct with recipient same as the contract (contract is created and destroyed in the different transaction)
auth.Value = big.NewInt(params.Ether)
_, tx, selfDestructOutsideConstructor, err = mocksgen.DeploySelfDestructOutsideConstructor(&auth, builder.L2.Client)
Require(t, err)
_, err = builder.L2.EnsureTxSucceeded(tx)
Require(t, err)
auth.Value = nil
tx, err = selfDestructOutsideConstructor.SelfDestructWithDestination(&auth, destination)
Require(t, err)
_, err = builder.L2.EnsureTxSucceeded(tx)
Require(t, err)
}