package v2 import ( "encoding/json" "testing" ocsm "git.loafle.net/overflow/commons-go/sensorconfig/model" "github.com/stretchr/testify/assert" ) func TestMatch(t *testing.T) { config := &ocsm.SensorConfig{} config.Target = &ocsm.Target{} config.Target.Connection = &ocsm.Connection{ IP: "192.168.1.215", Port: json.Number(161), PortType: "udp", SSL: false, } c := NewCrawler() rss, err := c.Get(config) assert.Nil(t, err) assert.NotNil(t, rss) }