go-ethereum/ethchain/vm_test.go

99 lines
2.3 KiB
Go
Raw Normal View History

package ethchain
/*
import (
_ "bytes"
"fmt"
"github.com/ethereum/eth-go/ethdb"
"github.com/ethereum/eth-go/ethutil"
"github.com/obscuren/mutan"
"math/big"
"strings"
"testing"
)
func TestRun4(t *testing.T) {
ethutil.ReadConfig("", ethutil.LogStd)
db, _ := ethdb.NewMemDatabase()
state := NewState(ethutil.NewTrie(db, ""))
2014-04-27 19:00:38 +03:00
script, err := mutan.Compile(strings.NewReader(`
2014-04-10 21:40:12 +03:00
int32 a = 10
int32 b = 20
if a > b {
2014-05-05 18:14:29 +03:00
int32 c = this.caller()
2014-04-10 21:40:12 +03:00
}
exit()
2014-04-10 21:40:12 +03:00
`), false)
2014-04-26 02:54:45 +03:00
tx := NewContractCreationTx(ethutil.Big("0"), ethutil.Big("1000"), ethutil.Big("100"), script, nil)
tx.Sign(ContractAddr)
addr := tx.CreationAddress()
2014-04-10 21:40:12 +03:00
contract := MakeContract(tx, state)
2014-04-18 14:41:07 +03:00
state.UpdateStateObject(contract)
2014-04-10 21:40:12 +03:00
fmt.Printf("%x\n", addr)
2014-04-27 19:00:38 +03:00
callerScript, err := mutan.Compile(strings.NewReader(`
2014-04-11 04:03:14 +03:00
// Check if there's any cash in the initial store
2014-05-05 18:14:29 +03:00
if this.store[1000] == 0 {
this.store[1000] = 10**20
}
2014-03-30 22:03:08 +02:00
2014-04-20 02:31:01 +03:00
2014-05-05 18:14:29 +03:00
this.store[1001] = this.value() * 20
this.store[this.origin()] = this.store[this.origin()] + 1000
2014-04-11 04:03:14 +03:00
2014-05-05 18:14:29 +03:00
if this.store[1001] > 20 {
this.store[1001] = 10^50
2014-04-11 04:03:14 +03:00
}
2014-04-05 11:49:07 +03:00
2014-04-10 21:40:12 +03:00
int8 ret = 0
int8 arg = 10
2014-05-05 18:14:29 +03:00
call(0xe6a12555fad1fb6eaaaed69001a87313d1fd7b54, 0, 100, arg, ret)
2014-04-20 02:31:01 +03:00
big t
for int8 i = 0; i < 10; i++ {
t = i
}
if 10 > 20 {
int8 shouldnt = 2
} else {
int8 should = 1
}
2014-03-30 12:58:37 +02:00
`), false)
if err != nil {
fmt.Println(err)
}
2014-04-26 02:54:45 +03:00
callerTx := NewContractCreationTx(ethutil.Big("0"), ethutil.Big("1000"), ethutil.Big("100"), callerScript, nil)
// Contract addr as test address
2014-04-20 02:31:01 +03:00
gas := big.NewInt(1000)
gasPrice := big.NewInt(10)
account := NewAccount(ContractAddr, big.NewInt(10000000))
2014-04-20 02:31:01 +03:00
fmt.Println("account.Amount =", account.Amount)
2014-04-09 19:27:54 +03:00
c := MakeContract(callerTx, state)
2014-04-20 02:31:01 +03:00
e := account.ConvertGas(gas, gasPrice)
if e != nil {
fmt.Println(err)
}
fmt.Println("account.Amount =", account.Amount)
2014-05-10 03:01:09 +03:00
callerClosure := NewClosure(account, c, c.script, state, gas, gasPrice)
2014-04-26 02:54:45 +03:00
vm := NewVm(state, nil, RuntimeVars{
2014-04-11 20:29:57 +03:00
Origin: account.Address(),
BlockNumber: 1,
PrevHash: ethutil.FromHex("5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"),
Coinbase: ethutil.FromHex("2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"),
Time: 1,
Diff: big.NewInt(256),
})
2014-04-20 02:31:01 +03:00
_, e = callerClosure.Call(vm, nil, nil)
2014-04-18 14:41:07 +03:00
if e != nil {
fmt.Println("error", e)
}
2014-04-20 02:31:01 +03:00
fmt.Println("account.Amount =", account.Amount)
}
*/