| 
									
										
										
										
											2016-08-19 17:14:17 -07:00
										 |  |  | package errors
 | 
					
						
							| 
									
										
										
										
											2016-03-18 20:57:35 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-19 12:58:08 +00:00
										 |  |  | import (
 | 
					
						
							|  |  |  | 	"testing"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-19 17:14:17 -07:00
										 |  |  | 	"github.com/mholt/caddy"
 | 
					
						
							| 
									
										
										
										
											2016-03-19 12:58:08 +00:00
										 |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-18 20:57:35 +00:00
										 |  |  | func TestErrorsParse(t *testing.T) {
 | 
					
						
							|  |  |  | 	tests := []struct {
 | 
					
						
							|  |  |  | 		inputErrorsRules     string
 | 
					
						
							|  |  |  | 		shouldErr            bool
 | 
					
						
							| 
									
										
										
										
											2016-09-23 09:14:12 +01:00
										 |  |  | 		expectedErrorHandler errorHandler
 | 
					
						
							| 
									
										
										
										
											2016-03-18 20:57:35 +00:00
										 |  |  | 	}{
 | 
					
						
							| 
									
										
										
										
											2018-02-28 18:16:05 -08:00
										 |  |  | 		{`errors`, false, errorHandler{LogFile: "stdout"}},
 | 
					
						
							|  |  |  | 		{`errors stdout`, false, errorHandler{LogFile: "stdout"}},
 | 
					
						
							|  |  |  | 		{`errors errors.txt`, true, errorHandler{LogFile: ""}},
 | 
					
						
							|  |  |  | 		{`errors visible`, true, errorHandler{LogFile: ""}},
 | 
					
						
							|  |  |  | 		{`errors { log visible }`, true, errorHandler{LogFile: "stdout"}},
 | 
					
						
							|  |  |  | 		{`errors
 | 
					
						
							|  |  |  | 		errors `, true, errorHandler{LogFile: "stdout"}},
 | 
					
						
							|  |  |  | 		{`errors a b`, true, errorHandler{LogFile: ""}},
 | 
					
						
							| 
									
										
										
										
											2016-03-18 20:57:35 +00:00
										 |  |  | 	}
 | 
					
						
							|  |  |  | 	for i, test := range tests {
 | 
					
						
							| 
									
										
										
										
											2016-08-19 17:14:17 -07:00
										 |  |  | 		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)
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | }
 |