|
|
|
@ -282,7 +282,9 @@ var bindTests = []struct {
|
|
|
|
|
// Generate a new random account and a funded simulator
|
|
|
|
|
key, _ := crypto.GenerateKey()
|
|
|
|
|
auth := bind.NewKeyedTransactor(key)
|
|
|
|
|
|
|
|
|
|
sim := backends.NewSimulatedBackend(core.GenesisAlloc{auth.From: {Balance: big.NewInt(10000000000)}}, 10000000)
|
|
|
|
|
defer sim.Close()
|
|
|
|
|
|
|
|
|
|
// Deploy an interaction tester contract and call a transaction on it
|
|
|
|
|
_, _, interactor, err := DeployInteractor(auth, sim, "Deploy string")
|
|
|
|
@ -334,7 +336,9 @@ var bindTests = []struct {
|
|
|
|
|
// Generate a new random account and a funded simulator
|
|
|
|
|
key, _ := crypto.GenerateKey()
|
|
|
|
|
auth := bind.NewKeyedTransactor(key)
|
|
|
|
|
|
|
|
|
|
sim := backends.NewSimulatedBackend(core.GenesisAlloc{auth.From: {Balance: big.NewInt(10000000000)}}, 10000000)
|
|
|
|
|
defer sim.Close()
|
|
|
|
|
|
|
|
|
|
// Deploy a tuple tester contract and execute a structured call on it
|
|
|
|
|
_, _, getter, err := DeployGetter(auth, sim)
|
|
|
|
@ -377,7 +381,9 @@ var bindTests = []struct {
|
|
|
|
|
// Generate a new random account and a funded simulator
|
|
|
|
|
key, _ := crypto.GenerateKey()
|
|
|
|
|
auth := bind.NewKeyedTransactor(key)
|
|
|
|
|
|
|
|
|
|
sim := backends.NewSimulatedBackend(core.GenesisAlloc{auth.From: {Balance: big.NewInt(10000000000)}}, 10000000)
|
|
|
|
|
defer sim.Close()
|
|
|
|
|
|
|
|
|
|
// Deploy a tuple tester contract and execute a structured call on it
|
|
|
|
|
_, _, tupler, err := DeployTupler(auth, sim)
|
|
|
|
@ -432,7 +438,9 @@ var bindTests = []struct {
|
|
|
|
|
// Generate a new random account and a funded simulator
|
|
|
|
|
key, _ := crypto.GenerateKey()
|
|
|
|
|
auth := bind.NewKeyedTransactor(key)
|
|
|
|
|
|
|
|
|
|
sim := backends.NewSimulatedBackend(core.GenesisAlloc{auth.From: {Balance: big.NewInt(10000000000)}}, 10000000)
|
|
|
|
|
defer sim.Close()
|
|
|
|
|
|
|
|
|
|
// Deploy a slice tester contract and execute a n array call on it
|
|
|
|
|
_, _, slicer, err := DeploySlicer(auth, sim)
|
|
|
|
@ -477,7 +485,9 @@ var bindTests = []struct {
|
|
|
|
|
// Generate a new random account and a funded simulator
|
|
|
|
|
key, _ := crypto.GenerateKey()
|
|
|
|
|
auth := bind.NewKeyedTransactor(key)
|
|
|
|
|
|
|
|
|
|
sim := backends.NewSimulatedBackend(core.GenesisAlloc{auth.From: {Balance: big.NewInt(10000000000)}}, 10000000)
|
|
|
|
|
defer sim.Close()
|
|
|
|
|
|
|
|
|
|
// Deploy a default method invoker contract and execute its default method
|
|
|
|
|
_, _, defaulter, err := DeployDefaulter(auth, sim)
|
|
|
|
@ -519,7 +529,9 @@ var bindTests = []struct {
|
|
|
|
|
`,
|
|
|
|
|
`
|
|
|
|
|
// Create a simulator and wrap a non-deployed contract
|
|
|
|
|
|
|
|
|
|
sim := backends.NewSimulatedBackend(core.GenesisAlloc{}, uint64(10000000000))
|
|
|
|
|
defer sim.Close()
|
|
|
|
|
|
|
|
|
|
nonexistent, err := NewNonExistent(common.Address{}, sim)
|
|
|
|
|
if err != nil {
|
|
|
|
@ -566,7 +578,9 @@ var bindTests = []struct {
|
|
|
|
|
// Generate a new random account and a funded simulator
|
|
|
|
|
key, _ := crypto.GenerateKey()
|
|
|
|
|
auth := bind.NewKeyedTransactor(key)
|
|
|
|
|
|
|
|
|
|
sim := backends.NewSimulatedBackend(core.GenesisAlloc{auth.From: {Balance: big.NewInt(10000000000)}}, 10000000)
|
|
|
|
|
defer sim.Close()
|
|
|
|
|
|
|
|
|
|
// Deploy a funky gas pattern contract
|
|
|
|
|
_, _, limiter, err := DeployFunkyGasPattern(auth, sim)
|
|
|
|
@ -613,7 +627,9 @@ var bindTests = []struct {
|
|
|
|
|
// Generate a new random account and a funded simulator
|
|
|
|
|
key, _ := crypto.GenerateKey()
|
|
|
|
|
auth := bind.NewKeyedTransactor(key)
|
|
|
|
|
|
|
|
|
|
sim := backends.NewSimulatedBackend(core.GenesisAlloc{auth.From: {Balance: big.NewInt(10000000000)}}, 10000000)
|
|
|
|
|
defer sim.Close()
|
|
|
|
|
|
|
|
|
|
// Deploy a sender tester contract and execute a structured call on it
|
|
|
|
|
_, _, callfrom, err := DeployCallFrom(auth, sim)
|
|
|
|
@ -685,7 +701,9 @@ var bindTests = []struct {
|
|
|
|
|
// Generate a new random account and a funded simulator
|
|
|
|
|
key, _ := crypto.GenerateKey()
|
|
|
|
|
auth := bind.NewKeyedTransactor(key)
|
|
|
|
|
|
|
|
|
|
sim := backends.NewSimulatedBackend(core.GenesisAlloc{auth.From: {Balance: big.NewInt(10000000000)}}, 10000000)
|
|
|
|
|
defer sim.Close()
|
|
|
|
|
|
|
|
|
|
// Deploy a underscorer tester contract and execute a structured call on it
|
|
|
|
|
_, _, underscorer, err := DeployUnderscorer(auth, sim)
|
|
|
|
@ -776,7 +794,9 @@ var bindTests = []struct {
|
|
|
|
|
// Generate a new random account and a funded simulator
|
|
|
|
|
key, _ := crypto.GenerateKey()
|
|
|
|
|
auth := bind.NewKeyedTransactor(key)
|
|
|
|
|
|
|
|
|
|
sim := backends.NewSimulatedBackend(core.GenesisAlloc{auth.From: {Balance: big.NewInt(10000000000)}}, 10000000)
|
|
|
|
|
defer sim.Close()
|
|
|
|
|
|
|
|
|
|
// Deploy an eventer contract
|
|
|
|
|
_, _, eventer, err := DeployEventer(auth, sim)
|
|
|
|
@ -963,7 +983,9 @@ var bindTests = []struct {
|
|
|
|
|
// Generate a new random account and a funded simulator
|
|
|
|
|
key, _ := crypto.GenerateKey()
|
|
|
|
|
auth := bind.NewKeyedTransactor(key)
|
|
|
|
|
|
|
|
|
|
sim := backends.NewSimulatedBackend(core.GenesisAlloc{auth.From: {Balance: big.NewInt(10000000000)}}, 10000000)
|
|
|
|
|
defer sim.Close()
|
|
|
|
|
|
|
|
|
|
//deploy the test contract
|
|
|
|
|
_, _, testContract, err := DeployDeeplyNestedArray(auth, sim)
|
|
|
|
@ -1091,13 +1113,15 @@ var bindTests = []struct {
|
|
|
|
|
`
|
|
|
|
|
key, _ := crypto.GenerateKey()
|
|
|
|
|
auth := bind.NewKeyedTransactor(key)
|
|
|
|
|
backend := backends.NewSimulatedBackend(core.GenesisAlloc{auth.From: {Balance: big.NewInt(10000000000)}}, 10000000)
|
|
|
|
|
|
|
|
|
|
_, _, contract, err := DeployTuple(auth, backend)
|
|
|
|
|
sim := backends.NewSimulatedBackend(core.GenesisAlloc{auth.From: {Balance: big.NewInt(10000000000)}}, 10000000)
|
|
|
|
|
defer sim.Close()
|
|
|
|
|
|
|
|
|
|
_, _, contract, err := DeployTuple(auth, sim)
|
|
|
|
|
if err != nil {
|
|
|
|
|
t.Fatalf("deploy contract failed %v", err)
|
|
|
|
|
}
|
|
|
|
|
backend.Commit()
|
|
|
|
|
sim.Commit()
|
|
|
|
|
|
|
|
|
|
check := func(a, b interface{}, errMsg string) {
|
|
|
|
|
if !reflect.DeepEqual(a, b) {
|
|
|
|
@ -1169,7 +1193,7 @@ var bindTests = []struct {
|
|
|
|
|
if err != nil {
|
|
|
|
|
t.Fatalf("invoke contract failed, err %v", err)
|
|
|
|
|
}
|
|
|
|
|
backend.Commit()
|
|
|
|
|
sim.Commit()
|
|
|
|
|
|
|
|
|
|
iter, err := contract.FilterTupleEvent(nil)
|
|
|
|
|
if err != nil {
|
|
|
|
@ -1225,7 +1249,9 @@ var bindTests = []struct {
|
|
|
|
|
// Generate a new random account and a funded simulator
|
|
|
|
|
key, _ := crypto.GenerateKey()
|
|
|
|
|
auth := bind.NewKeyedTransactor(key)
|
|
|
|
|
|
|
|
|
|
sim := backends.NewSimulatedBackend(core.GenesisAlloc{auth.From: {Balance: big.NewInt(10000000000)}}, 10000000)
|
|
|
|
|
defer sim.Close()
|
|
|
|
|
|
|
|
|
|
//deploy the test contract
|
|
|
|
|
_, _, testContract, err := DeployUseLibrary(auth, sim)
|
|
|
|
|