2021-05-21 04:55:42 -07:00
|
|
|
//go:build linux
|
2021-06-15 09:42:41 -07:00
|
|
|
// +build linux
|
2021-05-21 04:55:42 -07:00
|
|
|
|
2021-03-16 09:42:15 -07:00
|
|
|
package aghnet
|
2020-12-07 09:48:24 -07:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2021-01-13 06:56:05 -07:00
|
|
|
"net"
|
2020-12-07 09:48:24 -07:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
2021-02-09 09:38:31 -07:00
|
|
|
"github.com/stretchr/testify/require"
|
2020-12-07 09:48:24 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestDHCPCDStaticConfig(t *testing.T) {
|
2021-08-13 09:20:17 -07:00
|
|
|
const iface interfaceName = `wlan0`
|
|
|
|
|
2020-12-07 09:48:24 -07:00
|
|
|
testCases := []struct {
|
2021-08-13 09:20:17 -07:00
|
|
|
name string
|
|
|
|
data []byte
|
|
|
|
wantCont bool
|
2020-12-07 09:48:24 -07:00
|
|
|
}{{
|
|
|
|
name: "has_not",
|
|
|
|
data: []byte(`#comment` + nl +
|
|
|
|
`# comment` + nl +
|
|
|
|
`interface eth0` + nl +
|
|
|
|
`static ip_address=192.168.0.1/24` + nl +
|
2021-08-13 09:20:17 -07:00
|
|
|
`# interface ` + iface + nl +
|
2020-12-07 09:48:24 -07:00
|
|
|
`static ip_address=192.168.1.1/24` + nl +
|
|
|
|
`# comment` + nl,
|
|
|
|
),
|
2021-08-13 09:20:17 -07:00
|
|
|
wantCont: true,
|
2020-12-07 09:48:24 -07:00
|
|
|
}, {
|
|
|
|
name: "has",
|
|
|
|
data: []byte(`#comment` + nl +
|
|
|
|
`# comment` + nl +
|
|
|
|
`interface eth0` + nl +
|
|
|
|
`static ip_address=192.168.0.1/24` + nl +
|
2021-08-13 09:20:17 -07:00
|
|
|
`# interface ` + iface + nl +
|
2020-12-07 09:48:24 -07:00
|
|
|
`static ip_address=192.168.1.1/24` + nl +
|
|
|
|
`# comment` + nl +
|
2021-08-13 09:20:17 -07:00
|
|
|
`interface ` + iface + nl +
|
2020-12-07 09:48:24 -07:00
|
|
|
`# comment` + nl +
|
|
|
|
`static ip_address=192.168.2.1/24` + nl,
|
|
|
|
),
|
2021-08-13 09:20:17 -07:00
|
|
|
wantCont: false,
|
2020-12-07 09:48:24 -07:00
|
|
|
}}
|
|
|
|
|
|
|
|
for _, tc := range testCases {
|
|
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
|
|
r := bytes.NewReader(tc.data)
|
2021-08-13 09:20:17 -07:00
|
|
|
_, cont, err := iface.dhcpcdStaticConfig(r)
|
2021-03-25 08:03:29 -07:00
|
|
|
require.NoError(t, err)
|
|
|
|
|
2021-08-13 09:20:17 -07:00
|
|
|
assert.Equal(t, tc.wantCont, cont)
|
2020-12-07 09:48:24 -07:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestIfacesStaticConfig(t *testing.T) {
|
2021-08-13 09:20:17 -07:00
|
|
|
const iface interfaceName = `enp0s3`
|
|
|
|
|
2020-12-07 09:48:24 -07:00
|
|
|
testCases := []struct {
|
2021-06-28 07:02:45 -07:00
|
|
|
name string
|
|
|
|
data []byte
|
2021-08-13 09:20:17 -07:00
|
|
|
wantCont bool
|
2021-06-28 07:02:45 -07:00
|
|
|
wantPatterns []string
|
2020-12-07 09:48:24 -07:00
|
|
|
}{{
|
|
|
|
name: "has_not",
|
2021-08-13 09:20:17 -07:00
|
|
|
data: []byte(`allow-hotplug ` + iface + nl +
|
2020-12-07 09:48:24 -07:00
|
|
|
`#iface enp0s3 inet static` + nl +
|
|
|
|
`# address 192.168.0.200` + nl +
|
|
|
|
`# netmask 255.255.255.0` + nl +
|
|
|
|
`# gateway 192.168.0.1` + nl +
|
2021-08-13 09:20:17 -07:00
|
|
|
`iface ` + iface + ` inet dhcp` + nl,
|
2020-12-07 09:48:24 -07:00
|
|
|
),
|
2021-08-13 09:20:17 -07:00
|
|
|
wantCont: true,
|
2021-06-28 07:02:45 -07:00
|
|
|
wantPatterns: []string{},
|
2020-12-07 09:48:24 -07:00
|
|
|
}, {
|
|
|
|
name: "has",
|
2021-08-13 09:20:17 -07:00
|
|
|
data: []byte(`allow-hotplug ` + iface + nl +
|
|
|
|
`iface ` + iface + ` inet static` + nl +
|
2020-12-07 09:48:24 -07:00
|
|
|
` address 192.168.0.200` + nl +
|
|
|
|
` netmask 255.255.255.0` + nl +
|
|
|
|
` gateway 192.168.0.1` + nl +
|
2021-08-13 09:20:17 -07:00
|
|
|
`#iface ` + iface + ` inet dhcp` + nl,
|
2020-12-07 09:48:24 -07:00
|
|
|
),
|
2021-08-13 09:20:17 -07:00
|
|
|
wantCont: false,
|
2021-06-28 07:02:45 -07:00
|
|
|
wantPatterns: []string{},
|
|
|
|
}, {
|
|
|
|
name: "return_patterns",
|
|
|
|
data: []byte(`source hello` + nl +
|
|
|
|
`source world` + nl +
|
2021-08-13 09:20:17 -07:00
|
|
|
`#iface ` + iface + ` inet static` + nl,
|
2021-06-28 07:02:45 -07:00
|
|
|
),
|
2021-08-13 09:20:17 -07:00
|
|
|
wantCont: true,
|
2021-06-28 07:02:45 -07:00
|
|
|
wantPatterns: []string{"hello", "world"},
|
|
|
|
}, {
|
|
|
|
// This one tests if the first found valid interface prevents
|
|
|
|
// checking files under the `source` directive.
|
|
|
|
name: "ignore_patterns",
|
|
|
|
data: []byte(`source hello` + nl +
|
|
|
|
`source world` + nl +
|
2021-08-13 09:20:17 -07:00
|
|
|
`iface ` + iface + ` inet static` + nl,
|
2021-06-28 07:02:45 -07:00
|
|
|
),
|
2021-08-13 09:20:17 -07:00
|
|
|
wantCont: false,
|
2021-06-28 07:02:45 -07:00
|
|
|
wantPatterns: []string{},
|
2020-12-07 09:48:24 -07:00
|
|
|
}}
|
|
|
|
|
|
|
|
for _, tc := range testCases {
|
2021-08-13 09:20:17 -07:00
|
|
|
r := bytes.NewReader(tc.data)
|
2020-12-07 09:48:24 -07:00
|
|
|
t.Run(tc.name, func(t *testing.T) {
|
2021-08-13 09:20:17 -07:00
|
|
|
patterns, has, err := iface.ifacesStaticConfig(r)
|
2021-03-25 08:03:29 -07:00
|
|
|
require.NoError(t, err)
|
|
|
|
|
2021-08-13 09:20:17 -07:00
|
|
|
assert.Equal(t, tc.wantCont, has)
|
2021-06-28 07:02:45 -07:00
|
|
|
assert.ElementsMatch(t, tc.wantPatterns, patterns)
|
2020-12-07 09:48:24 -07:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSetStaticIPdhcpcdConf(t *testing.T) {
|
2021-02-09 09:38:31 -07:00
|
|
|
testCases := []struct {
|
|
|
|
name string
|
|
|
|
dhcpcdConf string
|
|
|
|
routers net.IP
|
|
|
|
}{{
|
|
|
|
name: "with_gateway",
|
2021-06-15 10:01:38 -07:00
|
|
|
dhcpcdConf: nl + `# wlan0 added by AdGuard Home.` + nl +
|
|
|
|
`interface wlan0` + nl +
|
2021-02-09 09:38:31 -07: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 10:01:38 -07:00
|
|
|
dhcpcdConf: nl + `# wlan0 added by AdGuard Home.` + nl +
|
|
|
|
`interface wlan0` + nl +
|
2021-02-09 09:38:31 -07: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 09:48:24 -07:00
|
|
|
|
2021-06-15 10:01:38 -07:00
|
|
|
ipNet := &net.IPNet{
|
|
|
|
IP: net.IP{192, 168, 0, 2},
|
|
|
|
Mask: net.IPMask{255, 255, 255, 0},
|
|
|
|
}
|
|
|
|
|
2021-02-09 09:38:31 -07:00
|
|
|
for _, tc := range testCases {
|
|
|
|
t.Run(tc.name, func(t *testing.T) {
|
2021-06-15 10:01:38 -07:00
|
|
|
s := dhcpcdConfIface("wlan0", ipNet, tc.routers, net.IP{192, 168, 0, 2})
|
2021-02-09 09:38:31 -07:00
|
|
|
assert.Equal(t, tc.dhcpcdConf, s)
|
|
|
|
})
|
|
|
|
}
|
2020-12-07 09:48:24 -07:00
|
|
|
}
|