mirror of
https://github.com/coredns/coredns.git
synced 2025-11-09 21:42:17 -05:00
IP endpoint for dnstap (#1002)
* adds the option to log to a remote endpoint * examples * tests * tcp:// or default to unix:// * cosmetic update * bad naked returns
This commit is contained in:
@@ -6,14 +6,29 @@ import (
|
||||
)
|
||||
|
||||
func TestConfig(t *testing.T) {
|
||||
file := "dnstap dnstap.sock full"
|
||||
c := caddy.NewTestController("dns", file)
|
||||
if path, full, err := parseConfig(&c.Dispenser); path != "dnstap.sock" || !full {
|
||||
t.Fatalf("%s: %s", file, err)
|
||||
tests := []struct {
|
||||
file string
|
||||
path string
|
||||
full bool
|
||||
socket bool
|
||||
fail bool
|
||||
}{
|
||||
{"dnstap dnstap.sock full", "dnstap.sock", true, true, false},
|
||||
{"dnstap unix://dnstap.sock", "dnstap.sock", false, true, false},
|
||||
{"dnstap tcp://127.0.0.1:6000", "127.0.0.1:6000", false, false, false},
|
||||
{"dnstap", "fail", false, true, true},
|
||||
}
|
||||
file = "dnstap dnstap.sock"
|
||||
c = caddy.NewTestController("dns", file)
|
||||
if path, full, err := parseConfig(&c.Dispenser); path != "dnstap.sock" || full {
|
||||
t.Fatalf("%s: %s", file, err)
|
||||
for _, c := range tests {
|
||||
cad := caddy.NewTestController("dns", c.file)
|
||||
conf, err := parseConfig(&cad.Dispenser)
|
||||
if c.fail {
|
||||
if err == nil {
|
||||
t.Errorf("%s: %s", c.file, err)
|
||||
}
|
||||
} else if err != nil || conf.target != c.path ||
|
||||
conf.full != c.full || conf.socket != c.socket {
|
||||
|
||||
t.Errorf("expected: %+v\nhave: %+v\nerror: %s\n", c, conf, err)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user