2025-06-02 02:30:01 +03:00
|
|
|
package any
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
|
|
"github.com/coredns/caddy"
|
|
|
|
|
"github.com/coredns/coredns/core/dnsserver"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func TestSetup(t *testing.T) {
|
|
|
|
|
c := caddy.NewTestController("dns", `any`)
|
|
|
|
|
if err := setup(c); err != nil {
|
|
|
|
|
t.Fatalf("Expected no errors, but got: %v", err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Check that the plugin was added to the config
|
|
|
|
|
cfg := dnsserver.GetConfig(c)
|
|
|
|
|
if len(cfg.Plugin) == 0 {
|
|
|
|
|
t.Error("Expected plugin to be added to config")
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-06-01 02:41:27 +04:00
|
|
|
|
|
|
|
|
func TestSetupRejectsArgs(t *testing.T) {
|
|
|
|
|
c := caddy.NewTestController("dns", `any example.org`)
|
|
|
|
|
if err := setup(c); err == nil {
|
|
|
|
|
t.Fatal("expected error for unexpected argument, got nil")
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestSetupRejectsBlockOptions(t *testing.T) {
|
|
|
|
|
c := caddy.NewTestController("dns", `any { foo }`)
|
|
|
|
|
if err := setup(c); err == nil {
|
|
|
|
|
t.Fatal("expected error for unexpected block option, got nil")
|
|
|
|
|
}
|
|
|
|
|
}
|