yanic/respond/collector_test.go

44 lines
807 B
Go
Raw Normal View History

2016-03-19 15:07:44 +01:00
package respond
import (
"io/ioutil"
"testing"
"time"
2016-03-19 15:07:44 +01:00
"github.com/FreifunkBremen/yanic/runtime"
2016-03-19 15:07:44 +01:00
"github.com/stretchr/testify/assert"
)
const (
SITE_TEST = "ffhb"
DOMAIN_TEST = "city"
)
func TestCollector(t *testing.T) {
nodes := runtime.NewNodes(&runtime.NodesConfig{})
collector := NewCollector(nil, nodes, map[string][]string{SITE_TEST: {DOMAIN_TEST}}, []InterfaceConfig{})
collector.Start(time.Millisecond)
time.Sleep(time.Millisecond * 10)
collector.Close()
}
2016-03-19 15:07:44 +01:00
func TestParse(t *testing.T) {
assert := assert.New(t)
// read testdata
compressed, err := ioutil.ReadFile("testdata/nodeinfo.flated")
assert.Nil(err)
2016-10-03 19:55:37 +02:00
res := &Response{
2016-03-19 15:07:44 +01:00
Raw: compressed,
2016-10-03 19:55:37 +02:00
}
data, err := res.parse()
assert.NoError(err)
assert.NotNil(data)
2016-03-19 15:07:44 +01:00
assert.Equal("f81a67a5e9c1", data.NodeInfo.NodeID)
2016-03-19 15:07:44 +01:00
}