mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-17 10:58:29 -07:00
7fab31beae
Merge in DNS/adguard-home from 2508-ip-conversion-vol2 to master Closes #2508. Squashed commit of the following: commit 5b9d33f9cd352756831f63e34c4aea48674628c1 Author: Eugene Burkov <e.burkov@adguard.com> Date: Wed Jan 20 17:15:17 2021 +0300 util: replace net.IPNet with pointer commit 680126de7d59464077f9edf1bbaa925dd3fcee19 Merge: d3ba6a6c5a50efad
Author: Eugene Burkov <e.burkov@adguard.com> Date: Wed Jan 20 17:02:41 2021 +0300 Merge branch 'master' into 2508-ip-conversion-vol2 commit d3ba6a6cdd01c0aa736418fdb86ed40120169fe9 Author: Eugene Burkov <e.burkov@adguard.com> Date: Tue Jan 19 18:29:54 2021 +0300 all: remove last conversion commit 88b63f11a6c3f8705d7fa0c448c50dd646cc9214 Author: Eugene Burkov <e.burkov@adguard.com> Date: Tue Jan 19 14:12:45 2021 +0300 all: improve code quality commit 71af60c70a0dbaf55e2221023d6d2e4993c9e9a7 Merge: 98af37849f75725d
Author: Eugene Burkov <e.burkov@adguard.com> Date: Mon Jan 18 17:13:27 2021 +0300 Merge branch 'master' into 2508-ip-conversion-vol2 commit 98af3784ce44d0993d171653c13d6e83bb8d1e6a Author: Eugene Burkov <e.burkov@adguard.com> Date: Mon Jan 18 16:32:53 2021 +0300 all: log changes commit e99595a172bae1e844019d344544be84ddd65e4e Author: Eugene Burkov <e.burkov@adguard.com> Date: Mon Jan 18 16:06:49 2021 +0300 all: fix or remove remaining net.IP <-> string conversions commit 7fd0634ce945f7e4c9b856684c5199f8a84a543e Author: Eugene Burkov <e.burkov@adguard.com> Date: Fri Jan 15 15:36:17 2021 +0300 all: remove redundant net.IP <-> string converions commit 5df8af030421237d41b67ed659f83526cc258199 Author: Eugene Burkov <e.burkov@adguard.com> Date: Thu Jan 14 16:35:25 2021 +0300 stats: remove redundant net.IP <-> string conversion commit fbe4e3fc015e6898063543a90c04401d76dbb18f Author: Eugene Burkov <e.burkov@adguard.com> Date: Thu Jan 14 16:20:35 2021 +0300 querylog: remove redundant net.IP <-> string conversion
253 lines
6.6 KiB
Go
253 lines
6.6 KiB
Go
package home
|
|
|
|
import (
|
|
"fmt"
|
|
"net"
|
|
"testing"
|
|
)
|
|
|
|
func testParseOk(t *testing.T, ss ...string) options {
|
|
o, _, err := parse("", ss)
|
|
if err != nil {
|
|
t.Fatal(err.Error())
|
|
}
|
|
return o
|
|
}
|
|
|
|
func testParseErr(t *testing.T, descr string, ss ...string) {
|
|
_, _, err := parse("", ss)
|
|
if err == nil {
|
|
t.Fatalf("expected an error because %s but no error returned", descr)
|
|
}
|
|
}
|
|
|
|
func testParseParamMissing(t *testing.T, param string) {
|
|
testParseErr(t, fmt.Sprintf("%s parameter missing", param), param)
|
|
}
|
|
|
|
func TestParseVerbose(t *testing.T) {
|
|
if testParseOk(t).verbose {
|
|
t.Fatal("empty is not verbose")
|
|
}
|
|
if !testParseOk(t, "-v").verbose {
|
|
t.Fatal("-v is verbose")
|
|
}
|
|
if !testParseOk(t, "--verbose").verbose {
|
|
t.Fatal("--verbose is verbose")
|
|
}
|
|
}
|
|
|
|
func TestParseConfigFilename(t *testing.T) {
|
|
if testParseOk(t).configFilename != "" {
|
|
t.Fatal("empty is no config filename")
|
|
}
|
|
if testParseOk(t, "-c", "path").configFilename != "path" {
|
|
t.Fatal("-c is config filename")
|
|
}
|
|
testParseParamMissing(t, "-c")
|
|
if testParseOk(t, "--config", "path").configFilename != "path" {
|
|
t.Fatal("--configFilename is config filename")
|
|
}
|
|
testParseParamMissing(t, "--config")
|
|
}
|
|
|
|
func TestParseWorkDir(t *testing.T) {
|
|
if testParseOk(t).workDir != "" {
|
|
t.Fatal("empty is no work dir")
|
|
}
|
|
if testParseOk(t, "-w", "path").workDir != "path" {
|
|
t.Fatal("-w is work dir")
|
|
}
|
|
testParseParamMissing(t, "-w")
|
|
if testParseOk(t, "--work-dir", "path").workDir != "path" {
|
|
t.Fatal("--work-dir is work dir")
|
|
}
|
|
testParseParamMissing(t, "--work-dir")
|
|
}
|
|
|
|
func TestParseBindHost(t *testing.T) {
|
|
if testParseOk(t).bindHost != nil {
|
|
t.Fatal("empty is no host")
|
|
}
|
|
if !testParseOk(t, "-h", "1.2.3.4").bindHost.Equal(net.IP{1, 2, 3, 4}) {
|
|
t.Fatal("-h is host")
|
|
}
|
|
testParseParamMissing(t, "-h")
|
|
if !testParseOk(t, "--host", "1.2.3.4").bindHost.Equal(net.IP{1, 2, 3, 4}) {
|
|
t.Fatal("--host is host")
|
|
}
|
|
testParseParamMissing(t, "--host")
|
|
}
|
|
|
|
func TestParseBindPort(t *testing.T) {
|
|
if testParseOk(t).bindPort != 0 {
|
|
t.Fatal("empty is port 0")
|
|
}
|
|
if testParseOk(t, "-p", "65535").bindPort != 65535 {
|
|
t.Fatal("-p is port")
|
|
}
|
|
testParseParamMissing(t, "-p")
|
|
if testParseOk(t, "--port", "65535").bindPort != 65535 {
|
|
t.Fatal("--port is port")
|
|
}
|
|
testParseParamMissing(t, "--port")
|
|
}
|
|
|
|
func TestParseBindPortBad(t *testing.T) {
|
|
testParseErr(t, "not an int", "-p", "x")
|
|
testParseErr(t, "hex not supported", "-p", "0x100")
|
|
testParseErr(t, "port negative", "-p", "-1")
|
|
testParseErr(t, "port too high", "-p", "65536")
|
|
testParseErr(t, "port too high", "-p", "4294967297") // 2^32 + 1
|
|
testParseErr(t, "port too high", "-p", "18446744073709551617") // 2^64 + 1
|
|
}
|
|
|
|
func TestParseLogfile(t *testing.T) {
|
|
if testParseOk(t).logFile != "" {
|
|
t.Fatal("empty is no log file")
|
|
}
|
|
if testParseOk(t, "-l", "path").logFile != "path" {
|
|
t.Fatal("-l is log file")
|
|
}
|
|
if testParseOk(t, "--logfile", "path").logFile != "path" {
|
|
t.Fatal("--logfile is log file")
|
|
}
|
|
}
|
|
|
|
func TestParsePidfile(t *testing.T) {
|
|
if testParseOk(t).pidFile != "" {
|
|
t.Fatal("empty is no pid file")
|
|
}
|
|
if testParseOk(t, "--pidfile", "path").pidFile != "path" {
|
|
t.Fatal("--pidfile is pid file")
|
|
}
|
|
}
|
|
|
|
func TestParseCheckConfig(t *testing.T) {
|
|
if testParseOk(t).checkConfig {
|
|
t.Fatal("empty is not check config")
|
|
}
|
|
if !testParseOk(t, "--check-config").checkConfig {
|
|
t.Fatal("--check-config is check config")
|
|
}
|
|
}
|
|
|
|
func TestParseDisableUpdate(t *testing.T) {
|
|
if testParseOk(t).disableUpdate {
|
|
t.Fatal("empty is not disable update")
|
|
}
|
|
if !testParseOk(t, "--no-check-update").disableUpdate {
|
|
t.Fatal("--no-check-update is disable update")
|
|
}
|
|
}
|
|
|
|
func TestParseDisableMemoryOptimization(t *testing.T) {
|
|
if testParseOk(t).disableMemoryOptimization {
|
|
t.Fatal("empty is not disable update")
|
|
}
|
|
if !testParseOk(t, "--no-mem-optimization").disableMemoryOptimization {
|
|
t.Fatal("--no-mem-optimization is disable update")
|
|
}
|
|
}
|
|
|
|
func TestParseService(t *testing.T) {
|
|
if testParseOk(t).serviceControlAction != "" {
|
|
t.Fatal("empty is no service command")
|
|
}
|
|
if testParseOk(t, "-s", "command").serviceControlAction != "command" {
|
|
t.Fatal("-s is service command")
|
|
}
|
|
if testParseOk(t, "--service", "command").serviceControlAction != "command" {
|
|
t.Fatal("--service is service command")
|
|
}
|
|
}
|
|
|
|
func TestParseGLInet(t *testing.T) {
|
|
if testParseOk(t).glinetMode {
|
|
t.Fatal("empty is not GL-Inet mode")
|
|
}
|
|
if !testParseOk(t, "--glinet").glinetMode {
|
|
t.Fatal("--glinet is GL-Inet mode")
|
|
}
|
|
}
|
|
|
|
func TestParseUnknown(t *testing.T) {
|
|
testParseErr(t, "unknown word", "x")
|
|
testParseErr(t, "unknown short", "-x")
|
|
testParseErr(t, "unknown long", "--x")
|
|
testParseErr(t, "unknown triple", "---x")
|
|
testParseErr(t, "unknown plus", "+x")
|
|
testParseErr(t, "unknown dash", "-")
|
|
}
|
|
|
|
func testSerialize(t *testing.T, o options, ss ...string) {
|
|
result := serialize(o)
|
|
if len(result) != len(ss) {
|
|
t.Fatalf("expected %s but got %s", ss, result)
|
|
}
|
|
for i, r := range result {
|
|
if r != ss[i] {
|
|
t.Fatalf("expected %s but got %s", ss, result)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestSerializeEmpty(t *testing.T) {
|
|
testSerialize(t, options{})
|
|
}
|
|
|
|
func TestSerializeConfigFilename(t *testing.T) {
|
|
testSerialize(t, options{configFilename: "path"}, "-c", "path")
|
|
}
|
|
|
|
func TestSerializeWorkDir(t *testing.T) {
|
|
testSerialize(t, options{workDir: "path"}, "-w", "path")
|
|
}
|
|
|
|
func TestSerializeBindHost(t *testing.T) {
|
|
testSerialize(t, options{bindHost: net.IP{1, 2, 3, 4}}, "-h", "1.2.3.4")
|
|
}
|
|
|
|
func TestSerializeBindPort(t *testing.T) {
|
|
testSerialize(t, options{bindPort: 666}, "-p", "666")
|
|
}
|
|
|
|
func TestSerializeLogfile(t *testing.T) {
|
|
testSerialize(t, options{logFile: "path"}, "-l", "path")
|
|
}
|
|
|
|
func TestSerializePidfile(t *testing.T) {
|
|
testSerialize(t, options{pidFile: "path"}, "--pidfile", "path")
|
|
}
|
|
|
|
func TestSerializeCheckConfig(t *testing.T) {
|
|
testSerialize(t, options{checkConfig: true}, "--check-config")
|
|
}
|
|
|
|
func TestSerializeDisableUpdate(t *testing.T) {
|
|
testSerialize(t, options{disableUpdate: true}, "--no-check-update")
|
|
}
|
|
|
|
func TestSerializeService(t *testing.T) {
|
|
testSerialize(t, options{serviceControlAction: "run"}, "-s", "run")
|
|
}
|
|
|
|
func TestSerializeGLInet(t *testing.T) {
|
|
testSerialize(t, options{glinetMode: true}, "--glinet")
|
|
}
|
|
|
|
func TestSerializeDisableMemoryOptimization(t *testing.T) {
|
|
testSerialize(t, options{disableMemoryOptimization: true}, "--no-mem-optimization")
|
|
}
|
|
|
|
func TestSerializeMultiple(t *testing.T) {
|
|
testSerialize(t, options{
|
|
serviceControlAction: "run",
|
|
configFilename: "config",
|
|
workDir: "work",
|
|
pidFile: "pid",
|
|
disableUpdate: true,
|
|
disableMemoryOptimization: true,
|
|
}, "-c", "config", "-w", "work", "-s", "run", "--pidfile", "pid", "--no-check-update", "--no-mem-optimization")
|
|
}
|