| 
									
										
										
										
											2017-08-27 01:32:46 +01:00
										 |  |  | package kubernetes | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"testing" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-03 09:04:47 +08:00
										 |  |  | 	"github.com/caddyserver/caddy" | 
					
						
							| 
									
										
										
										
											2017-08-27 01:32:46 +01:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestKubernetesParseTTL(t *testing.T) { | 
					
						
							|  |  |  | 	tests := []struct { | 
					
						
							|  |  |  | 		input       string // Corefile data as string | 
					
						
							|  |  |  | 		expectedTTL uint32 // expected count of defined zones. | 
					
						
							|  |  |  | 		shouldErr   bool | 
					
						
							|  |  |  | 	}{ | 
					
						
							|  |  |  | 		{`kubernetes cluster.local { | 
					
						
							|  |  |  | 			ttl 56 | 
					
						
							|  |  |  | 		}`, 56, false}, | 
					
						
							|  |  |  | 		{`kubernetes cluster.local`, defaultTTL, false}, | 
					
						
							|  |  |  | 		{`kubernetes cluster.local { | 
					
						
							|  |  |  | 			ttl -1 | 
					
						
							|  |  |  | 		}`, 0, true}, | 
					
						
							|  |  |  | 		{`kubernetes cluster.local { | 
					
						
							|  |  |  | 			ttl 3601 | 
					
						
							|  |  |  | 		}`, 0, true}, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for i, tc := range tests { | 
					
						
							|  |  |  | 		c := caddy.NewTestController("dns", tc.input) | 
					
						
							| 
									
										
										
										
											2018-02-12 14:27:16 -05:00
										 |  |  | 		k, err := kubernetesParse(c) | 
					
						
							| 
									
										
										
										
											2017-08-27 01:32:46 +01:00
										 |  |  | 		if err != nil && !tc.shouldErr { | 
					
						
							|  |  |  | 			t.Fatalf("Test %d: Expected no error, got %q", i, err) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if err == nil && tc.shouldErr { | 
					
						
							|  |  |  | 			t.Fatalf("Test %d: Expected error, got none", i) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if err != nil && tc.shouldErr { | 
					
						
							|  |  |  | 			// input should error | 
					
						
							|  |  |  | 			continue | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if k.ttl != tc.expectedTTL { | 
					
						
							|  |  |  | 			t.Errorf("Test %d: Expected TTl to be %d, got %d", i, tc.expectedTTL, k.ttl) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } |