mirror of
https://github.com/coredns/coredns.git
synced 2025-08-06 22:37:03 +02:00
* feat(plugin/file): fallthrough implement and test fallthrough for the file plugin Signed-off-by: vdbe <vdbewout@gmail.com> * docs(plugin/file): fallthrough Signed-off-by: vdbe <vdbewout@gmail.com> * docs(plugin/file): regenerate man page `make -f Makefile.doc man/coredns-file.7` Signed-off-by: vdbe <vdbewout@gmail.com> --------- Signed-off-by: vdbe <vdbewout@gmail.com>
153 lines
3.1 KiB
Go
153 lines
3.1 KiB
Go
package file
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/coredns/caddy"
|
|
"github.com/coredns/coredns/plugin/pkg/fall"
|
|
"github.com/coredns/coredns/plugin/test"
|
|
)
|
|
|
|
func TestFileParse(t *testing.T) {
|
|
zoneFileName1, rm, err := test.TempFile(".", dbMiekNL)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
defer rm()
|
|
|
|
zoneFileName2, rm, err := test.TempFile(".", dbDnssexNLSigned)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
defer rm()
|
|
|
|
tests := []struct {
|
|
inputFileRules string
|
|
shouldErr bool
|
|
expectedZones Zones
|
|
expectedFallthrough fall.F
|
|
}{
|
|
{
|
|
`file ` + zoneFileName1 + ` miek.nl.`,
|
|
false,
|
|
Zones{Names: []string{"miek.nl."}},
|
|
fall.Zero,
|
|
},
|
|
{
|
|
`file ` + zoneFileName2 + ` dnssex.nl.`,
|
|
false,
|
|
Zones{Names: []string{"dnssex.nl."}},
|
|
fall.Zero,
|
|
},
|
|
{
|
|
`file ` + zoneFileName2 + ` 10.0.0.0/8`,
|
|
false,
|
|
Zones{Names: []string{"10.in-addr.arpa."}},
|
|
fall.Zero,
|
|
},
|
|
{
|
|
`file ` + zoneFileName2 + ` example.org. {
|
|
fallthrough
|
|
}`,
|
|
false,
|
|
Zones{Names: []string{"example.org."}},
|
|
fall.Root,
|
|
},
|
|
{
|
|
`file ` + zoneFileName2 + ` example.org. {
|
|
fallthrough www.example.org
|
|
}`,
|
|
false,
|
|
Zones{Names: []string{"example.org."}},
|
|
fall.F{Zones: []string{"www.example.org."}},
|
|
},
|
|
// errors.
|
|
{
|
|
`file ` + zoneFileName1 + ` miek.nl {
|
|
transfer from 127.0.0.1
|
|
}`,
|
|
true,
|
|
Zones{},
|
|
fall.Zero,
|
|
},
|
|
{
|
|
`file`,
|
|
true,
|
|
Zones{},
|
|
fall.Zero,
|
|
},
|
|
{
|
|
`file ` + zoneFileName1 + ` example.net. {
|
|
no_reload
|
|
}`,
|
|
true,
|
|
Zones{},
|
|
fall.Zero,
|
|
},
|
|
{
|
|
`file ` + zoneFileName1 + ` example.net. {
|
|
no_rebloat
|
|
}`,
|
|
true,
|
|
Zones{},
|
|
fall.Zero,
|
|
},
|
|
}
|
|
|
|
for i, test := range tests {
|
|
c := caddy.NewTestController("dns", test.inputFileRules)
|
|
actualZones, actualFallthrough, err := fileParse(c)
|
|
|
|
if err == nil && test.shouldErr {
|
|
t.Fatalf("Test %d expected errors, but got no error", i)
|
|
} else if err != nil && !test.shouldErr {
|
|
t.Fatalf("Test %d expected no errors, but got '%v'", i, err)
|
|
} else {
|
|
if len(actualZones.Names) != len(test.expectedZones.Names) {
|
|
t.Fatalf("Test %d expected %v, got %v", i, test.expectedZones.Names, actualZones.Names)
|
|
}
|
|
for j, name := range test.expectedZones.Names {
|
|
if actualZones.Names[j] != name {
|
|
t.Fatalf("Test %d expected %v for %d th zone, got %v", i, name, j, actualZones.Names[j])
|
|
}
|
|
}
|
|
if !actualFallthrough.Equal(test.expectedFallthrough) {
|
|
t.Errorf("Test %d expected fallthrough of %v, got %v", i, test.expectedFallthrough, actualFallthrough)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestParseReload(t *testing.T) {
|
|
name, rm, err := test.TempFile(".", dbMiekNL)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
defer rm()
|
|
|
|
tests := []struct {
|
|
input string
|
|
reload time.Duration
|
|
}{
|
|
{
|
|
`file ` + name + ` example.org.`,
|
|
1 * time.Minute,
|
|
},
|
|
{
|
|
`file ` + name + ` example.org. {
|
|
reload 5s
|
|
}`,
|
|
5 * time.Second,
|
|
},
|
|
}
|
|
|
|
for i, test := range tests {
|
|
c := caddy.NewTestController("dns", test.input)
|
|
z, _, _ := fileParse(c)
|
|
if x := z.Z["example.org."].ReloadInterval; x != test.reload {
|
|
t.Errorf("Test %d expected reload to be %s, but got %s", i, test.reload, x)
|
|
}
|
|
}
|
|
}
|