2018-09-17 16:25:56 +00:00
|
|
|
package connection
|
|
|
|
|
|
|
|
import (
|
2018-09-21 16:18:59 +00:00
|
|
|
"encoding/json"
|
|
|
|
"log"
|
2018-09-17 16:25:56 +00:00
|
|
|
"net"
|
|
|
|
"reflect"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
omd "git.loafle.net/overflow/model/discovery"
|
2018-09-17 23:08:58 +00:00
|
|
|
omm "git.loafle.net/overflow/model/meta"
|
2018-09-17 16:25:56 +00:00
|
|
|
ounp "git.loafle.net/overflow/util-go/net/ping"
|
2018-09-17 23:08:58 +00:00
|
|
|
"git.loafle.net/overflow_scanner/probe/__test"
|
2018-09-17 16:25:56 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestPing(t *testing.T) {
|
2018-09-17 23:08:58 +00:00
|
|
|
targetHost := __test.Host(
|
|
|
|
"",
|
2018-09-21 16:18:59 +00:00
|
|
|
"234",
|
|
|
|
"d0:7e:35:da:26:68",
|
2018-09-17 23:08:58 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
targetPort := __test.Port(
|
|
|
|
targetHost,
|
2018-09-21 16:18:59 +00:00
|
|
|
139,
|
2018-09-17 23:08:58 +00:00
|
|
|
)
|
|
|
|
|
2018-09-17 16:25:56 +00:00
|
|
|
type args struct {
|
|
|
|
service *omd.Service
|
|
|
|
pingOption ounp.Option
|
|
|
|
}
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
args args
|
|
|
|
want ounp.Result
|
|
|
|
wantErr bool
|
|
|
|
}{
|
2018-09-17 23:08:58 +00:00
|
|
|
{
|
|
|
|
name: "192.168.1.99",
|
|
|
|
args: args{
|
|
|
|
service: __test.Service(
|
|
|
|
targetPort,
|
|
|
|
omm.MetaCryptoTypeEnumNONE,
|
|
|
|
"",
|
|
|
|
),
|
|
|
|
pingOption: &ounp.PingOption{
|
2018-09-20 05:57:30 +00:00
|
|
|
Count: 3,
|
2018-09-17 23:08:58 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2018-09-17 16:25:56 +00:00
|
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
|
|
got, err := Ping(tt.args.service, tt.args.pingOption)
|
|
|
|
if (err != nil) != tt.wantErr {
|
|
|
|
t.Errorf("Ping() error = %v, wantErr %v", err, tt.wantErr)
|
|
|
|
return
|
|
|
|
}
|
2018-09-21 16:18:59 +00:00
|
|
|
|
|
|
|
_buf, _ := json.Marshal(got)
|
|
|
|
log.Print(string(_buf))
|
|
|
|
|
2018-09-17 16:25:56 +00:00
|
|
|
if !reflect.DeepEqual(got, tt.want) {
|
|
|
|
t.Errorf("Ping() = %v, want %v", got, tt.want)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func Test_getConnection(t *testing.T) {
|
|
|
|
type args struct {
|
|
|
|
service *omd.Service
|
|
|
|
pingOption ounp.Option
|
|
|
|
}
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
args args
|
|
|
|
want net.Conn
|
|
|
|
wantErr bool
|
|
|
|
}{
|
|
|
|
// TODO: Add test cases.
|
|
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
|
|
got, err := getConnection(tt.args.service, tt.args.pingOption)
|
|
|
|
if (err != nil) != tt.wantErr {
|
|
|
|
t.Errorf("getConnection() error = %v, wantErr %v", err, tt.wantErr)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if !reflect.DeepEqual(got, tt.want) {
|
|
|
|
t.Errorf("getConnection() = %v, want %v", got, tt.want)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|