2018-08-13 07:48:32 +00:00
|
|
|
package mongodb
|
|
|
|
|
|
|
|
import (
|
|
|
|
"crypto/tls"
|
|
|
|
"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 TestMongoNor(t *testing.T) {
|
|
|
|
|
2018-09-03 13:36:57 +00:00
|
|
|
conn, err := net.Dial("tcp", "192.168.1.229:27036")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("ERR %s", err)
|
|
|
|
}
|
2018-08-13 07:48:32 +00:00
|
|
|
defer conn.Close()
|
|
|
|
|
2018-09-03 13:36:57 +00:00
|
|
|
matchCtx := osm.NewMatchCtx("192.168.1.229", 27036)
|
|
|
|
|
|
|
|
MongoRun(matchCtx, conn, t)
|
2018-08-13 07:48:32 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestMongoTLS(t *testing.T) {
|
2018-09-03 13:36:57 +00:00
|
|
|
conn, err := tls.Dial(
|
2018-08-13 07:48:32 +00:00
|
|
|
"tcp",
|
|
|
|
"192.168.1.229:27036",
|
|
|
|
&tls.Config{
|
|
|
|
InsecureSkipVerify: true,
|
|
|
|
ServerName: "192.168.1.229",
|
|
|
|
},
|
|
|
|
)
|
2018-09-03 13:36:57 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("ERR %s", err)
|
|
|
|
}
|
2018-08-13 07:48:32 +00:00
|
|
|
defer conn.Close()
|
|
|
|
|
2018-09-03 13:36:57 +00:00
|
|
|
matchCtx := osm.NewMatchCtx("192.168.1.229", 27036)
|
|
|
|
|
|
|
|
MongoRun(matchCtx, conn, t)
|
2018-08-13 07:48:32 +00:00
|
|
|
}
|
|
|
|
|
2018-09-03 13:36:57 +00:00
|
|
|
func MongoRun(matchCtx *osm.MatchCtx, conn net.Conn, t *testing.T) {
|
2018-08-13 07:48:32 +00:00
|
|
|
|
|
|
|
m := NewMatcher()
|
|
|
|
|
2018-09-03 13:36:57 +00:00
|
|
|
for i := 0; i < m.PacketCount(matchCtx); i++ {
|
2018-08-13 07:48:32 +00:00
|
|
|
|
2018-09-03 13:36:57 +00:00
|
|
|
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
|
|
|
|
|
|
|
if err := m.Match(nil, i, p); err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2018-09-03 13:36:57 +00:00
|
|
|
t.Log(m.Name(matchCtx))
|
|
|
|
t.Log(matchCtx)
|
2018-08-13 07:48:32 +00:00
|
|
|
}
|