2021-05-21 14:55:42 +03:00
|
|
|
//go:build linux
|
2021-06-15 19:42:41 +03:00
|
|
|
// +build linux
|
2021-05-21 14:55:42 +03:00
|
|
|
|
2021-03-16 19:42:15 +03:00
|
|
|
package aghnet
|
2020-12-07 19:48:24 +03:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2021-01-13 16:56:05 +03:00
|
|
|
"net"
|
2020-12-07 19:48:24 +03:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
2021-02-09 19:38:31 +03:00
|
|
|
"github.com/stretchr/testify/require"
|
2020-12-07 19:48:24 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
const nl = "\n"
|
|
|
|
|
|
|
|
func TestDHCPCDStaticConfig(t *testing.T) {
|
|
|
|
testCases := []struct {
|
|
|
|
name string
|
|
|
|
data []byte
|
|
|
|
want bool
|
|
|
|
}{{
|
|
|
|
name: "has_not",
|
|
|
|
data: []byte(`#comment` + nl +
|
|
|
|
`# comment` + nl +
|
|
|
|
`interface eth0` + nl +
|
|
|
|
`static ip_address=192.168.0.1/24` + nl +
|
|
|
|
`# interface wlan0` + nl +
|
|
|
|
`static ip_address=192.168.1.1/24` + nl +
|
|
|
|
`# comment` + nl,
|
|
|
|
),
|
|
|
|
want: false,
|
|
|
|
}, {
|
|
|
|
name: "has",
|
|
|
|
data: []byte(`#comment` + nl +
|
|
|
|
`# comment` + nl +
|
|
|
|
`interface eth0` + nl +
|
|
|
|
`static ip_address=192.168.0.1/24` + nl +
|
|
|
|
`# interface wlan0` + nl +
|
|
|
|
`static ip_address=192.168.1.1/24` + nl +
|
|
|
|
`# comment` + nl +
|
|
|
|
`interface wlan0` + nl +
|
|
|
|
`# comment` + nl +
|
|
|
|
`static ip_address=192.168.2.1/24` + nl,
|
|
|
|
),
|
|
|
|
want: true,
|
|
|
|
}}
|
|
|
|
|
|
|
|
for _, tc := range testCases {
|
|
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
|
|
r := bytes.NewReader(tc.data)
|
|
|
|
has, err := dhcpcdStaticConfig(r, "wlan0")
|
2021-03-25 18:03:29 +03:00
|
|
|
require.NoError(t, err)
|
|
|
|
|
2020-12-07 19:48:24 +03:00
|
|
|
assert.Equal(t, tc.want, has)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestIfacesStaticConfig(t *testing.T) {
|
|
|
|
testCases := []struct {
|
|
|
|
name string
|
|
|
|
data []byte
|
|
|
|
want bool
|
|
|
|
}{{
|
|
|
|
name: "has_not",
|
|
|
|
data: []byte(`allow-hotplug enp0s3` + nl +
|
|
|
|
`#iface enp0s3 inet static` + nl +
|
|
|
|
`# address 192.168.0.200` + nl +
|
|
|
|
`# netmask 255.255.255.0` + nl +
|
|
|
|
`# gateway 192.168.0.1` + nl +
|
|
|
|
`iface enp0s3 inet dhcp` + nl,
|
|
|
|
),
|
|
|
|
want: false,
|
|
|
|
}, {
|
|
|
|
name: "has",
|
|
|
|
data: []byte(`allow-hotplug enp0s3` + nl +
|
|
|
|
`iface enp0s3 inet static` + nl +
|
|
|
|
` address 192.168.0.200` + nl +
|
|
|
|
` netmask 255.255.255.0` + nl +
|
|
|
|
` gateway 192.168.0.1` + nl +
|
|
|
|
`#iface enp0s3 inet dhcp` + nl,
|
|
|
|
),
|
|
|
|
want: true,
|
|
|
|
}}
|
|
|
|
|
|
|
|
for _, tc := range testCases {
|
|
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
|
|
r := bytes.NewReader(tc.data)
|
|
|
|
has, err := ifacesStaticConfig(r, "enp0s3")
|
2021-03-25 18:03:29 +03:00
|
|
|
require.NoError(t, err)
|
|
|
|
|
2020-12-07 19:48:24 +03:00
|
|
|
assert.Equal(t, tc.want, has)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSetStaticIPdhcpcdConf(t *testing.T) {
|
2021-02-09 19:38:31 +03:00
|
|
|
testCases := []struct {
|
|
|
|
name string
|
|
|
|
dhcpcdConf string
|
|
|
|
routers net.IP
|
|
|
|
}{{
|
|
|
|
name: "with_gateway",
|
2021-06-15 20:01:38 +03:00
|
|
|
dhcpcdConf: nl + `# wlan0 added by AdGuard Home.` + nl +
|
|
|
|
`interface wlan0` + nl +
|
2021-02-09 19:38:31 +03:00
|
|
|
`static ip_address=192.168.0.2/24` + nl +
|
|
|
|
`static routers=192.168.0.1` + nl +
|
|
|
|
`static domain_name_servers=192.168.0.2` + nl + nl,
|
|
|
|
routers: net.IP{192, 168, 0, 1},
|
|
|
|
}, {
|
|
|
|
name: "without_gateway",
|
2021-06-15 20:01:38 +03:00
|
|
|
dhcpcdConf: nl + `# wlan0 added by AdGuard Home.` + nl +
|
|
|
|
`interface wlan0` + nl +
|
2021-02-09 19:38:31 +03:00
|
|
|
`static ip_address=192.168.0.2/24` + nl +
|
|
|
|
`static domain_name_servers=192.168.0.2` + nl + nl,
|
|
|
|
routers: nil,
|
|
|
|
}}
|
2020-12-07 19:48:24 +03:00
|
|
|
|
2021-06-15 20:01:38 +03:00
|
|
|
ipNet := &net.IPNet{
|
|
|
|
IP: net.IP{192, 168, 0, 2},
|
|
|
|
Mask: net.IPMask{255, 255, 255, 0},
|
|
|
|
}
|
|
|
|
|
2021-02-09 19:38:31 +03:00
|
|
|
for _, tc := range testCases {
|
|
|
|
t.Run(tc.name, func(t *testing.T) {
|
2021-06-15 20:01:38 +03:00
|
|
|
s := dhcpcdConfIface("wlan0", ipNet, tc.routers, net.IP{192, 168, 0, 2})
|
2021-02-09 19:38:31 +03:00
|
|
|
assert.Equal(t, tc.dhcpcdConf, s)
|
|
|
|
})
|
|
|
|
}
|
2020-12-07 19:48:24 +03:00
|
|
|
}
|