mirror of
				https://github.com/coredns/coredns.git
				synced 2025-11-03 18:53:13 -05:00 
			
		
		
		
	* Removed lumberjack from coremain As is mentioned in 251, this fix removed lumberjack from coremain. Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Remove lumberjack from log middleware As mentioned in 251, lumberjack is not suitable for applications like CoreDNS so it is removed from the log middleware. Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Update log/README.md as lumberjack has been removed Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Adjust default log output from `ioutil.Discard` to `os.Stdout` Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
		
			
				
	
	
		
			49 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package errors
 | 
						|
 | 
						|
import (
 | 
						|
	"testing"
 | 
						|
 | 
						|
	"github.com/mholt/caddy"
 | 
						|
)
 | 
						|
 | 
						|
func TestErrorsParse(t *testing.T) {
 | 
						|
	tests := []struct {
 | 
						|
		inputErrorsRules     string
 | 
						|
		shouldErr            bool
 | 
						|
		expectedErrorHandler ErrorHandler
 | 
						|
	}{
 | 
						|
		{`errors`, false, ErrorHandler{
 | 
						|
			LogFile: "",
 | 
						|
		}},
 | 
						|
		{`errors errors.txt`, false, ErrorHandler{
 | 
						|
			LogFile: "errors.txt",
 | 
						|
		}},
 | 
						|
		{`errors visible`, false, ErrorHandler{
 | 
						|
			LogFile: "",
 | 
						|
			Debug:   true,
 | 
						|
		}},
 | 
						|
		{`errors { log visible }`, false, ErrorHandler{
 | 
						|
			LogFile: "",
 | 
						|
			Debug:   true,
 | 
						|
		}},
 | 
						|
	}
 | 
						|
	for i, test := range tests {
 | 
						|
		c := caddy.NewTestController("dns", test.inputErrorsRules)
 | 
						|
		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)
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 |