aboutsummaryrefslogtreecommitdiffstats
path: root/blockpool/test
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2015-04-21 18:14:38 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2015-04-21 18:14:38 +0800
commit4ad8b28794c3fe620a1665fec02ff4280c5f79b8 (patch)
treeb704e953b177086703269de4643a3ecdbdbbfa3b /blockpool/test
parent1dc91975ad801418f6756381275d52549949f4dd (diff)
parent6c2b703c5871f5d8adf3bc4032385135e665018b (diff)
downloaddexon-4ad8b28794c3fe620a1665fec02ff4280c5f79b8.tar
dexon-4ad8b28794c3fe620a1665fec02ff4280c5f79b8.tar.gz
dexon-4ad8b28794c3fe620a1665fec02ff4280c5f79b8.tar.bz2
dexon-4ad8b28794c3fe620a1665fec02ff4280c5f79b8.tar.lz
dexon-4ad8b28794c3fe620a1665fec02ff4280c5f79b8.tar.xz
dexon-4ad8b28794c3fe620a1665fec02ff4280c5f79b8.tar.zst
dexon-4ad8b28794c3fe620a1665fec02ff4280c5f79b8.zip
Merge pull request #760 from obscuren/develop
core: transaction fixes
Diffstat (limited to 'blockpool/test')
-rw-r--r--blockpool/test/hash_pool.go55
-rw-r--r--blockpool/test/logger.go74
-rw-r--r--blockpool/test/util.go41
3 files changed, 0 insertions, 170 deletions
diff --git a/blockpool/test/hash_pool.go b/blockpool/test/hash_pool.go
deleted file mode 100644
index df3c750f9..000000000
--- a/blockpool/test/hash_pool.go
+++ /dev/null
@@ -1,55 +0,0 @@
-package test
-
-import (
- "sync"
-
- "github.com/ethereum/go-ethereum/common"
- "github.com/ethereum/go-ethereum/crypto"
-)
-
-// hashPool is a test helper, that allows random hashes to be referred to by integers
-type TestHashPool struct {
- intToHash
- hashToInt
- lock sync.Mutex
-}
-
-func NewHashPool() *TestHashPool {
- return &TestHashPool{intToHash: make(intToHash), hashToInt: make(hashToInt)}
-}
-
-type intToHash map[int]common.Hash
-
-type hashToInt map[common.Hash]int
-
-func newHash(i int) common.Hash {
- return common.BytesToHash(crypto.Sha3([]byte(string(i))))
-}
-
-func (self *TestHashPool) IndexesToHashes(indexes []int) (hashes []common.Hash) {
- self.lock.Lock()
- defer self.lock.Unlock()
- for _, i := range indexes {
- hash, found := self.intToHash[i]
- if !found {
- hash = newHash(i)
- self.intToHash[i] = hash
- self.hashToInt[hash] = i
- }
- hashes = append(hashes, hash)
- }
- return
-}
-
-func (self *TestHashPool) HashesToIndexes(hashes []common.Hash) (indexes []int) {
- self.lock.Lock()
- defer self.lock.Unlock()
- for _, hash := range hashes {
- i, found := self.hashToInt[hash]
- if !found {
- i = -1
- }
- indexes = append(indexes, i)
- }
- return
-}
diff --git a/blockpool/test/logger.go b/blockpool/test/logger.go
deleted file mode 100644
index 2828ffc83..000000000
--- a/blockpool/test/logger.go
+++ /dev/null
@@ -1,74 +0,0 @@
-package test
-
-import (
- "log"
- "os"
- "sync"
- "testing"
-
- "github.com/ethereum/go-ethereum/logger"
-)
-
-// logging in tests
-
-var once sync.Once
-
-/* usage:
-func TestFunc(t *testing.T) {
- test.LogInit()
- // test
-}
-*/
-func LogInit() {
- once.Do(func() {
- logger.NewStdLogSystem(os.Stdout, log.LstdFlags, logger.LogLevel(logger.DebugDetailLevel))
- })
-}
-
-type testLogger struct{ t *testing.T }
-
-/* usage:
-func TestFunc(t *testing.T) {
- defer test.Testlog.Detach()
- // test
-}
-*/
-func Testlog(t *testing.T) testLogger {
- logger.Reset()
- l := testLogger{t}
- logger.AddLogSystem(l)
- return l
-}
-
-func (l testLogger) LogPrint(msg logger.LogMsg) {
- l.t.Log(msg.String())
-}
-
-func (testLogger) Detach() {
- logger.Flush()
- logger.Reset()
-}
-
-type benchLogger struct{ b *testing.B }
-
-/* usage:
-func BenchmarkFunc(b *testing.B) {
- defer test.Benchlog.Detach()
- // test
-}
-*/
-func Benchlog(b *testing.B) benchLogger {
- logger.Reset()
- l := benchLogger{b}
- logger.AddLogSystem(l)
- return l
-}
-
-func (l benchLogger) LogPrint(msg logger.LogMsg) {
- l.b.Log(msg.String())
-}
-
-func (benchLogger) Detach() {
- logger.Flush()
- logger.Reset()
-}
diff --git a/blockpool/test/util.go b/blockpool/test/util.go
deleted file mode 100644
index 930601278..000000000
--- a/blockpool/test/util.go
+++ /dev/null
@@ -1,41 +0,0 @@
-package test
-
-import (
- "fmt"
- "testing"
- "time"
-)
-
-// miscellaneous test helpers
-
-func CheckInt(name string, got int, expected int, t *testing.T) (err error) {
- if got != expected {
- err = fmt.Errorf("status for %v incorrect. expected %v, got %v", name, expected, got)
- if t != nil {
- t.Error(err)
- }
- }
- return
-}
-
-func CheckDuration(name string, got time.Duration, expected time.Duration, t *testing.T) (err error) {
- if got != expected {
- err = fmt.Errorf("status for %v incorrect. expected %v, got %v", name, expected, got)
- if t != nil {
- t.Error(err)
- }
- }
- return
-}
-
-func ArrayEq(a, b []int) bool {
- if len(a) != len(b) {
- return false
- }
- for i := range a {
- if a[i] != b[i] {
- return false
- }
- }
- return true
-}