mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-25 22:45:46 +03:00
25918e56fa
Squashed commit of the following: commit 284190f748345c7556e60b67f051ec5f6f080948 Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Wed Dec 6 19:36:00 2023 +0300 all: sync with master; upd chlog
88 lines
2 KiB
Go
88 lines
2 KiB
Go
package dhcpsvc_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/dhcpsvc"
|
|
"github.com/AdguardTeam/golibs/testutil"
|
|
)
|
|
|
|
func TestConfig_Validate(t *testing.T) {
|
|
testCases := []struct {
|
|
name string
|
|
conf *dhcpsvc.Config
|
|
wantErrMsg string
|
|
}{{
|
|
name: "nil_config",
|
|
conf: nil,
|
|
wantErrMsg: "config is nil",
|
|
}, {
|
|
name: "disabled",
|
|
conf: &dhcpsvc.Config{},
|
|
wantErrMsg: "",
|
|
}, {
|
|
name: "empty",
|
|
conf: &dhcpsvc.Config{
|
|
Enabled: true,
|
|
},
|
|
wantErrMsg: `bad domain name "": domain name is empty`,
|
|
}, {
|
|
conf: &dhcpsvc.Config{
|
|
Enabled: true,
|
|
LocalDomainName: testLocalTLD,
|
|
Interfaces: nil,
|
|
},
|
|
name: "no_interfaces",
|
|
wantErrMsg: "no interfaces specified",
|
|
}, {
|
|
conf: &dhcpsvc.Config{
|
|
Enabled: true,
|
|
LocalDomainName: testLocalTLD,
|
|
Interfaces: nil,
|
|
},
|
|
name: "no_interfaces",
|
|
wantErrMsg: "no interfaces specified",
|
|
}, {
|
|
conf: &dhcpsvc.Config{
|
|
Enabled: true,
|
|
LocalDomainName: testLocalTLD,
|
|
Interfaces: map[string]*dhcpsvc.InterfaceConfig{
|
|
"eth0": nil,
|
|
},
|
|
},
|
|
name: "nil_interface",
|
|
wantErrMsg: `interface "eth0": config is nil`,
|
|
}, {
|
|
conf: &dhcpsvc.Config{
|
|
Enabled: true,
|
|
LocalDomainName: testLocalTLD,
|
|
Interfaces: map[string]*dhcpsvc.InterfaceConfig{
|
|
"eth0": {
|
|
IPv4: nil,
|
|
IPv6: &dhcpsvc.IPv6Config{Enabled: false},
|
|
},
|
|
},
|
|
},
|
|
name: "nil_ipv4",
|
|
wantErrMsg: `interface "eth0": ipv4: config is nil`,
|
|
}, {
|
|
conf: &dhcpsvc.Config{
|
|
Enabled: true,
|
|
LocalDomainName: testLocalTLD,
|
|
Interfaces: map[string]*dhcpsvc.InterfaceConfig{
|
|
"eth0": {
|
|
IPv4: &dhcpsvc.IPv4Config{Enabled: false},
|
|
IPv6: nil,
|
|
},
|
|
},
|
|
},
|
|
name: "nil_ipv6",
|
|
wantErrMsg: `interface "eth0": ipv6: config is nil`,
|
|
}}
|
|
|
|
for _, tc := range testCases {
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
testutil.AssertErrorMsg(t, tc.wantErrMsg, tc.conf.Validate())
|
|
})
|
|
}
|
|
}
|