aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/blocktest/main.go
blob: b96f42710188a6432c23fce5d7fc176ee410c9e1 (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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
/*
    This file is part of go-ethereum

    go-ethereum 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.

    go-ethereum 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 General Public License for more details.

    You should have received a copy of the GNU Lesser General Public License
    along with go-ethereum.  If not, see <http://www.gnu.org/licenses/>.
*/
/**
 * @authors
 *  Gustav Simonsson <gustav.simonsson@gmail.com>
 * @date 2015
 *
 */

package main

import (
    "bytes"
    "encoding/hex"
    "encoding/json"
    "flag"
    "fmt"
    "io/ioutil"
    "log"
    "math/big"
    "os"
    "runtime"
    "strings"

    "github.com/ethereum/go-ethereum/cmd/utils"
    "github.com/ethereum/go-ethereum/core"
    types "github.com/ethereum/go-ethereum/core/types"
    "github.com/ethereum/go-ethereum/ethdb"
    "github.com/ethereum/go-ethereum/event"
    "github.com/ethereum/go-ethereum/logger"
    "github.com/ethereum/go-ethereum/rlp"
)

type Account struct {
    Balance string
    Code    string
    Nonce   string
    Storage map[string]string
}

type BlockHeader struct {
    Bloom            string
    Coinbase         string
    Difficulty       string
    ExtraData        string
    GasLimit         string
    GasUsed          string
    MixHash          string
    Nonce            string
    Number           string
    ParentHash       string
    ReceiptTrie      string
    SeedHash         string
    StateRoot        string
    Timestamp        string
    TransactionsTrie string
    UncleHash        string
}

type Tx struct {
    Data     string
    GasLimit string
    GasPrice string
    Nonce    string
    R        string
    S        string
    To       string
    V        string
    Value    string
}

type Block struct {
    BlockHeader  BlockHeader
    Rlp          string
    Transactions []Tx
    UncleHeaders []string
}

type Test struct {
    Blocks             []Block
    GenesisBlockHeader BlockHeader
    Pre                map[string]Account
}

func main() {
    flag.Usage = func() {
        fmt.Fprintf(os.Stderr, "%s <testfile>\n", os.Args[0])
        flag.PrintDefaults()
    }
    flag.Parse()

    runtime.GOMAXPROCS(runtime.NumCPU())
    logger.AddLogSystem(logger.NewStdLogSystem(os.Stderr, log.LstdFlags, logger.DebugDetailLevel))
    defer func() { logger.Flush() }()

    if len(os.Args) < 2 {
        utils.Fatalf("Please specify a test file as the first argument.")
    }
    blocks, err := loadBlocksFromTestFile(os.Args[1])
    if err != nil {
        utils.Fatalf("Could not load blocks: %v", err)
    }

    chain := memchain()
    chain.ResetWithGenesisBlock(blocks[0])
    if err = chain.InsertChain(types.Blocks{blocks[1]}); err != nil {
        utils.Fatalf("Error: %v", err)
    } else {
        fmt.Println("PASS")
    }
}

func memchain() *core.ChainManager {
    db, err := ethdb.NewMemDatabase()
    if err != nil {
        utils.Fatalf("Could not create in-memory database: %v", err)
    }
    return core.NewChainManager(db, new(event.TypeMux))
}

func loadBlocksFromTestFile(filePath string) (blocks types.Blocks, err error) {
    fileContent, err := ioutil.ReadFile(filePath)
    if err != nil {
        return
    }
    bt := make(map[string]Test)
    if err = json.Unmarshal(fileContent, &bt); err != nil {
        return
    }

    // TODO: support multiple blocks; loop over all blocks
    gbh := new(types.Header)

    // Let's use slighlty different namings for the same things, because that's awesome.
    gbh.ParentHash, err = hex_decode(bt["SimpleTx"].GenesisBlockHeader.ParentHash)
    gbh.UncleHash, err = hex_decode(bt["SimpleTx"].GenesisBlockHeader.UncleHash)
    gbh.Coinbase, err = hex_decode(bt["SimpleTx"].GenesisBlockHeader.Coinbase)
    gbh.Root, err = hex_decode(bt["SimpleTx"].GenesisBlockHeader.StateRoot)
    gbh.TxHash, err = hex_decode(bt["SimpleTx"].GenesisBlockHeader.TransactionsTrie)
    gbh.ReceiptHash, err = hex_decode(bt["SimpleTx"].GenesisBlockHeader.ReceiptTrie)
    gbh.Bloom, err = hex_decode(bt["SimpleTx"].GenesisBlockHeader.Bloom)

    gbh.MixDigest, err = hex_decode(bt["SimpleTx"].GenesisBlockHeader.MixHash)
    gbh.SeedHash, err = hex_decode(bt["SimpleTx"].GenesisBlockHeader.SeedHash)

    d, _ := new(big.Int).SetString(bt["SimpleTx"].GenesisBlockHeader.Difficulty, 10)
    gbh.Difficulty = d

    n, _ := new(big.Int).SetString(bt["SimpleTx"].GenesisBlockHeader.Number, 10)
    gbh.Number = n

    gl, _ := new(big.Int).SetString(bt["SimpleTx"].GenesisBlockHeader.GasLimit, 10)
    gbh.GasLimit = gl

    gu, _ := new(big.Int).SetString(bt["SimpleTx"].GenesisBlockHeader.GasUsed, 10)
    gbh.GasUsed = gu

    ts, _ := new(big.Int).SetString(bt["SimpleTx"].GenesisBlockHeader.Timestamp, 0)
    gbh.Time = ts.Uint64()

    extra, err := hex_decode(bt["SimpleTx"].GenesisBlockHeader.ExtraData)
    gbh.Extra = string(extra) // TODO: change ExtraData to byte array

    nonce, _ := hex_decode(bt["SimpleTx"].GenesisBlockHeader.Nonce)
    gbh.Nonce = nonce

    if err != nil {
        return
    }

    gb := types.NewBlockWithHeader(gbh)
    gb.Reward = new(big.Int)

    testBlock := new(types.Block)

    rlpBytes, err := hex_decode(bt["SimpleTx"].Blocks[0].Rlp)
    err = rlp.Decode(bytes.NewReader(rlpBytes), &testBlock)
    if err != nil {
        return
    }

    blocks = types.Blocks{
        gb,
        testBlock,
    }

    return
}

func hex_decode(s string) (res []byte, err error) {
    return hex.DecodeString(strings.TrimPrefix(s, "0x"))
}