2019-05-27 13:51:49 +00:00
|
|
|
// Copyright 2016 The go-ethereum Authors
|
|
|
|
// This file is part of the go-ethereum library.
|
|
|
|
//
|
|
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
package tests
|
|
|
|
|
|
|
|
import (
|
|
|
|
"math/big"
|
|
|
|
"testing"
|
|
|
|
|
2020-06-04 07:43:08 +00:00
|
|
|
"github.com/holiman/uint256"
|
|
|
|
|
2019-05-27 13:51:49 +00:00
|
|
|
"github.com/ledgerwatch/turbo-geth/accounts/abi/bind"
|
|
|
|
"github.com/ledgerwatch/turbo-geth/accounts/abi/bind/backends"
|
|
|
|
"github.com/ledgerwatch/turbo-geth/common"
|
|
|
|
"github.com/ledgerwatch/turbo-geth/consensus/ethash"
|
|
|
|
"github.com/ledgerwatch/turbo-geth/core"
|
2020-05-27 16:24:34 +00:00
|
|
|
"github.com/ledgerwatch/turbo-geth/core/state"
|
2019-05-27 13:51:49 +00:00
|
|
|
"github.com/ledgerwatch/turbo-geth/core/types"
|
|
|
|
"github.com/ledgerwatch/turbo-geth/core/vm"
|
|
|
|
"github.com/ledgerwatch/turbo-geth/crypto"
|
2020-12-08 09:44:29 +00:00
|
|
|
"github.com/ledgerwatch/turbo-geth/eth/stagedsync"
|
2019-05-27 13:51:49 +00:00
|
|
|
"github.com/ledgerwatch/turbo-geth/ethdb"
|
|
|
|
"github.com/ledgerwatch/turbo-geth/params"
|
|
|
|
"github.com/ledgerwatch/turbo-geth/tests/contracts"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestSelfDestructReceive(t *testing.T) {
|
|
|
|
// Configure and generate a sample block chain
|
2021-05-19 03:47:28 +00:00
|
|
|
db := ethdb.NewTestDB(t)
|
2019-05-27 13:51:49 +00:00
|
|
|
var (
|
|
|
|
key, _ = crypto.HexToECDSA("b71c71a67e1177ad4e901695e1b4b9ee17ae16c6668d313eac2f96dbcda3f291")
|
|
|
|
address = crypto.PubkeyToAddress(key.PublicKey)
|
|
|
|
funds = big.NewInt(1000000000)
|
|
|
|
gspec = &core.Genesis{
|
|
|
|
Config: ¶ms.ChainConfig{
|
2020-10-26 13:51:03 +00:00
|
|
|
ChainID: big.NewInt(1),
|
|
|
|
HomesteadBlock: new(big.Int),
|
|
|
|
ByzantiumBlock: new(big.Int),
|
|
|
|
ConstantinopleBlock: new(big.Int),
|
|
|
|
EIP150Block: new(big.Int),
|
|
|
|
EIP155Block: new(big.Int),
|
|
|
|
EIP158Block: big.NewInt(0),
|
2019-05-27 13:51:49 +00:00
|
|
|
},
|
|
|
|
Alloc: core.GenesisAlloc{
|
|
|
|
address: {Balance: funds},
|
|
|
|
},
|
|
|
|
}
|
2020-06-05 09:25:33 +00:00
|
|
|
genesis = gspec.MustCommit(db)
|
2019-05-27 13:51:49 +00:00
|
|
|
// this code generates a log
|
2021-04-22 17:11:37 +00:00
|
|
|
signer = types.LatestSignerForChainID(nil)
|
2019-05-27 13:51:49 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
engine := ethash.NewFaker()
|
|
|
|
|
|
|
|
contractBackend := backends.NewSimulatedBackendWithConfig(gspec.Alloc, gspec.Config, gspec.GasLimit)
|
2021-04-19 21:58:05 +00:00
|
|
|
defer contractBackend.Close()
|
2019-05-27 13:51:49 +00:00
|
|
|
transactOpts := bind.NewKeyedTransactor(key)
|
|
|
|
|
|
|
|
var contractAddress common.Address
|
|
|
|
var selfDestructorContract *contracts.SelfDestructor
|
2020-12-08 09:44:29 +00:00
|
|
|
var err error
|
2019-05-27 13:51:49 +00:00
|
|
|
|
|
|
|
// There are two blocks
|
|
|
|
// First block deploys a contract, then makes it self-destruct, and then sends 1 wei to the address of the contract,
|
|
|
|
// effectively turning it from contract account to a non-contract account
|
|
|
|
// The second block is empty and is only used to force the newly created blockchain object to reload the trie
|
|
|
|
// from the database.
|
2021-05-20 11:49:33 +00:00
|
|
|
blocks, _, err := core.GenerateChain(gspec.Config, genesis, engine, db.RwKV(), 2, func(i int, block *core.BlockGen) {
|
2021-04-22 17:11:37 +00:00
|
|
|
var tx types.Transaction
|
2019-05-27 13:51:49 +00:00
|
|
|
|
|
|
|
switch i {
|
|
|
|
case 0:
|
|
|
|
contractAddress, tx, selfDestructorContract, err = contracts.DeploySelfDestructor(transactOpts, contractBackend)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
block.AddTx(tx)
|
|
|
|
tx, err = selfDestructorContract.SelfDestruct(transactOpts)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
block.AddTx(tx)
|
|
|
|
// Send 1 wei to contract after self-destruction
|
2021-04-22 17:11:37 +00:00
|
|
|
tx, err = types.SignTx(types.NewTransaction(block.TxNonce(address), contractAddress, uint256.NewInt().SetUint64(1000), 21000, uint256.NewInt().SetUint64(1), nil), *signer, key)
|
2019-05-27 13:51:49 +00:00
|
|
|
block.AddTx(tx)
|
|
|
|
}
|
|
|
|
contractBackend.Commit()
|
2020-07-10 21:37:34 +00:00
|
|
|
}, false /* intermediateHashes */)
|
2020-07-09 06:15:28 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("generate blocks: %v", err)
|
|
|
|
}
|
2019-05-27 13:51:49 +00:00
|
|
|
|
2020-12-08 09:44:29 +00:00
|
|
|
st := state.New(state.NewPlainStateReader(db))
|
2019-05-27 13:51:49 +00:00
|
|
|
if !st.Exist(address) {
|
|
|
|
t.Error("expected account to exist")
|
|
|
|
}
|
|
|
|
if st.Exist(contractAddress) {
|
|
|
|
t.Error("expected contractAddress to not exist before block 0", contractAddress.String())
|
|
|
|
}
|
|
|
|
|
|
|
|
// BLOCK 1
|
2021-03-05 20:34:23 +00:00
|
|
|
if _, err = stagedsync.InsertBlockInStages(db, gspec.Config, &vm.Config{}, engine, blocks[0], true /* checkRoot */); err != nil {
|
2019-05-27 13:51:49 +00:00
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// BLOCK 2
|
2021-03-05 20:34:23 +00:00
|
|
|
if _, err = stagedsync.InsertBlockInStages(db, gspec.Config, &vm.Config{}, engine, blocks[1], true /* checkRoot */); err != nil {
|
2019-05-27 13:51:49 +00:00
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
// If we got this far, the newly created blockchain (with empty trie cache) loaded trie from the database
|
|
|
|
// and that means that the state of the accounts written in the first block was correct.
|
|
|
|
// This test checks that the storage root of the account is properly set to the root of the empty tree
|
|
|
|
|
2020-08-24 17:00:40 +00:00
|
|
|
st = state.New(state.NewDbStateReader(db))
|
2019-05-27 13:51:49 +00:00
|
|
|
if !st.Exist(address) {
|
|
|
|
t.Error("expected account to exist")
|
|
|
|
}
|
|
|
|
if !st.Exist(contractAddress) {
|
|
|
|
t.Error("expected contractAddress to exist at the block 2", contractAddress.String())
|
|
|
|
}
|
|
|
|
if len(st.GetCode(contractAddress)) != 0 {
|
|
|
|
t.Error("expected empty code in contract at block 2", contractAddress.String())
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|