33 lines
475 B
Go
33 lines
475 B
Go
package protected
|
|
|
|
//import (
|
|
// "net"
|
|
// "testing"
|
|
//)
|
|
//
|
|
//func TestRedisProtected(t *testing.T) {
|
|
//
|
|
// m := NewRedisProtectedMatcher()
|
|
//
|
|
// conn, err := net.Dial("tcp", "192.168.1.215:8379")
|
|
//
|
|
// if err != nil {
|
|
// t.Log(err)
|
|
// return
|
|
// }
|
|
//
|
|
// defer conn.Close()
|
|
//
|
|
// bytes := make([]byte, 1024)
|
|
// n, _ := conn.Read(bytes)
|
|
//
|
|
// //fmt.Println(string(bytes[:n]))
|
|
//
|
|
// b := m.Match(0, matcher.NewPacket(bytes, n), nil)
|
|
//
|
|
// if b {
|
|
// t.Log("good!")
|
|
// }
|
|
//
|
|
//}
|