Browse Source

add test for node start/stop (failing)

pull/119/head
Ethan Buchman 10 years ago
parent
commit
5f0cf31eda
1 changed files with 36 additions and 0 deletions
  1. +36
    -0
      node/node_test.go

+ 36
- 0
node/node_test.go View File

@ -0,0 +1,36 @@
package node
import (
"testing"
"time"
cfg "github.com/tendermint/tendermint/config"
tmcfg "github.com/tendermint/tendermint/config/tendermint"
"github.com/tendermint/tendermint/p2p"
)
func init() {
config := tmcfg.GetConfig("")
cfg.ApplyConfig(config)
}
func TestNodeStartStop(t *testing.T) {
// Create & start node
n := NewNode()
l := p2p.NewDefaultListener("tcp", config.GetString("node_laddr"), false)
n.AddListener(l)
n.Start()
log.Notice("Started node", "nodeInfo", n.sw.NodeInfo())
time.Sleep(time.Second * 2)
ch := make(chan struct{}, 1)
go func() {
n.Stop()
ch <- struct{}{}
}()
ticker := time.NewTicker(time.Second * 5)
select {
case <-ch:
case <-ticker.C:
t.Fatal("timed out waiting for shutdown")
}
}

Loading…
Cancel
Save