Fix hub tests.

This commit is contained in:
Blallo 2019-04-01 16:57:09 +02:00
parent aef8a277e5
commit c5eee0ea22
No known key found for this signature in database
GPG key ID: 0CBE577C9B72DC3F

View file

@ -3,11 +3,12 @@ package circolog
import (
"testing"
"git.lattuga.net/boyska/circolog/data"
"gopkg.in/mcuadros/go-syslog.v2/format"
)
func msg(s string) format.LogParts {
return format.LogParts{"text": s}
return format.LogParts{"content": s}
}
func hubCount(h Hub) int {
@ -19,10 +20,10 @@ var DefaultClient ClientOptions = ClientOptions{Nofollow: true, BacklogLength: -
func hubToArrayOpt(h Hub, opt ClientOptions) []string {
r := make([]string, 0)
cl := Client{Options: opt}
cl.Messages = make(chan format.LogParts)
cl.Messages = make(chan data.Message)
h.Register <- cl
for m := range cl.Messages {
r = append(r, m["text"].(string))
r = append(r, m["msg"].(string))
}
return r
}