144 lines
3.3 KiB
Go
144 lines
3.3 KiB
Go
|
package tcp
|
||
|
|
||
|
import (
|
||
|
"reflect"
|
||
|
"testing"
|
||
|
|
||
|
omd "git.loafle.net/overflow/model/discovery"
|
||
|
omm "git.loafle.net/overflow/model/meta"
|
||
|
"git.loafle.net/overflow_scanner/probe/discovery/session"
|
||
|
"git.loafle.net/overflow_scanner/probe/discovery/types"
|
||
|
"git.loafle.net/overflow_scanner/probe/internal/pcap"
|
||
|
"github.com/google/gopacket/layers"
|
||
|
)
|
||
|
|
||
|
func Test_scanV4(t *testing.T) {
|
||
|
s := session.NewMockDiscoverySession(
|
||
|
"testRequester",
|
||
|
types.DiscoveryRequestTypeHost,
|
||
|
&omd.Zone{
|
||
|
Network: "192.168.1.0/24",
|
||
|
Iface: "enp3s0",
|
||
|
MetaIPType: omm.ToMetaIPType(omm.MetaIPTypeEnumV4),
|
||
|
Address: "192.168.1.101",
|
||
|
Mac: "44:8a:5b:f1:f1:f3",
|
||
|
},
|
||
|
&omd.DiscoverHost{
|
||
|
MetaIPType: omm.ToMetaIPType(omm.MetaIPTypeEnumV4),
|
||
|
FirstScanRange: "192.168.1.1",
|
||
|
LastScanRange: "192.168.1.254",
|
||
|
DiscoveryConfig: &omd.DiscoveryConfig{},
|
||
|
DiscoverPort: &omd.DiscoverPort{
|
||
|
FirstScanRange: 1,
|
||
|
LastScanRange: 1024,
|
||
|
IncludeTCP: true,
|
||
|
},
|
||
|
},
|
||
|
)
|
||
|
|
||
|
targetHost := &omd.Host{
|
||
|
MetaIPType: omm.ToMetaIPType(omm.MetaIPTypeEnumV4),
|
||
|
Name: "atGame",
|
||
|
Address: "192.168.1.1",
|
||
|
Mac: "00:11:32:7f:20:61",
|
||
|
Zone: s.Zone(),
|
||
|
}
|
||
|
|
||
|
type args struct {
|
||
|
discoverySession session.DiscoverySession
|
||
|
targetHost *omd.Host
|
||
|
}
|
||
|
tests := []struct {
|
||
|
name string
|
||
|
args args
|
||
|
wantErr bool
|
||
|
}{
|
||
|
{
|
||
|
name: "1",
|
||
|
args: args{
|
||
|
discoverySession: s,
|
||
|
targetHost: targetHost,
|
||
|
},
|
||
|
wantErr: false,
|
||
|
},
|
||
|
}
|
||
|
for _, tt := range tests {
|
||
|
t.Run(tt.name, func(t *testing.T) {
|
||
|
if err := scanV4(tt.args.discoverySession, tt.args.targetHost); (err != nil) != tt.wantErr {
|
||
|
t.Errorf("scanV4() error = %v, wantErr %v", err, tt.wantErr)
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func Test_sendTCP4(t *testing.T) {
|
||
|
type args struct {
|
||
|
discoverySession session.DiscoverySession
|
||
|
ps pcap.PCapScanner
|
||
|
host *omd.Host
|
||
|
}
|
||
|
tests := []struct {
|
||
|
name string
|
||
|
args args
|
||
|
wantErr bool
|
||
|
}{
|
||
|
// TODO: Add test cases.
|
||
|
}
|
||
|
for _, tt := range tests {
|
||
|
t.Run(tt.name, func(t *testing.T) {
|
||
|
if err := sendTCP4(tt.args.discoverySession, tt.args.ps, tt.args.host); (err != nil) != tt.wantErr {
|
||
|
t.Errorf("sendTCP4() error = %v, wantErr %v", err, tt.wantErr)
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func Test_handlePacketTCP4(t *testing.T) {
|
||
|
type args struct {
|
||
|
discoverySession session.DiscoverySession
|
||
|
host *omd.Host
|
||
|
ports map[int]*omd.Port
|
||
|
packet *layers.TCP
|
||
|
}
|
||
|
tests := []struct {
|
||
|
name string
|
||
|
args args
|
||
|
want *omd.Port
|
||
|
}{
|
||
|
// TODO: Add test cases.
|
||
|
}
|
||
|
for _, tt := range tests {
|
||
|
t.Run(tt.name, func(t *testing.T) {
|
||
|
if got := handlePacketTCP4(tt.args.discoverySession, tt.args.host, tt.args.ports, tt.args.packet); !reflect.DeepEqual(got, tt.want) {
|
||
|
t.Errorf("handlePacketTCP4() = %v, want %v", got, tt.want)
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func Test_makePacketPortTCP4(t *testing.T) {
|
||
|
type args struct {
|
||
|
host *omd.Host
|
||
|
}
|
||
|
tests := []struct {
|
||
|
name string
|
||
|
args args
|
||
|
want *PortPacketTCP4
|
||
|
wantErr bool
|
||
|
}{
|
||
|
// TODO: Add test cases.
|
||
|
}
|
||
|
for _, tt := range tests {
|
||
|
t.Run(tt.name, func(t *testing.T) {
|
||
|
got, err := makePacketPortTCP4(tt.args.host)
|
||
|
if (err != nil) != tt.wantErr {
|
||
|
t.Errorf("makePacketPortTCP4() error = %v, wantErr %v", err, tt.wantErr)
|
||
|
return
|
||
|
}
|
||
|
if !reflect.DeepEqual(got, tt.want) {
|
||
|
t.Errorf("makePacketPortTCP4() = %v, want %v", got, tt.want)
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
}
|