Files
coredns/middleware/errors/setup_test.go

49 lines
1.2 KiB
Go
Raw Normal View History

package errors
2016-03-18 20:57:35 +00:00
import (
"testing"
"github.com/mholt/caddy"
)
2016-03-18 20:57:35 +00:00
func TestErrorsParse(t *testing.T) {
tests := []struct {
inputErrorsRules string
shouldErr bool
expectedErrorHandler ErrorHandler
2016-03-18 20:57:35 +00:00
}{
{`errors`, false, ErrorHandler{
2016-03-18 20:57:35 +00:00
LogFile: "",
}},
{`errors errors.txt`, false, ErrorHandler{
2016-03-18 20:57:35 +00:00
LogFile: "errors.txt",
}},
{`errors visible`, false, ErrorHandler{
2016-03-18 20:57:35 +00:00
LogFile: "",
Debug: true,
}},
{`errors { log visible }`, false, ErrorHandler{
2016-03-18 20:57:35 +00:00
LogFile: "",
Debug: true,
}},
}
for i, test := range tests {
c := caddy.NewTestController("dns", test.inputErrorsRules)
2016-03-18 20:57:35 +00:00
actualErrorsRule, err := errorsParse(c)
if err == nil && test.shouldErr {
t.Errorf("Test %d didn't error, but it should have", i)
} else if err != nil && !test.shouldErr {
t.Errorf("Test %d errored, but it shouldn't have; got '%v'", i, err)
}
if actualErrorsRule.LogFile != test.expectedErrorHandler.LogFile {
t.Errorf("Test %d expected LogFile to be %s, but got %s",
i, test.expectedErrorHandler.LogFile, actualErrorsRule.LogFile)
}
if actualErrorsRule.Debug != test.expectedErrorHandler.Debug {
t.Errorf("Test %d expected Debug to be %v, but got %v",
i, test.expectedErrorHandler.Debug, actualErrorsRule.Debug)
}
}
}