| 
									
										
										
										
											2017-09-01 10:21:05 -07:00
										 |  |  | // +build k8s
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-30 17:04:19 +02:00
										 |  |  | package test
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import (
 | 
					
						
							|  |  |  | 	"testing"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-14 09:36:06 +01:00
										 |  |  | 	"github.com/coredns/coredns/plugin/test"
 | 
					
						
							| 
									
										
										
										
											2017-08-30 17:04:19 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/miekg/dns"
 | 
					
						
							|  |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestKubernetesAPIFallthrough(t *testing.T) {
 | 
					
						
							|  |  |  | 	tests := []test.Case{
 | 
					
						
							|  |  |  | 		{
 | 
					
						
							|  |  |  | 			Qname: "svc-1-a.test-1.svc.cluster.local.", Qtype: dns.TypeA,
 | 
					
						
							|  |  |  | 			Rcode: dns.RcodeSuccess,
 | 
					
						
							|  |  |  | 			Answer: []dns.RR{
 | 
					
						
							|  |  |  | 				test.A("svc-1-a.test-1.svc.cluster.local.      303    IN      A       10.0.0.100"),
 | 
					
						
							|  |  |  | 			},
 | 
					
						
							|  |  |  | 		},
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	corefile :=
 | 
					
						
							|  |  |  | 		`.:0 {
 | 
					
						
							|  |  |  |     kubernetes cluster.local {
 | 
					
						
							|  |  |  |         endpoint http://nonexistance:8080,http://invalidip:8080,http://localhost:8080
 | 
					
						
							|  |  |  |         namespaces test-1
 | 
					
						
							|  |  |  |         pods disabled
 | 
					
						
							|  |  |  |     }`
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	server, udp, _, err := CoreDNSServerAndPorts(corefile)
 | 
					
						
							|  |  |  | 	if err != nil {
 | 
					
						
							|  |  |  | 		t.Fatalf("Could not get CoreDNS serving instance: %s", err)
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	defer server.Stop()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for _, tc := range tests {
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		c := new(dns.Client)
 | 
					
						
							|  |  |  | 		m := tc.Msg()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		res, _, err := c.Exchange(m, udp)
 | 
					
						
							|  |  |  | 		if err != nil {
 | 
					
						
							|  |  |  | 			t.Fatalf("Could not send query: %s", err)
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 		test.SortAndCheck(t, res, tc)
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | }
 |