service_matcher-go/activedirectory/activedirectory_test.go

37 lines
621 B
Go
Raw Permalink Normal View History

2018-08-13 07:48:32 +00:00
package activedirectory
import (
"net"
"testing"
2018-08-15 07:17:18 +00:00
osm "git.loafle.net/overflow/service_matcher-go"
2018-08-13 07:48:32 +00:00
)
func TestAD(t *testing.T) {
m := NewMatcher()
conn, err := net.Dial("tcp", "192.168.1.10:10389")
if err != nil {
t.Error(err)
return
}
defer conn.Close()
2018-09-03 13:36:57 +00:00
matchCtx := osm.NewMatchCtx("192.168.1.10", 10389)
2018-08-13 07:48:32 +00:00
2018-09-03 13:36:57 +00:00
for i := 0; i < m.PacketCount(matchCtx); i++ {
pack := m.Packet(matchCtx, i)
2018-08-13 07:48:32 +00:00
conn.Write(pack.Buffer)
bytes := make([]byte, 1024)
n, _ := conn.Read(bytes)
2018-08-15 07:17:18 +00:00
p := osm.NewPacket(bytes, n)
2018-08-13 07:48:32 +00:00
2018-09-03 13:36:57 +00:00
if err := m.Match(matchCtx, i, p); err != nil {
2018-08-13 07:48:32 +00:00
t.Error(err)
}
}
2018-09-03 13:36:57 +00:00
t.Log(m.Name(matchCtx))
2018-08-13 07:48:32 +00:00
}