service_matcher-go/echo/echo_test.go

42 lines
721 B
Go
Raw Normal View History

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