plugin-dns/plugins/fallback/setup_test.go

101 lines
2.3 KiB
Go

package fallback
import (
"fmt"
"strings"
"testing"
"github.com/coredns/caddy"
)
type setupTestCase struct {
config string
expectedError string
}
func TestSetupAlternate(t *testing.T) {
testCases := []setupTestCase{
{
config: `fallback REFUSED . 192.168.1.1:53`,
},
{
config: `fallback SERVFAIL . 192.168.1.1:53`,
},
{
config: `fallback NXDOMAIN . 192.168.1.1:53`,
},
{
config: `fallback original NXDOMAIN . 192.168.1.1:53`,
},
{
config: `fallback REFUSE . 192.168.1.1:53`,
expectedError: `is not a valid rcode`,
},
{
config: `fallback SRVFAIL . 192.168.1.1:53`,
expectedError: `is not a valid rcode`,
},
{
config: `fallback NODOMAIN . 192.168.1.1:53`,
expectedError: `is not a valid rcode`,
},
{
config: `fallback original NODOMAIN . 192.168.1.1:53`,
expectedError: `is not a valid rcode`,
},
{
config: `fallback REFUSED . 192.168.1.1:53 {
max_fails 5
force_tcp
}`,
expectedError: `additional parameters not allowed`,
},
{
config: `fallback REFUSED . tls://192.168.1.1:443`,
expectedError: `only dns transport allowed`,
},
{
config: `fallback REFUSED . abc`,
expectedError: `not an IP address or file`,
},
{
config: `fallback REFUSED . 192.168.1.1:53
fallback REFUSED . 192.168.1.2:53`,
expectedError: `specified more than once`,
},
{
config: `fallback REFUSED . 192.168.1.1:53
fallback original REFUSED . 192.168.1.2:53`,
expectedError: `specified more than once`,
},
{
config: `fallback SERVFAIL, REFUSED . 192.168.1.1:53`,
expectedError: `is not a valid rcode`,
},
{
config: `fallback SERVFAIL,REFUSED . 192.168.1.1:53`,
},
{
config: `fallback original SERVFAIL,REFUSED . 192.168.1.1:53`,
},
}
for _, tc := range testCases {
t.Run(fmt.Sprintf("%s", tc.config), func(t *testing.T) {
c := caddy.NewTestController("dns", tc.config)
err := setup(c)
if err == nil {
if tc.expectedError != "" {
t.Errorf("Expected error '%s', but got no error", tc.expectedError)
}
} else {
if tc.expectedError == "" {
t.Errorf("Expected no error, but got '%s'", err)
} else if !strings.Contains(err.Error(), tc.expectedError) {
t.Errorf("Expected error '%s', but got '%s'", tc.expectedError, err)
}
}
})
}
}