aboutsummaryrefslogtreecommitdiffstats
path: root/eth/protocol_test.go
diff options
context:
space:
mode:
authorzelig <viktor.tron@gmail.com>2015-03-28 09:54:23 +0800
committerzelig <viktor.tron@gmail.com>2015-04-01 19:32:42 +0800
commitd677190f3916c5bee276d9abba69814022ab967f (patch)
tree46ef9520e9d6d5d64b11a4b7bc38bb2711c464a6 /eth/protocol_test.go
parente1be34bce1ddf662bca58a37a6f38fea63a2a70f (diff)
downloadgo-tangerine-d677190f3916c5bee276d9abba69814022ab967f.tar
go-tangerine-d677190f3916c5bee276d9abba69814022ab967f.tar.gz
go-tangerine-d677190f3916c5bee276d9abba69814022ab967f.tar.bz2
go-tangerine-d677190f3916c5bee276d9abba69814022ab967f.tar.lz
go-tangerine-d677190f3916c5bee276d9abba69814022ab967f.tar.xz
go-tangerine-d677190f3916c5bee276d9abba69814022ab967f.tar.zst
go-tangerine-d677190f3916c5bee276d9abba69814022ab967f.zip
add tests for valid blocks msg handling
Diffstat (limited to 'eth/protocol_test.go')
-rw-r--r--eth/protocol_test.go50
1 files changed, 46 insertions, 4 deletions
diff --git a/eth/protocol_test.go b/eth/protocol_test.go
index 7831e9bc6..d5ac21755 100644
--- a/eth/protocol_test.go
+++ b/eth/protocol_test.go
@@ -229,10 +229,6 @@ func TestStatusMsgErrors(t *testing.T) {
func TestNewBlockMsg(t *testing.T) {
logInit()
eth := newEth(t)
- eth.blockPool.addBlock = func(block *types.Block, peerId string) (err error) {
- fmt.Printf("Add Block: %v\n", block)
- return
- }
var disconnected bool
eth.blockPool.removePeer = func(peerId string) {
@@ -295,3 +291,49 @@ func TestNewBlockMsg(t *testing.T) {
eth.checkError(ErrDecode, delay)
}
+
+func TestBlockMsg(t *testing.T) {
+ logInit()
+ eth := newEth(t)
+ blocks := make(chan *types.Block)
+ eth.blockPool.addBlock = func(block *types.Block, peerId string) (err error) {
+ blocks <- block
+ return
+ }
+
+ var disconnected bool
+ eth.blockPool.removePeer = func(peerId string) {
+ fmt.Printf("peer <%s> is disconnected\n", peerId)
+ disconnected = true
+ }
+
+ go eth.run()
+
+ eth.handshake(t, true)
+ err := p2p.ExpectMsg(eth, TxMsg, []interface{}{})
+ if err != nil {
+ t.Errorf("transactions expected, got %v", err)
+ }
+
+ var delay = 3 * time.Second
+ // eth.reset()
+ newblock := func(i int64) *types.Block {
+ return types.NewBlock(common.Hash{byte(i)}, common.Address{byte(i)}, common.Hash{byte(i)}, big.NewInt(i), uint64(i), string(i))
+ }
+ go p2p.Send(eth, BlocksMsg, types.Blocks{newblock(0), newblock(1), newblock(2)})
+ timer := time.After(delay)
+ for i := int64(0); i < 3; i++ {
+ select {
+ case block := <-blocks:
+ if (block.ParentHash() != common.Hash{byte(i)}) {
+ t.Errorf("incorrect block %v, expected %v", block.ParentHash(), common.Hash{byte(i)})
+ }
+ case <-timer:
+ t.Errorf("no td recorded after %v", delay)
+ return
+ case err := <-eth.quit:
+ t.Errorf("no error expected, got %v", err)
+ return
+ }
+ }
+}