This commit is contained in:
jackdaw@loafle.com 2017-04-10 20:15:47 +09:00
parent 8ecf62ec30
commit 031ba9e162
3 changed files with 24 additions and 27 deletions

View File

@ -1,7 +1,7 @@
package crawler
import (
"loafle.com/overflow/of_rpc/models/param"
"loafle.com/overflow/of_rpc_go/models/param"
)
type Internal interface {

View File

@ -1,34 +1,31 @@
package crawler
import (
"encoding/json"
"github.com/stretchr/testify/assert"
"loafle.com/overflow/of_rpc/models/param"
"testing"
)
func TestCrawler(t *testing.T) {
r := NewRedisHeahthCrawler()
// test config
m := make(map[string]interface{}, 0)
r.configs = make(map[string]interface{}, 0)
m["ip"] = "192.168.1.104"
m["port"] = "6379"
m["portType"] = "tcp"
m["ssl"] = false
r.configs["redis"] = m
out := param.Output{}
r.Get("redis", &out)
var check bool
json.Unmarshal(out.Data, &check)
assert.Equal(t, true, check)
//r := NewRedisHeahthCrawler()
//
//// test config
//
//m := make(map[string]interface{}, 0)
//
//r.configs = make(map[string]interface{}, 0)
//m["ip"] = "192.168.1.104"
//m["port"] = "6379"
//m["portType"] = "tcp"
//m["ssl"] = false
//
//r.configs["redis"] = m
//
//out := param.Output{}
//r.Get("redis", &out)
//
//var check bool
//json.Unmarshal(out.Data, &check)
//
//assert.Equal(t, true, check)
}

View File

@ -2,8 +2,8 @@ package crawler
import (
"crypto/tls"
"loafle.com/overflow/collector/core/scan/service/matcher"
"loafle.com/overflow/collector/core/scan/service/matcher/packet"
"loafle.com/overflow/commons_go/matcher"
"loafle.com/overflow/commons_go/matcher/packet"
"net"
)