2014-12-04 01:28:02 -08:00
|
|
|
package core
|
2014-09-29 03:57:51 -07:00
|
|
|
|
|
|
|
import (
|
|
|
|
"container/list"
|
|
|
|
"fmt"
|
|
|
|
|
2014-12-04 01:53:49 -08:00
|
|
|
"github.com/ethereum/go-ethereum/core/types"
|
2014-10-31 10:40:32 -07:00
|
|
|
"github.com/ethereum/go-ethereum/crypto"
|
2014-10-23 06:01:27 -07:00
|
|
|
"github.com/ethereum/go-ethereum/ethdb"
|
|
|
|
"github.com/ethereum/go-ethereum/ethutil"
|
|
|
|
"github.com/ethereum/go-ethereum/event"
|
2014-12-30 04:32:01 -08:00
|
|
|
"github.com/ethereum/go-ethereum/p2p"
|
2014-09-29 03:57:51 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
// Implement our EthTest Manager
|
|
|
|
type TestManager struct {
|
2014-11-14 18:58:09 -08:00
|
|
|
// stateManager *StateManager
|
|
|
|
eventMux *event.TypeMux
|
2014-09-29 03:57:51 -07:00
|
|
|
|
2014-10-13 17:01:46 -07:00
|
|
|
db ethutil.Database
|
2014-09-29 03:57:51 -07:00
|
|
|
txPool *TxPool
|
2014-10-29 10:38:05 -07:00
|
|
|
blockChain *ChainManager
|
2014-11-18 10:52:45 -08:00
|
|
|
Blocks []*types.Block
|
2014-09-29 03:57:51 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
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()
|
|
|
|
}
|
|
|
|
|
2014-10-29 10:38:05 -07:00
|
|
|
func (s *TestManager) ChainManager() *ChainManager {
|
2014-09-29 03:57:51 -07:00
|
|
|
return s.blockChain
|
|
|
|
}
|
|
|
|
|
|
|
|
func (tm *TestManager) TxPool() *TxPool {
|
|
|
|
return tm.txPool
|
|
|
|
}
|
|
|
|
|
2014-11-14 18:58:09 -08:00
|
|
|
// func (tm *TestManager) StateManager() *StateManager {
|
|
|
|
// return tm.stateManager
|
|
|
|
// }
|
2014-09-29 03:57:51 -07:00
|
|
|
|
2014-10-13 17:01:46 -07:00
|
|
|
func (tm *TestManager) EventMux() *event.TypeMux {
|
|
|
|
return tm.eventMux
|
2014-09-29 03:57:51 -07:00
|
|
|
}
|
2014-12-30 04:32:01 -08:00
|
|
|
func (tm *TestManager) Broadcast(msgType p2p.Msg, data []interface{}) {
|
2014-09-29 03:57:51 -07:00
|
|
|
fmt.Println("Broadcast not implemented")
|
|
|
|
}
|
|
|
|
|
2014-12-30 04:32:01 -08:00
|
|
|
func (tm *TestManager) ClientIdentity() p2p.ClientIdentity {
|
2014-09-29 03:57:51 -07:00
|
|
|
return nil
|
|
|
|
}
|
2014-10-31 10:40:32 -07:00
|
|
|
func (tm *TestManager) KeyManager() *crypto.KeyManager {
|
2014-09-29 03:57:51 -07:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-10-13 17:01:46 -07:00
|
|
|
func (tm *TestManager) Db() ethutil.Database {
|
|
|
|
return tm.db
|
|
|
|
}
|
|
|
|
|
2014-09-29 03:57:51 -07:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
testManager := &TestManager{}
|
2014-10-13 17:01:46 -07:00
|
|
|
testManager.eventMux = new(event.TypeMux)
|
|
|
|
testManager.db = db
|
2014-11-14 18:58:09 -08:00
|
|
|
// testManager.txPool = NewTxPool(testManager)
|
|
|
|
// testManager.blockChain = NewChainManager(testManager)
|
|
|
|
// testManager.stateManager = NewStateManager(testManager)
|
2014-09-29 03:57:51 -07:00
|
|
|
|
|
|
|
// Start the tx pool
|
|
|
|
testManager.txPool.Start()
|
|
|
|
|
|
|
|
return testManager
|
|
|
|
}
|