aboutsummaryrefslogtreecommitdiffstats
path: root/ethchain/helper_test.go
blob: 75d7771fce5519c896723c09d4990ae9775f3b29 (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
package ethchain

import (
    "container/list"
    "fmt"

    "github.com/ethereum/eth-go/ethcrypto"
    "github.com/ethereum/eth-go/ethdb"
    "github.com/ethereum/eth-go/ethreact"
    "github.com/ethereum/eth-go/ethutil"
    "github.com/ethereum/eth-go/ethwire"
)

// Implement our EthTest Manager
type TestManager struct {
    stateManager *StateManager
    reactor      *ethreact.ReactorEngine

    txPool     *TxPool
    blockChain *BlockChain
    Blocks     []*Block
}

func (s *TestManager) IsListening() bool {
    return false
}

func (s *TestManager) IsMining() bool {
    return false
}

func (s *TestManager) PeerCount() int {
    return 0
}

func (s *TestManager) Peers() *list.List {
    return list.New()
}

func (s *TestManager) BlockChain() *BlockChain {
    return s.blockChain
}

func (tm *TestManager) TxPool() *TxPool {
    return tm.txPool
}

func (tm *TestManager) StateManager() *StateManager {
    return tm.stateManager
}

func (tm *TestManager) Reactor() *ethreact.ReactorEngine {
    return tm.reactor
}
func (tm *TestManager) Broadcast(msgType ethwire.MsgType, data []interface{}) {
    fmt.Println("Broadcast not implemented")
}

func (tm *TestManager) ClientIdentity() ethwire.ClientIdentity {
    return nil
}
func (tm *TestManager) KeyManager() *ethcrypto.KeyManager {
    return nil
}

func (tm *TestManager) Db() ethutil.Database { return nil }
func NewTestManager() *TestManager {
    ethutil.ReadConfig(".ethtest", "/tmp/ethtest", "ETH")

    db, err := ethdb.NewMemDatabase()
    if err != nil {
        fmt.Println("Could not create mem-db, failing")
        return nil
    }
    ethutil.Config.Db = db

    testManager := &TestManager{}
    testManager.reactor = ethreact.New()

    testManager.txPool = NewTxPool(testManager)
    testManager.blockChain = NewBlockChain(testManager)
    testManager.stateManager = NewStateManager(testManager)

    // Start the tx pool
    testManager.txPool.Start()

    return testManager
}