2021-03-16 09:42:15 -07:00
|
|
|
package aghnet
|
2019-02-22 07:59:42 -07:00
|
|
|
|
|
|
|
import (
|
2021-08-12 07:33:53 -07:00
|
|
|
"net"
|
2019-02-22 07:59:42 -07:00
|
|
|
"testing"
|
2021-02-09 09:38:31 -07:00
|
|
|
|
2021-10-14 09:39:21 -07:00
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/aghtest"
|
2021-08-12 07:33:53 -07:00
|
|
|
"github.com/stretchr/testify/assert"
|
2021-02-09 09:38:31 -07:00
|
|
|
"github.com/stretchr/testify/require"
|
2019-02-22 07:59:42 -07:00
|
|
|
)
|
|
|
|
|
2021-10-14 09:39:21 -07:00
|
|
|
func TestMain(m *testing.M) {
|
|
|
|
aghtest.DiscardLogOutput(m)
|
|
|
|
}
|
|
|
|
|
2019-02-22 07:59:42 -07:00
|
|
|
func TestGetValidNetInterfacesForWeb(t *testing.T) {
|
2020-02-13 08:42:07 -07:00
|
|
|
ifaces, err := GetValidNetInterfacesForWeb()
|
2021-03-25 08:03:29 -07:00
|
|
|
require.NoErrorf(t, err, "cannot get net interfaces: %s", err)
|
|
|
|
require.NotEmpty(t, ifaces, "no net interfaces found")
|
2019-02-22 07:59:42 -07:00
|
|
|
for _, iface := range ifaces {
|
2021-03-25 08:03:29 -07:00
|
|
|
require.NotEmptyf(t, iface.Addresses, "no addresses found for %s", iface.Name)
|
2019-02-22 07:59:42 -07:00
|
|
|
}
|
|
|
|
}
|
2021-08-12 07:33:53 -07:00
|
|
|
|
|
|
|
func TestBroadcastFromIPNet(t *testing.T) {
|
|
|
|
known6 := net.IP{
|
|
|
|
1, 2, 3, 4,
|
|
|
|
5, 6, 7, 8,
|
|
|
|
9, 10, 11, 12,
|
|
|
|
13, 14, 15, 16,
|
|
|
|
}
|
|
|
|
|
|
|
|
testCases := []struct {
|
|
|
|
name string
|
|
|
|
subnet *net.IPNet
|
|
|
|
want net.IP
|
|
|
|
}{{
|
|
|
|
name: "full",
|
|
|
|
subnet: &net.IPNet{
|
|
|
|
IP: net.IP{192, 168, 0, 1},
|
|
|
|
Mask: net.IPMask{255, 255, 15, 0},
|
|
|
|
},
|
|
|
|
want: net.IP{192, 168, 240, 255},
|
|
|
|
}, {
|
|
|
|
name: "ipv6_no_mask",
|
|
|
|
subnet: &net.IPNet{
|
|
|
|
IP: known6,
|
|
|
|
},
|
|
|
|
want: known6,
|
|
|
|
}, {
|
|
|
|
name: "ipv4_no_mask",
|
|
|
|
subnet: &net.IPNet{
|
|
|
|
IP: net.IP{192, 168, 1, 2},
|
|
|
|
},
|
|
|
|
want: net.IP{192, 168, 1, 255},
|
|
|
|
}, {
|
|
|
|
name: "unspecified",
|
|
|
|
subnet: &net.IPNet{
|
|
|
|
IP: net.IP{0, 0, 0, 0},
|
|
|
|
Mask: net.IPMask{0, 0, 0, 0},
|
|
|
|
},
|
|
|
|
want: net.IPv4bcast,
|
|
|
|
}}
|
|
|
|
|
|
|
|
for _, tc := range testCases {
|
|
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
|
|
bc := BroadcastFromIPNet(tc.subnet)
|
|
|
|
assert.True(t, bc.Equal(tc.want), bc)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|