service_matcher-go/echo/echo_test.go
crusader ae4182b89e ing
2018-10-23 11:44:37 +09:00

42 lines
721 B
Go

package echo
import (
"net"
"strconv"
"testing"
osm "git.loafle.net/overflow/service_matcher-go"
)
func TestEchoMatcher(t *testing.T) {
ip := "192.168.100.99"
port := 7
m := NewMatcher()
conn, err := net.Dial("tcp", net.JoinHostPort(ip, strconv.Itoa(port)))
if err != nil {
t.Error(err)
return
}
defer conn.Close()
matchCtx := osm.NewMatchCtx(ip, port)
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)
}