aboutsummaryrefslogtreecommitdiffstats
path: root/ethchain/vm_test.go
blob: b919b496f12b09a73d765772809517d3be5e0f0d (plain) (blame)
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
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("")

    db, _ := ethdb.NewMemDatabase()
    state := NewState(ethutil.NewTrie(db, ""))

    script, err := mutan.Compile(strings.NewReader(`
        int32 a = 10
        int32 b = 20
        if a > b {
            int32 c = this.caller()
        }
        Exit()
    `), false)
    tx := NewContractCreationTx(ethutil.Big("0"), ethutil.Big("1000"), ethutil.Big("100"), script, nil)
    addr := tx.Hash()[12:]
    contract := MakeContract(tx, state)
    state.UpdateStateObject(contract)
    fmt.Printf("%x\n", addr)

    callerScript, err := mutan.Compile(strings.NewReader(`
        // Check if there's any cash in the initial store
        if this.store[1000] == 0 {
            this.store[1000] = 10^20
        }


        this.store[1001] = this.value() * 20
        this.store[this.origin()] = this.store[this.origin()] + 1000

        if this.store[1001] > 20 {
            this.store[1001] = 10^50
        }

        int8 ret = 0
        int8 arg = 10
        call(0xe6a12555fad1fb6eaaaed69001a87313d1fd7b54, 0, 100, arg, ret)

        big t
        for int8 i = 0; i < 10; i++ {
            t = i
        }

        if 10 > 20 {
            int8 shouldnt = 2
        } else {
            int8 should = 1
        }
    `), false)
    if err != nil {
        fmt.Println(err)
    }

    callerTx := NewContractCreationTx(ethutil.Big("0"), ethutil.Big("1000"), ethutil.Big("100"), callerScript, nil)

    // Contract addr as test address
    gas := big.NewInt(1000)
    gasPrice := big.NewInt(10)
    account := NewAccount(ContractAddr, big.NewInt(10000000))
    fmt.Println("account.Amount =", account.Amount)
    c := MakeContract(callerTx, state)
    e := account.ConvertGas(gas, gasPrice)
    if e != nil {
        fmt.Println(err)
    }
    fmt.Println("account.Amount =", account.Amount)
    callerClosure := NewClosure(account, c, c.script, state, gas, gasPrice)

    vm := NewVm(state, nil, RuntimeVars{
        Origin:      account.Address(),
        BlockNumber: 1,
        PrevHash:    ethutil.FromHex("5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"),
        Coinbase:    ethutil.FromHex("2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"),
        Time:        1,
        Diff:        big.NewInt(256),
    })
    _, e = callerClosure.Call(vm, nil, nil)
    if e != nil {
        fmt.Println("error", e)
    }
    fmt.Println("account.Amount =", account.Amount)
}