service_matcher-go/elasticsearch/elasticsearch_test.go
crusader 1ae4509bc6 ing
2018-09-18 12:42:15 +09:00

37 lines
661 B
Go

package elasticsearch
import (
"net"
"testing"
osm "git.loafle.net/overflow/service_matcher-go"
)
func TestES(t *testing.T) {
m := NewMatcher()
conn, err := net.Dial("tcp", "localhost:9200")
if err != nil {
t.Errorf("ERR %s", err)
}
defer conn.Close()
matchCtx := osm.NewMatchCtx("localhost", 9200)
for i := 0; i < m.PacketCount(matchCtx); i++ {
_, err := conn.Write(m.Packet(matchCtx, i).Buffer)
if err != nil {
t.Error(err)
}
bytes := make([]byte, 1024)
n, _ := conn.Read(bytes)
p := osm.NewPacket(bytes, n)
if err := m.Match(matchCtx, i, p); err != nil {
t.Error(err)
}
}
t.Log(m.Name(matchCtx))
t.Log(matchCtx)
}