2016-08-22 21:20:13 +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 bind_test
|
|
|
|
|
|
|
|
import (
|
2017-03-22 17:20:33 +00:00
|
|
|
"context"
|
2020-05-12 10:21:40 +00:00
|
|
|
"errors"
|
2016-08-22 21:20:13 +00:00
|
|
|
"math/big"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/ethereum/go-ethereum/accounts/abi/bind"
|
|
|
|
"github.com/ethereum/go-ethereum/accounts/abi/bind/backends"
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
|
|
|
"github.com/ethereum/go-ethereum/core"
|
|
|
|
"github.com/ethereum/go-ethereum/core/types"
|
|
|
|
"github.com/ethereum/go-ethereum/crypto"
|
|
|
|
)
|
|
|
|
|
|
|
|
var testKey, _ = crypto.HexToECDSA("b71c71a67e1177ad4e901695e1b4b9ee17ae16c6668d313eac2f96dbcda3f291")
|
|
|
|
|
|
|
|
var waitDeployedTests = map[string]struct {
|
|
|
|
code string
|
2017-11-13 11:47:27 +00:00
|
|
|
gas uint64
|
2016-08-22 21:20:13 +00:00
|
|
|
wantAddress common.Address
|
|
|
|
wantErr error
|
|
|
|
}{
|
|
|
|
"successful deploy": {
|
|
|
|
code: `6060604052600a8060106000396000f360606040526008565b00`,
|
2017-11-13 11:47:27 +00:00
|
|
|
gas: 3000000,
|
2016-08-22 21:20:13 +00:00
|
|
|
wantAddress: common.HexToAddress("0x3a220f351252089d385b29beca14e27f204c296a"),
|
|
|
|
},
|
|
|
|
"empty code": {
|
|
|
|
code: ``,
|
2017-11-13 11:47:27 +00:00
|
|
|
gas: 300000,
|
2016-08-22 21:20:13 +00:00
|
|
|
wantErr: bind.ErrNoCodeAfterDeploy,
|
|
|
|
wantAddress: common.HexToAddress("0x3a220f351252089d385b29beca14e27f204c296a"),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestWaitDeployed(t *testing.T) {
|
|
|
|
for name, test := range waitDeployedTests {
|
2018-08-15 07:15:42 +00:00
|
|
|
backend := backends.NewSimulatedBackend(
|
|
|
|
core.GenesisAlloc{
|
|
|
|
crypto.PubkeyToAddress(testKey.PublicKey): {Balance: big.NewInt(10000000000)},
|
all: on-chain oracle checkpoint syncing (#19543)
* all: implement simple checkpoint syncing
cmd, les, node: remove callback mechanism
cmd, node: remove callback definition
les: simplify the registrar
les: expose checkpoint rpc services in the light client
les, light: don't store untrusted receipt
cmd, contracts, les: discard stale checkpoint
cmd, contracts/registrar: loose restriction of registeration
cmd, contracts: add replay-protection
all: off-chain multi-signature contract
params: deploy checkpoint contract for rinkeby
cmd/registrar: add raw signing mode for registrar
cmd/registrar, contracts/registrar, les: fixed messages
* cmd/registrar, contracts/registrar: fix lints
* accounts/abi/bind, les: address comments
* cmd, contracts, les, light, params: minor checkpoint sync cleanups
* cmd, eth, les, light: move checkpoint config to config file
* cmd, eth, les, params: address comments
* eth, les, params: address comments
* cmd: polish up the checkpoint admin CLI
* cmd, contracts, params: deploy new version contract
* cmd/checkpoint-admin: add another flag for clef mode signing
* cmd, contracts, les: rename and regen checkpoint oracle with abigen
2019-06-28 07:34:02 +00:00
|
|
|
},
|
|
|
|
10000000,
|
2018-08-15 07:15:42 +00:00
|
|
|
)
|
2019-07-31 08:35:57 +00:00
|
|
|
defer backend.Close()
|
2016-08-22 21:20:13 +00:00
|
|
|
|
|
|
|
// Create the transaction.
|
|
|
|
tx := types.NewContractCreation(0, big.NewInt(0), test.gas, big.NewInt(1), common.FromHex(test.code))
|
2017-01-05 11:59:17 +00:00
|
|
|
tx, _ = types.SignTx(tx, types.HomesteadSigner{}, testKey)
|
2016-08-22 21:20:13 +00:00
|
|
|
|
|
|
|
// Wait for it to get mined in the background.
|
|
|
|
var (
|
|
|
|
err error
|
|
|
|
address common.Address
|
|
|
|
mined = make(chan struct{})
|
|
|
|
ctx = context.Background()
|
|
|
|
)
|
|
|
|
go func() {
|
|
|
|
address, err = bind.WaitDeployed(ctx, backend, tx)
|
|
|
|
close(mined)
|
|
|
|
}()
|
|
|
|
|
|
|
|
// Send and mine the transaction.
|
|
|
|
backend.SendTransaction(ctx, tx)
|
|
|
|
backend.Commit()
|
|
|
|
|
|
|
|
select {
|
|
|
|
case <-mined:
|
|
|
|
if err != test.wantErr {
|
2020-05-12 10:21:40 +00:00
|
|
|
t.Errorf("test %q: error mismatch: want %q, got %q", name, test.wantErr, err)
|
2016-08-22 21:20:13 +00:00
|
|
|
}
|
|
|
|
if address != test.wantAddress {
|
|
|
|
t.Errorf("test %q: unexpected contract address %s", name, address.Hex())
|
|
|
|
}
|
|
|
|
case <-time.After(2 * time.Second):
|
|
|
|
t.Errorf("test %q: timeout", name)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-05-12 10:21:40 +00:00
|
|
|
|
|
|
|
func TestWaitDeployedCornerCases(t *testing.T) {
|
|
|
|
backend := backends.NewSimulatedBackend(
|
|
|
|
core.GenesisAlloc{
|
|
|
|
crypto.PubkeyToAddress(testKey.PublicKey): {Balance: big.NewInt(10000000000)},
|
|
|
|
},
|
|
|
|
10000000,
|
|
|
|
)
|
|
|
|
defer backend.Close()
|
|
|
|
|
|
|
|
// Create a transaction to an account.
|
|
|
|
code := "6060604052600a8060106000396000f360606040526008565b00"
|
|
|
|
tx := types.NewTransaction(0, common.HexToAddress("0x01"), big.NewInt(0), 3000000, big.NewInt(1), common.FromHex(code))
|
|
|
|
tx, _ = types.SignTx(tx, types.HomesteadSigner{}, testKey)
|
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
|
|
defer cancel()
|
|
|
|
backend.SendTransaction(ctx, tx)
|
|
|
|
backend.Commit()
|
|
|
|
notContentCreation := errors.New("tx is not contract creation")
|
|
|
|
if _, err := bind.WaitDeployed(ctx, backend, tx); err.Error() != notContentCreation.Error() {
|
|
|
|
t.Errorf("error missmatch: want %q, got %q, ", notContentCreation, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a transaction that is not mined.
|
|
|
|
tx = types.NewContractCreation(1, big.NewInt(0), 3000000, big.NewInt(1), common.FromHex(code))
|
|
|
|
tx, _ = types.SignTx(tx, types.HomesteadSigner{}, testKey)
|
|
|
|
|
|
|
|
go func() {
|
|
|
|
contextCanceled := errors.New("context canceled")
|
|
|
|
if _, err := bind.WaitDeployed(ctx, backend, tx); err.Error() != contextCanceled.Error() {
|
|
|
|
t.Errorf("error missmatch: want %q, got %q, ", contextCanceled, err)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
backend.SendTransaction(ctx, tx)
|
|
|
|
cancel()
|
|
|
|
}
|