add test for node start/stop (failing)

This commit is contained in:
Ethan Buchman 2015-07-21 18:15:40 -04:00
parent 7aaa33217d
commit 5f0cf31eda
1 changed files with 36 additions and 0 deletions

36
node/node_test.go Normal file
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")
}
}