| 
									
										
										
										
											2017-07-11 18:05:32 -04:00
										 |  |  | package kubernetes | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2018-04-22 08:34:35 +01:00
										 |  |  | 	"context" | 
					
						
							| 
									
										
										
										
											2019-03-22 08:32:40 -06:00
										 |  |  | 	"fmt" | 
					
						
							| 
									
										
										
										
											2017-07-11 18:05:32 -04:00
										 |  |  | 	"testing" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-09 21:56:09 +01:00
										 |  |  | 	"github.com/coredns/coredns/plugin/kubernetes/object" | 
					
						
							| 
									
										
										
										
											2017-09-21 15:15:47 +01:00
										 |  |  | 	"github.com/coredns/coredns/plugin/pkg/dnstest" | 
					
						
							| 
									
										
										
										
											2017-09-14 09:36:06 +01:00
										 |  |  | 	"github.com/coredns/coredns/plugin/test" | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	"github.com/coredns/coredns/request" | 
					
						
							| 
									
										
										
										
											2017-07-11 18:05:32 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/miekg/dns" | 
					
						
							| 
									
										
										
										
											2018-01-03 19:11:28 +08:00
										 |  |  | 	api "k8s.io/api/core/v1" | 
					
						
							| 
									
										
										
										
											2017-09-29 15:58:50 -04:00
										 |  |  | 	meta "k8s.io/apimachinery/pkg/apis/meta/v1" | 
					
						
							| 
									
										
										
										
											2017-07-11 18:05:32 -04:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | type kubeTestCase struct { | 
					
						
							|  |  |  | 	Upstream  Upstreamer | 
					
						
							|  |  |  | 	Truncated bool | 
					
						
							|  |  |  | 	test.Case | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var dnsTestCases = []kubeTestCase{ | 
					
						
							| 
									
										
										
										
											2017-09-02 18:49:50 +02:00
										 |  |  | 	// A Service | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	{Case: test.Case{ | 
					
						
							| 
									
										
										
										
											2017-07-11 18:05:32 -04:00
										 |  |  | 		Qname: "svc1.testns.svc.cluster.local.", Qtype: dns.TypeA, | 
					
						
							|  |  |  | 		Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Answer: []dns.RR{ | 
					
						
							| 
									
										
										
										
											2017-08-27 01:32:46 +01:00
										 |  |  | 			test.A("svc1.testns.svc.cluster.local.	5	IN	A	10.0.0.1"), | 
					
						
							| 
									
										
										
										
											2017-07-11 18:05:32 -04:00
										 |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	}}, | 
					
						
							|  |  |  | 	{Case: test.Case{ | 
					
						
							| 
									
										
										
										
											2018-05-23 14:57:59 +02:00
										 |  |  | 		Qname: "svcempty.testns.svc.cluster.local.", Qtype: dns.TypeA, | 
					
						
							|  |  |  | 		Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Answer: []dns.RR{ | 
					
						
							|  |  |  | 			test.A("svcempty.testns.svc.cluster.local.	5	IN	A	10.0.0.1"), | 
					
						
							|  |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	}}, | 
					
						
							|  |  |  | 	{Case: test.Case{ | 
					
						
							| 
									
										
										
										
											2017-09-01 02:55:09 -04:00
										 |  |  | 		Qname: "svc1.testns.svc.cluster.local.", Qtype: dns.TypeSRV, | 
					
						
							| 
									
										
										
										
											2022-11-04 09:54:57 -04:00
										 |  |  | 		Rcode:  dns.RcodeSuccess, | 
					
						
							| 
									
										
										
										
											2017-11-15 15:04:17 +00:00
										 |  |  | 		Answer: []dns.RR{test.SRV("svc1.testns.svc.cluster.local.	5	IN	SRV	0 100 80 svc1.testns.svc.cluster.local.")}, | 
					
						
							| 
									
										
										
										
											2022-11-04 09:54:57 -04:00
										 |  |  | 		Extra:  []dns.RR{test.A("svc1.testns.svc.cluster.local.  5       IN      A       10.0.0.1")}, | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	}}, | 
					
						
							|  |  |  | 	{Case: test.Case{ | 
					
						
							| 
									
										
										
										
											2018-05-23 14:57:59 +02:00
										 |  |  | 		Qname: "svcempty.testns.svc.cluster.local.", Qtype: dns.TypeSRV, | 
					
						
							| 
									
										
										
										
											2022-11-04 09:54:57 -04:00
										 |  |  | 		Rcode:  dns.RcodeSuccess, | 
					
						
							| 
									
										
										
										
											2018-05-23 14:57:59 +02:00
										 |  |  | 		Answer: []dns.RR{test.SRV("svcempty.testns.svc.cluster.local.	5	IN	SRV	0 100 80 svcempty.testns.svc.cluster.local.")}, | 
					
						
							| 
									
										
										
										
											2022-11-04 09:54:57 -04:00
										 |  |  | 		Extra:  []dns.RR{test.A("svcempty.testns.svc.cluster.local.  5       IN      A       10.0.0.1")}, | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	}}, | 
					
						
							|  |  |  | 	{Case: test.Case{ | 
					
						
							| 
									
										
										
										
											2018-02-08 10:11:04 -06:00
										 |  |  | 		Qname: "svc6.testns.svc.cluster.local.", Qtype: dns.TypeSRV, | 
					
						
							| 
									
										
										
										
											2022-11-04 09:54:57 -04:00
										 |  |  | 		Rcode:  dns.RcodeSuccess, | 
					
						
							| 
									
										
										
										
											2018-02-08 10:11:04 -06:00
										 |  |  | 		Answer: []dns.RR{test.SRV("svc6.testns.svc.cluster.local.	5	IN	SRV	0 100 80 svc6.testns.svc.cluster.local.")}, | 
					
						
							| 
									
										
										
										
											2022-11-04 09:54:57 -04:00
										 |  |  | 		Extra:  []dns.RR{test.AAAA("svc6.testns.svc.cluster.local.  5       IN      AAAA       1234:abcd::1")}, | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	}}, | 
					
						
							| 
									
										
										
										
											2017-09-02 18:49:50 +02:00
										 |  |  | 	// SRV Service | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	{Case: test.Case{ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-11 18:05:32 -04:00
										 |  |  | 		Qname: "_http._tcp.svc1.testns.svc.cluster.local.", Qtype: dns.TypeSRV, | 
					
						
							|  |  |  | 		Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Answer: []dns.RR{ | 
					
						
							| 
									
										
										
										
											2017-11-15 15:04:17 +00:00
										 |  |  | 			test.SRV("_http._tcp.svc1.testns.svc.cluster.local.	5	IN	SRV	0 100 80 svc1.testns.svc.cluster.local."), | 
					
						
							| 
									
										
										
										
											2017-07-11 18:05:32 -04:00
										 |  |  | 		}, | 
					
						
							|  |  |  | 		Extra: []dns.RR{ | 
					
						
							| 
									
										
										
										
											2017-11-15 15:04:17 +00:00
										 |  |  | 			test.A("svc1.testns.svc.cluster.local.	5	IN	A	10.0.0.1"), | 
					
						
							| 
									
										
										
										
											2017-07-11 18:05:32 -04:00
										 |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	}}, | 
					
						
							|  |  |  | 	{Case: test.Case{ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-23 14:57:59 +02:00
										 |  |  | 		Qname: "_http._tcp.svcempty.testns.svc.cluster.local.", Qtype: dns.TypeSRV, | 
					
						
							|  |  |  | 		Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Answer: []dns.RR{ | 
					
						
							|  |  |  | 			test.SRV("_http._tcp.svcempty.testns.svc.cluster.local.	5	IN	SRV	0 100 80 svcempty.testns.svc.cluster.local."), | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		Extra: []dns.RR{ | 
					
						
							|  |  |  | 			test.A("svcempty.testns.svc.cluster.local.	5	IN	A	10.0.0.1"), | 
					
						
							|  |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	}}, | 
					
						
							| 
									
										
										
										
											2017-09-02 18:49:50 +02:00
										 |  |  | 	// A Service (Headless) | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	{Case: test.Case{ | 
					
						
							| 
									
										
										
										
											2017-08-22 20:44:42 +01:00
										 |  |  | 		Qname: "hdls1.testns.svc.cluster.local.", Qtype: dns.TypeA, | 
					
						
							|  |  |  | 		Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Answer: []dns.RR{ | 
					
						
							| 
									
										
										
										
											2017-11-15 15:04:17 +00:00
										 |  |  | 			test.A("hdls1.testns.svc.cluster.local.	5	IN	A	172.0.0.2"), | 
					
						
							|  |  |  | 			test.A("hdls1.testns.svc.cluster.local.	5	IN	A	172.0.0.3"), | 
					
						
							| 
									
										
										
										
											2018-05-18 02:27:25 -04:00
										 |  |  | 			test.A("hdls1.testns.svc.cluster.local.	5	IN	A	172.0.0.4"), | 
					
						
							|  |  |  | 			test.A("hdls1.testns.svc.cluster.local.	5	IN	A	172.0.0.5"), | 
					
						
							| 
									
										
										
										
											2017-08-22 20:44:42 +01:00
										 |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	}}, | 
					
						
							| 
									
										
										
										
											2018-08-27 10:10:51 -04:00
										 |  |  | 	// A Service (Headless and Portless) | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	{Case: test.Case{ | 
					
						
							| 
									
										
										
										
											2018-08-27 10:10:51 -04:00
										 |  |  | 		Qname: "hdlsprtls.testns.svc.cluster.local.", Qtype: dns.TypeA, | 
					
						
							|  |  |  | 		Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Answer: []dns.RR{ | 
					
						
							|  |  |  | 			test.A("hdlsprtls.testns.svc.cluster.local.	5	IN	A	172.0.0.20"), | 
					
						
							|  |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	}}, | 
					
						
							| 
									
										
										
										
											2018-08-27 10:10:51 -04:00
										 |  |  | 	// An Endpoint with no port | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	{Case: test.Case{ | 
					
						
							| 
									
										
										
										
											2018-08-27 10:10:51 -04:00
										 |  |  | 		Qname: "172-0-0-20.hdlsprtls.testns.svc.cluster.local.", Qtype: dns.TypeA, | 
					
						
							|  |  |  | 		Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Answer: []dns.RR{ | 
					
						
							|  |  |  | 			test.A("172-0-0-20.hdlsprtls.testns.svc.cluster.local.	5	IN	A	172.0.0.20"), | 
					
						
							|  |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	}}, | 
					
						
							| 
									
										
										
										
											2018-05-18 02:27:25 -04:00
										 |  |  | 	// An Endpoint ip | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	{Case: test.Case{ | 
					
						
							| 
									
										
										
										
											2017-12-14 13:14:10 -06:00
										 |  |  | 		Qname: "172-0-0-2.hdls1.testns.svc.cluster.local.", Qtype: dns.TypeA, | 
					
						
							|  |  |  | 		Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Answer: []dns.RR{ | 
					
						
							|  |  |  | 			test.A("172-0-0-2.hdls1.testns.svc.cluster.local.	5	IN	A	172.0.0.2"), | 
					
						
							|  |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	}}, | 
					
						
							| 
									
										
										
										
											2018-05-18 02:27:25 -04:00
										 |  |  | 	// A Endpoint ip | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	{Case: test.Case{ | 
					
						
							| 
									
										
										
										
											2017-12-14 13:14:10 -06:00
										 |  |  | 		Qname: "172-0-0-3.hdls1.testns.svc.cluster.local.", Qtype: dns.TypeA, | 
					
						
							|  |  |  | 		Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Answer: []dns.RR{ | 
					
						
							|  |  |  | 			test.A("172-0-0-3.hdls1.testns.svc.cluster.local.	5	IN	A	172.0.0.3"), | 
					
						
							|  |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	}}, | 
					
						
							| 
									
										
										
										
											2018-05-18 02:27:25 -04:00
										 |  |  | 	// An Endpoint by name | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	{Case: test.Case{ | 
					
						
							| 
									
										
										
										
											2018-05-18 02:27:25 -04:00
										 |  |  | 		Qname: "dup-name.hdls1.testns.svc.cluster.local.", Qtype: dns.TypeA, | 
					
						
							|  |  |  | 		Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Answer: []dns.RR{ | 
					
						
							|  |  |  | 			test.A("dup-name.hdls1.testns.svc.cluster.local.	5	IN	A	172.0.0.4"), | 
					
						
							|  |  |  | 			test.A("dup-name.hdls1.testns.svc.cluster.local.	5	IN	A	172.0.0.5"), | 
					
						
							|  |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	}}, | 
					
						
							| 
									
										
										
										
											2017-09-02 18:49:50 +02:00
										 |  |  | 	// SRV Service (Headless) | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	{Case: test.Case{ | 
					
						
							| 
									
										
										
										
											2017-07-11 18:05:32 -04:00
										 |  |  | 		Qname: "_http._tcp.hdls1.testns.svc.cluster.local.", Qtype: dns.TypeSRV, | 
					
						
							|  |  |  | 		Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Answer: []dns.RR{ | 
					
						
							| 
									
										
										
										
											2018-05-18 02:27:25 -04:00
										 |  |  | 			test.SRV("_http._tcp.hdls1.testns.svc.cluster.local.	5	IN	SRV	0 16 80 172-0-0-2.hdls1.testns.svc.cluster.local."), | 
					
						
							|  |  |  | 			test.SRV("_http._tcp.hdls1.testns.svc.cluster.local.	5	IN	SRV	0 16 80 172-0-0-3.hdls1.testns.svc.cluster.local."), | 
					
						
							|  |  |  | 			test.SRV("_http._tcp.hdls1.testns.svc.cluster.local.	5	IN	SRV	0 16 80 5678-abcd--1.hdls1.testns.svc.cluster.local."), | 
					
						
							|  |  |  | 			test.SRV("_http._tcp.hdls1.testns.svc.cluster.local.	5	IN	SRV	0 16 80 5678-abcd--2.hdls1.testns.svc.cluster.local."), | 
					
						
							|  |  |  | 			test.SRV("_http._tcp.hdls1.testns.svc.cluster.local.	5	IN	SRV	0 16 80 dup-name.hdls1.testns.svc.cluster.local."), | 
					
						
							| 
									
										
										
										
											2017-07-11 18:05:32 -04:00
										 |  |  | 		}, | 
					
						
							|  |  |  | 		Extra: []dns.RR{ | 
					
						
							| 
									
										
										
										
											2017-11-15 15:04:17 +00:00
										 |  |  | 			test.A("172-0-0-2.hdls1.testns.svc.cluster.local.	5	IN	A	172.0.0.2"), | 
					
						
							|  |  |  | 			test.A("172-0-0-3.hdls1.testns.svc.cluster.local.	5	IN	A	172.0.0.3"), | 
					
						
							|  |  |  | 			test.AAAA("5678-abcd--1.hdls1.testns.svc.cluster.local.	5	IN	AAAA	5678:abcd::1"), | 
					
						
							|  |  |  | 			test.AAAA("5678-abcd--2.hdls1.testns.svc.cluster.local.	5	IN	AAAA	5678:abcd::2"), | 
					
						
							| 
									
										
										
										
											2018-05-18 02:27:25 -04:00
										 |  |  | 			test.A("dup-name.hdls1.testns.svc.cluster.local.	5	IN	A	172.0.0.4"), | 
					
						
							|  |  |  | 			test.A("dup-name.hdls1.testns.svc.cluster.local.	5	IN	A	172.0.0.5"), | 
					
						
							| 
									
										
										
										
											2017-07-11 18:05:32 -04:00
										 |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	}}, | 
					
						
							|  |  |  | 	{Case: test.Case{ // An A record query for an existing headless service should return a record for each of its ipv4 endpoints | 
					
						
							| 
									
										
										
										
											2018-10-09 21:56:09 +01:00
										 |  |  | 		Qname: "hdls1.testns.svc.cluster.local.", Qtype: dns.TypeA, | 
					
						
							|  |  |  | 		Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Answer: []dns.RR{ | 
					
						
							|  |  |  | 			test.A("hdls1.testns.svc.cluster.local.	5	IN	A	172.0.0.2"), | 
					
						
							|  |  |  | 			test.A("hdls1.testns.svc.cluster.local.	5	IN	A	172.0.0.3"), | 
					
						
							|  |  |  | 			test.A("hdls1.testns.svc.cluster.local.	5	IN	A	172.0.0.4"), | 
					
						
							|  |  |  | 			test.A("hdls1.testns.svc.cluster.local.	5	IN	A	172.0.0.5"), | 
					
						
							|  |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	}}, | 
					
						
							| 
									
										
										
										
											2017-12-14 13:14:10 -06:00
										 |  |  | 	// AAAA | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	{Case: test.Case{ | 
					
						
							| 
									
										
										
										
											2017-12-14 13:14:10 -06:00
										 |  |  | 		Qname: "5678-abcd--2.hdls1.testns.svc.cluster.local", Qtype: dns.TypeAAAA, | 
					
						
							| 
									
										
										
										
											2022-11-04 09:54:57 -04:00
										 |  |  | 		Rcode:  dns.RcodeSuccess, | 
					
						
							| 
									
										
										
										
											2017-12-14 13:14:10 -06:00
										 |  |  | 		Answer: []dns.RR{test.AAAA("5678-abcd--2.hdls1.testns.svc.cluster.local.	5	IN	AAAA	5678:abcd::2")}, | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	}}, | 
					
						
							| 
									
										
										
										
											2017-09-02 18:49:50 +02:00
										 |  |  | 	// CNAME External | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	{Case: test.Case{ | 
					
						
							| 
									
										
										
										
											2017-07-11 18:05:32 -04:00
										 |  |  | 		Qname: "external.testns.svc.cluster.local.", Qtype: dns.TypeCNAME, | 
					
						
							|  |  |  | 		Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Answer: []dns.RR{ | 
					
						
							| 
									
										
										
										
											2017-11-15 15:04:17 +00:00
										 |  |  | 			test.CNAME("external.testns.svc.cluster.local.	5	IN	CNAME	ext.interwebs.test."), | 
					
						
							| 
									
										
										
										
											2017-07-11 18:05:32 -04:00
										 |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	}}, | 
					
						
							|  |  |  | 	// CNAME External Truncated Lookup | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		Case: test.Case{ | 
					
						
							|  |  |  | 			Qname: "external.testns.svc.cluster.local.", Qtype: dns.TypeA, | 
					
						
							|  |  |  | 			Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 			Answer: []dns.RR{ | 
					
						
							|  |  |  | 				test.A("ext.interwebs.test.	5	IN	A	1.2.3.4"), | 
					
						
							|  |  |  | 				test.CNAME("external.testns.svc.cluster.local.	5	IN	CNAME	ext.interwebs.test."), | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		Upstream: &Upstub{ | 
					
						
							|  |  |  | 			Truncated: true, | 
					
						
							|  |  |  | 			Qclass:    dns.ClassINET, | 
					
						
							|  |  |  | 			Case: test.Case{ | 
					
						
							|  |  |  | 				Qname: "external.testns.svc.cluster.local.", | 
					
						
							|  |  |  | 				Qtype: dns.TypeA, | 
					
						
							|  |  |  | 				Answer: []dns.RR{ | 
					
						
							|  |  |  | 					test.A("ext.interwebs.test.	5	IN	A	1.2.3.4"), | 
					
						
							|  |  |  | 					test.CNAME("external.testns.svc.cluster.local.	5	IN	CNAME	ext.interwebs.test."), | 
					
						
							|  |  |  | 				}, | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		Truncated: true, | 
					
						
							| 
									
										
										
										
											2017-07-11 18:05:32 -04:00
										 |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2018-08-25 20:53:41 +08:00
										 |  |  | 	// CNAME External To Internal Service | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	{Case: test.Case{ | 
					
						
							| 
									
										
										
										
											2018-08-25 20:53:41 +08:00
										 |  |  | 		Qname: "external-to-service.testns.svc.cluster.local", Qtype: dns.TypeA, | 
					
						
							|  |  |  | 		Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Answer: []dns.RR{ | 
					
						
							|  |  |  | 			test.CNAME("external-to-service.testns.svc.cluster.local.	5	IN	CNAME	svc1.testns.svc.cluster.local."), | 
					
						
							|  |  |  | 			test.A("svc1.testns.svc.cluster.local.	5	IN	A	10.0.0.1"), | 
					
						
							|  |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	}}, | 
					
						
							| 
									
										
										
										
											2017-11-15 02:16:04 -05:00
										 |  |  | 	// AAAA Service (with an existing A record, but no AAAA record) | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	{Case: test.Case{ | 
					
						
							| 
									
										
										
										
											2017-07-20 08:19:29 -04:00
										 |  |  | 		Qname: "svc1.testns.svc.cluster.local.", Qtype: dns.TypeAAAA, | 
					
						
							| 
									
										
										
										
											2017-08-23 07:19:41 +01:00
										 |  |  | 		Rcode: dns.RcodeSuccess, | 
					
						
							| 
									
										
										
										
											2017-07-20 08:19:29 -04:00
										 |  |  | 		Ns: []dns.RR{ | 
					
						
							| 
									
										
										
										
											2019-01-10 10:49:53 -05:00
										 |  |  | 			test.SOA("cluster.local.	5	IN	SOA	ns.dns.cluster.local. hostmaster.cluster.local. 1499347823 7200 1800 86400 5"), | 
					
						
							| 
									
										
										
										
											2017-07-20 08:19:29 -04:00
										 |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	}}, | 
					
						
							| 
									
										
										
										
											2017-09-02 18:49:50 +02:00
										 |  |  | 	// AAAA Service (non-existing service) | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	{Case: test.Case{ | 
					
						
							| 
									
										
										
										
											2017-07-20 08:19:29 -04:00
										 |  |  | 		Qname: "svc0.testns.svc.cluster.local.", Qtype: dns.TypeAAAA, | 
					
						
							| 
									
										
										
										
											2017-08-23 07:19:41 +01:00
										 |  |  | 		Rcode: dns.RcodeNameError, | 
					
						
							|  |  |  | 		Ns: []dns.RR{ | 
					
						
							| 
									
										
										
										
											2019-01-10 10:49:53 -05:00
										 |  |  | 			test.SOA("cluster.local.	5	IN	SOA	ns.dns.cluster.local. hostmaster.cluster.local. 1499347823 7200 1800 86400 5"), | 
					
						
							| 
									
										
										
										
											2017-08-23 07:19:41 +01:00
										 |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	}}, | 
					
						
							| 
									
										
										
										
											2017-09-02 18:49:50 +02:00
										 |  |  | 	// A Service (non-existing service) | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	{Case: test.Case{ | 
					
						
							| 
									
										
										
										
											2017-08-23 07:19:41 +01:00
										 |  |  | 		Qname: "svc0.testns.svc.cluster.local.", Qtype: dns.TypeA, | 
					
						
							|  |  |  | 		Rcode: dns.RcodeNameError, | 
					
						
							| 
									
										
										
										
											2017-07-20 08:19:29 -04:00
										 |  |  | 		Ns: []dns.RR{ | 
					
						
							| 
									
										
										
										
											2019-01-10 10:49:53 -05:00
										 |  |  | 			test.SOA("cluster.local.	5	IN	SOA	ns.dns.cluster.local. hostmaster.cluster.local. 1499347823 7200 1800 86400 5"), | 
					
						
							| 
									
										
										
										
											2017-07-20 08:19:29 -04:00
										 |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	}}, | 
					
						
							| 
									
										
										
										
											2018-01-05 17:53:26 +00:00
										 |  |  | 	// A Service (non-existing namespace) | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	{Case: test.Case{ | 
					
						
							| 
									
										
										
										
											2018-01-05 17:53:26 +00:00
										 |  |  | 		Qname: "svc0.svc-nons.svc.cluster.local.", Qtype: dns.TypeA, | 
					
						
							|  |  |  | 		Rcode: dns.RcodeNameError, | 
					
						
							|  |  |  | 		Ns: []dns.RR{ | 
					
						
							| 
									
										
										
										
											2019-01-10 10:49:53 -05:00
										 |  |  | 			test.SOA("cluster.local.	5	IN	SOA	ns.dns.cluster.local. hostmaster.cluster.local. 1499347823 7200 1800 86400 5"), | 
					
						
							| 
									
										
										
										
											2018-01-05 17:53:26 +00:00
										 |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	}}, | 
					
						
							| 
									
										
										
										
											2017-09-02 18:49:50 +02:00
										 |  |  | 	// TXT Schema | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	{Case: test.Case{ | 
					
						
							| 
									
										
										
										
											2017-08-02 12:42:15 -04:00
										 |  |  | 		Qname: "dns-version.cluster.local.", Qtype: dns.TypeTXT, | 
					
						
							|  |  |  | 		Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Answer: []dns.RR{ | 
					
						
							| 
									
										
										
										
											2019-12-19 15:34:03 +01:00
										 |  |  | 			test.TXT("dns-version.cluster.local 28800 IN TXT 1.1.0"), | 
					
						
							| 
									
										
										
										
											2017-08-02 12:42:15 -04:00
										 |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	}}, | 
					
						
							| 
									
										
										
										
											2022-12-13 20:36:46 +00:00
										 |  |  | 	// A TXT record does not exist but another record for the same FQDN does | 
					
						
							|  |  |  | 	{Case: test.Case{ | 
					
						
							|  |  |  | 		Qname: "svc1.testns.svc.cluster.local.", Qtype: dns.TypeTXT, | 
					
						
							|  |  |  | 		Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Ns: []dns.RR{ | 
					
						
							|  |  |  | 			test.SOA("cluster.local.	5	IN	SOA	ns.dns.cluster.local. hostmaster.cluster.local. 1499347823 7200 1800 86400 5"), | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}}, | 
					
						
							|  |  |  | 	// A TXT record does not exist and neither does another record for the same FQDN | 
					
						
							|  |  |  | 	{Case: test.Case{ | 
					
						
							|  |  |  | 		Qname: "svc0.svc-nons.svc.cluster.local.", Qtype: dns.TypeTXT, | 
					
						
							|  |  |  | 		Rcode: dns.RcodeNameError, | 
					
						
							|  |  |  | 		Ns: []dns.RR{ | 
					
						
							|  |  |  | 			test.SOA("cluster.local.	5	IN	SOA	ns.dns.cluster.local. hostmaster.cluster.local. 1499347823 7200 1800 86400 5"), | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}}, | 
					
						
							| 
									
										
										
										
											2017-09-02 18:49:50 +02:00
										 |  |  | 	// A Service (Headless) does not exist | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	{Case: test.Case{ | 
					
						
							| 
									
										
										
										
											2017-08-23 07:19:41 +01:00
										 |  |  | 		Qname: "bogusendpoint.hdls1.testns.svc.cluster.local.", Qtype: dns.TypeA, | 
					
						
							|  |  |  | 		Rcode: dns.RcodeNameError, | 
					
						
							|  |  |  | 		Ns: []dns.RR{ | 
					
						
							| 
									
										
										
										
											2019-01-10 10:49:53 -05:00
										 |  |  | 			test.SOA("cluster.local.	5	IN	SOA	ns.dns.cluster.local. hostmaster.cluster.local. 1499347823 7200 1800 86400 5"), | 
					
						
							| 
									
										
										
										
											2017-08-23 07:19:41 +01:00
										 |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	}}, | 
					
						
							| 
									
										
										
										
											2017-09-02 18:49:50 +02:00
										 |  |  | 	// A Service does not exist | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	{Case: test.Case{ | 
					
						
							| 
									
										
										
										
											2017-08-23 07:19:41 +01:00
										 |  |  | 		Qname: "bogusendpoint.svc0.testns.svc.cluster.local.", Qtype: dns.TypeA, | 
					
						
							|  |  |  | 		Rcode: dns.RcodeNameError, | 
					
						
							|  |  |  | 		Ns: []dns.RR{ | 
					
						
							| 
									
										
										
										
											2019-01-10 10:49:53 -05:00
										 |  |  | 			test.SOA("cluster.local.	5	IN	SOA	ns.dns.cluster.local. hostmaster.cluster.local. 1499347823 7200 1800 86400 5"), | 
					
						
							| 
									
										
										
										
											2017-08-23 07:19:41 +01:00
										 |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	}}, | 
					
						
							| 
									
										
										
										
											2017-11-15 02:16:04 -05:00
										 |  |  | 	// AAAA Service | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	{Case: test.Case{ | 
					
						
							| 
									
										
										
										
											2017-11-15 02:16:04 -05:00
										 |  |  | 		Qname: "svc6.testns.svc.cluster.local.", Qtype: dns.TypeAAAA, | 
					
						
							|  |  |  | 		Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Answer: []dns.RR{ | 
					
						
							|  |  |  | 			test.AAAA("svc6.testns.svc.cluster.local.	5	IN	AAAA	1234:abcd::1"), | 
					
						
							|  |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	}}, | 
					
						
							| 
									
										
										
										
											2017-12-14 13:14:10 -06:00
										 |  |  | 	// SRV | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	{Case: test.Case{ | 
					
						
							| 
									
										
										
										
											2017-12-14 13:14:10 -06:00
										 |  |  | 		Qname: "_http._tcp.svc6.testns.svc.cluster.local.", Qtype: dns.TypeSRV, | 
					
						
							|  |  |  | 		Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Answer: []dns.RR{ | 
					
						
							|  |  |  | 			test.SRV("_http._tcp.svc6.testns.svc.cluster.local.	5	IN	SRV	0 100 80 svc6.testns.svc.cluster.local."), | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		Extra: []dns.RR{ | 
					
						
							|  |  |  | 			test.AAAA("svc6.testns.svc.cluster.local.	5	IN	AAAA	1234:abcd::1"), | 
					
						
							|  |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	}}, | 
					
						
							| 
									
										
										
										
											2017-11-15 02:16:04 -05:00
										 |  |  | 	// AAAA Service (Headless) | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	{Case: test.Case{ | 
					
						
							| 
									
										
										
										
											2017-11-15 02:16:04 -05:00
										 |  |  | 		Qname: "hdls1.testns.svc.cluster.local.", Qtype: dns.TypeAAAA, | 
					
						
							|  |  |  | 		Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Answer: []dns.RR{ | 
					
						
							| 
									
										
										
										
											2017-11-15 15:04:17 +00:00
										 |  |  | 			test.AAAA("hdls1.testns.svc.cluster.local.	5	IN	AAAA	5678:abcd::1"), | 
					
						
							|  |  |  | 			test.AAAA("hdls1.testns.svc.cluster.local.	5	IN	AAAA	5678:abcd::2"), | 
					
						
							| 
									
										
										
										
											2017-11-15 02:16:04 -05:00
										 |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	}}, | 
					
						
							| 
									
										
										
										
											2017-11-15 02:16:04 -05:00
										 |  |  | 	// AAAA Endpoint | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	{Case: test.Case{ | 
					
						
							| 
									
										
										
										
											2017-11-15 02:16:04 -05:00
										 |  |  | 		Qname: "5678-abcd--1.hdls1.testns.svc.cluster.local.", Qtype: dns.TypeAAAA, | 
					
						
							|  |  |  | 		Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Answer: []dns.RR{ | 
					
						
							| 
									
										
										
										
											2017-11-15 15:04:17 +00:00
										 |  |  | 			test.AAAA("5678-abcd--1.hdls1.testns.svc.cluster.local.	5	IN	AAAA	5678:abcd::1"), | 
					
						
							| 
									
										
										
										
											2017-11-15 02:16:04 -05:00
										 |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	}}, | 
					
						
							| 
									
										
										
										
											2018-05-18 02:27:25 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	{Case: test.Case{ | 
					
						
							| 
									
										
										
										
											2018-04-18 12:12:28 -04:00
										 |  |  | 		Qname: "svc.cluster.local.", Qtype: dns.TypeA, | 
					
						
							|  |  |  | 		Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Ns: []dns.RR{ | 
					
						
							| 
									
										
										
										
											2019-01-10 10:49:53 -05:00
										 |  |  | 			test.SOA("cluster.local.	5	IN	SOA	ns.dns.cluster.local. hostmaster.cluster.local. 1499347823 7200 1800 86400 5"), | 
					
						
							| 
									
										
										
										
											2018-04-18 12:12:28 -04:00
										 |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	}}, | 
					
						
							|  |  |  | 	{Case: test.Case{ | 
					
						
							| 
									
										
										
										
											2018-04-18 12:12:28 -04:00
										 |  |  | 		Qname: "pod.cluster.local.", Qtype: dns.TypeA, | 
					
						
							|  |  |  | 		Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Ns: []dns.RR{ | 
					
						
							| 
									
										
										
										
											2019-01-10 10:49:53 -05:00
										 |  |  | 			test.SOA("cluster.local.	5	IN	SOA	ns.dns.cluster.local. hostmaster.cluster.local. 1499347823 7200 1800 86400 5"), | 
					
						
							| 
									
										
										
										
											2018-04-18 12:12:28 -04:00
										 |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	}}, | 
					
						
							|  |  |  | 	{Case: test.Case{ | 
					
						
							| 
									
										
										
										
											2018-08-27 14:41:04 -04:00
										 |  |  | 		Qname: "testns.svc.cluster.local.", Qtype: dns.TypeA, | 
					
						
							|  |  |  | 		Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Ns: []dns.RR{ | 
					
						
							| 
									
										
										
										
											2019-01-10 10:49:53 -05:00
										 |  |  | 			test.SOA("cluster.local.	5	IN	SOA	ns.dns.cluster.local. hostmaster.cluster.local. 1499347823 7200 1800 86400 5"), | 
					
						
							| 
									
										
										
										
											2018-08-27 14:41:04 -04:00
										 |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	}}, | 
					
						
							| 
									
										
										
										
											2019-08-09 17:14:48 -04:00
										 |  |  | 	// NS query for qname != zone (existing domain) | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	{Case: test.Case{ | 
					
						
							| 
									
										
										
										
											2019-08-09 17:14:48 -04:00
										 |  |  | 		Qname: "svc.cluster.local.", Qtype: dns.TypeNS, | 
					
						
							|  |  |  | 		Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Ns: []dns.RR{ | 
					
						
							|  |  |  | 			test.SOA("cluster.local.	5	IN	SOA	ns.dns.cluster.local. hostmaster.cluster.local. 1499347823 7200 1800 86400 5"), | 
					
						
							|  |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	}}, | 
					
						
							| 
									
										
										
										
											2019-08-12 14:43:22 -04:00
										 |  |  | 	// NS query for qname != zone (existing domain) | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	{Case: test.Case{ | 
					
						
							| 
									
										
										
										
											2019-08-12 14:43:22 -04:00
										 |  |  | 		Qname: "testns.svc.cluster.local.", Qtype: dns.TypeNS, | 
					
						
							|  |  |  | 		Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Ns: []dns.RR{ | 
					
						
							|  |  |  | 			test.SOA("cluster.local.	5	IN	SOA	ns.dns.cluster.local. hostmaster.cluster.local. 1499347823 7200 1800 86400 5"), | 
					
						
							|  |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	}}, | 
					
						
							| 
									
										
										
										
											2019-08-12 14:43:22 -04:00
										 |  |  | 	// NS query for qname != zone (non existing domain) | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	{Case: test.Case{ | 
					
						
							| 
									
										
										
										
											2019-08-12 14:43:22 -04:00
										 |  |  | 		Qname: "foo.cluster.local.", Qtype: dns.TypeNS, | 
					
						
							|  |  |  | 		Rcode: dns.RcodeNameError, | 
					
						
							|  |  |  | 		Ns: []dns.RR{ | 
					
						
							|  |  |  | 			test.SOA("cluster.local.	5	IN	SOA	ns.dns.cluster.local. hostmaster.cluster.local. 1499347823 7200 1800 86400 5"), | 
					
						
							|  |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	}}, | 
					
						
							| 
									
										
										
										
											2019-08-12 14:43:22 -04:00
										 |  |  | 	// NS query for qname != zone (non existing domain) | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	{Case: test.Case{ | 
					
						
							| 
									
										
										
										
											2019-08-12 14:43:22 -04:00
										 |  |  | 		Qname: "foo.svc.cluster.local.", Qtype: dns.TypeNS, | 
					
						
							|  |  |  | 		Rcode: dns.RcodeNameError, | 
					
						
							|  |  |  | 		Ns: []dns.RR{ | 
					
						
							|  |  |  | 			test.SOA("cluster.local.	5	IN	SOA	ns.dns.cluster.local. hostmaster.cluster.local. 1499347823 7200 1800 86400 5"), | 
					
						
							|  |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	}}, | 
					
						
							| 
									
										
										
										
											2020-12-21 05:30:24 -05:00
										 |  |  | 	// Dual Stack ClusterIP Services | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	{Case: test.Case{ | 
					
						
							| 
									
										
										
										
											2020-12-21 05:30:24 -05:00
										 |  |  | 		Qname: "svc-dual-stack.testns.svc.cluster.local.", Qtype: dns.TypeA, | 
					
						
							|  |  |  | 		Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Answer: []dns.RR{ | 
					
						
							|  |  |  | 			test.A("svc-dual-stack.testns.svc.cluster.local.	5	IN	A	10.0.0.3"), | 
					
						
							|  |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	}}, | 
					
						
							|  |  |  | 	{Case: test.Case{ | 
					
						
							| 
									
										
										
										
											2020-12-21 05:30:24 -05:00
										 |  |  | 		Qname: "svc-dual-stack.testns.svc.cluster.local.", Qtype: dns.TypeAAAA, | 
					
						
							|  |  |  | 		Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Answer: []dns.RR{ | 
					
						
							|  |  |  | 			test.AAAA("svc-dual-stack.testns.svc.cluster.local.	5	IN	AAAA	10::3"), | 
					
						
							|  |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	}}, | 
					
						
							|  |  |  | 	{Case: test.Case{ | 
					
						
							| 
									
										
										
										
											2020-12-21 05:30:24 -05:00
										 |  |  | 		Qname: "svc-dual-stack.testns.svc.cluster.local.", Qtype: dns.TypeSRV, | 
					
						
							| 
									
										
										
										
											2022-11-04 09:54:57 -04:00
										 |  |  | 		Rcode:  dns.RcodeSuccess, | 
					
						
							| 
									
										
										
										
											2020-12-21 05:30:24 -05:00
										 |  |  | 		Answer: []dns.RR{test.SRV("svc-dual-stack.testns.svc.cluster.local.	5	IN	SRV	0 50 80 svc-dual-stack.testns.svc.cluster.local.")}, | 
					
						
							|  |  |  | 		Extra: []dns.RR{ | 
					
						
							|  |  |  | 			test.A("svc-dual-stack.testns.svc.cluster.local.  5       IN      A       10.0.0.3"), | 
					
						
							|  |  |  | 			test.AAAA("svc-dual-stack.testns.svc.cluster.local.  5       IN      AAAA       10::3"), | 
					
						
							|  |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	}}, | 
					
						
							|  |  |  | 	{Case: test.Case{ | 
					
						
							| 
									
										
										
										
											2021-05-04 05:05:08 -04:00
										 |  |  | 		Qname: "svc1.testns.svc.cluster.local.", Qtype: dns.TypeSOA, | 
					
						
							|  |  |  | 		Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Ns: []dns.RR{ | 
					
						
							|  |  |  | 			test.SOA("cluster.local.	5	IN	SOA	ns.dns.cluster.local. hostmaster.cluster.local. 1499347823 7200 1800 86400 5"), | 
					
						
							|  |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 	}}, | 
					
						
							| 
									
										
										
										
											2022-11-04 09:54:57 -04:00
										 |  |  | 	// A query for a subdomain of an external service should not resolve to the external service | 
					
						
							|  |  |  | 	{Case: test.Case{ | 
					
						
							|  |  |  | 		Qname: "endpoint.external.testns.svc.cluster.local.", Qtype: dns.TypeCNAME, | 
					
						
							|  |  |  | 		Rcode: dns.RcodeNameError, | 
					
						
							|  |  |  | 		Ns: []dns.RR{ | 
					
						
							|  |  |  | 			test.SOA("cluster.local.	5	IN	SOA	ns.dns.cluster.local. hostmaster.cluster.local. 1499347823 7200 1800 86400 5"), | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}}, | 
					
						
							| 
									
										
										
										
											2023-06-19 05:42:17 -07:00
										 |  |  | 	// A query for a subdomain of a subdomain of an external service should not resolve to the external service | 
					
						
							|  |  |  | 	{Case: test.Case{ | 
					
						
							|  |  |  | 		Qname: "subdomain.subdomain.external.testns.svc.cluster.local.", Qtype: dns.TypeCNAME, | 
					
						
							|  |  |  | 		Rcode: dns.RcodeNameError, | 
					
						
							|  |  |  | 		Ns: []dns.RR{ | 
					
						
							|  |  |  | 			test.SOA("cluster.local.	5	IN	SOA	ns.dns.cluster.local. hostmaster.cluster.local. 1499347823 7200 1800 86400 5"), | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}}, | 
					
						
							| 
									
										
										
										
											2017-07-11 18:05:32 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestServeDNS(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2017-08-18 14:45:20 +01:00
										 |  |  | 	k := New([]string{"cluster.local."}) | 
					
						
							| 
									
										
										
										
											2017-07-11 18:05:32 -04:00
										 |  |  | 	k.APIConn = &APIConnServeTest{} | 
					
						
							| 
									
										
										
										
											2017-08-07 14:45:30 -07:00
										 |  |  | 	k.Next = test.NextHandler(dns.RcodeSuccess, nil) | 
					
						
							| 
									
										
										
										
											2019-02-17 03:32:28 -05:00
										 |  |  | 	k.Namespaces = map[string]struct{}{"testns": {}} | 
					
						
							| 
									
										
										
										
											2017-07-11 18:05:32 -04:00
										 |  |  | 	ctx := context.TODO() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-02 18:49:50 +02:00
										 |  |  | 	for i, tc := range dnsTestCases { | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 		k.Upstream = tc.Upstream | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-11 18:05:32 -04:00
										 |  |  | 		r := tc.Msg() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-21 15:15:47 +01:00
										 |  |  | 		w := dnstest.NewRecorder(&test.ResponseWriter{}) | 
					
						
							| 
									
										
										
										
											2017-07-11 18:05:32 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		_, err := k.ServeDNS(ctx, w, r) | 
					
						
							| 
									
										
										
										
											2017-08-03 15:16:50 -04:00
										 |  |  | 		if err != tc.Error { | 
					
						
							| 
									
										
										
										
											2017-09-02 18:49:50 +02:00
										 |  |  | 			t.Errorf("Test %d expected no error, got %v", i, err) | 
					
						
							| 
									
										
										
										
											2017-07-11 18:05:32 -04:00
										 |  |  | 			return | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-08-03 15:16:50 -04:00
										 |  |  | 		if tc.Error != nil { | 
					
						
							|  |  |  | 			continue | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-07-11 18:05:32 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		resp := w.Msg | 
					
						
							| 
									
										
										
										
											2017-08-07 14:45:30 -07:00
										 |  |  | 		if resp == nil { | 
					
						
							| 
									
										
										
										
											2017-09-02 18:49:50 +02:00
										 |  |  | 			t.Fatalf("Test %d, got nil message and no error for %q", i, r.Question[0].Name) | 
					
						
							| 
									
										
										
										
											2017-08-07 14:45:30 -07:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-07-11 18:05:32 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 		if tc.Truncated != resp.Truncated { | 
					
						
							|  |  |  | 			t.Errorf("Expected truncation %t, got truncation %t", tc.Truncated, resp.Truncated) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-11 18:05:32 -04:00
										 |  |  | 		// Before sorting, make sure that CNAMES do not appear after their target records | 
					
						
							| 
									
										
										
										
											2019-01-19 11:23:13 +00:00
										 |  |  | 		if err := test.CNAMEOrder(resp); err != nil { | 
					
						
							| 
									
										
										
										
											2022-02-14 10:32:27 +00:00
										 |  |  | 			t.Errorf("Test %d, %v", i, err) | 
					
						
							| 
									
										
										
										
											2019-01-19 11:23:13 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-07-11 18:05:32 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 		if err := test.SortAndCheck(resp, tc.Case); err != nil { | 
					
						
							| 
									
										
										
										
											2022-02-14 10:32:27 +00:00
										 |  |  | 			t.Errorf("Test %d, %v", i, err) | 
					
						
							| 
									
										
										
										
											2019-01-19 11:23:13 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-07-11 18:05:32 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-22 08:32:40 -06:00
										 |  |  | var nsTestCases = []test.Case{ | 
					
						
							|  |  |  | 	// A Service for an "exposed" namespace that "does exist" | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		Qname: "svc1.testns.svc.cluster.local.", Qtype: dns.TypeA, | 
					
						
							|  |  |  | 		Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Answer: []dns.RR{ | 
					
						
							|  |  |  | 			test.A("svc1.testns.svc.cluster.local.	5	IN	A	10.0.0.1"), | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	// A service for an "exposed" namespace that "doesn't exist" | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		Qname: "svc1.nsnoexist.svc.cluster.local.", Qtype: dns.TypeA, | 
					
						
							|  |  |  | 		Rcode: dns.RcodeNameError, | 
					
						
							|  |  |  | 		Ns: []dns.RR{ | 
					
						
							|  |  |  | 			test.SOA("cluster.local.	300	IN	SOA	ns.dns.cluster.local. hostmaster.cluster.local. 1551484803 7200 1800 86400 30"), | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestServeNamespaceDNS(t *testing.T) { | 
					
						
							|  |  |  | 	k := New([]string{"cluster.local."}) | 
					
						
							|  |  |  | 	k.APIConn = &APIConnServeTest{} | 
					
						
							|  |  |  | 	k.Next = test.NextHandler(dns.RcodeSuccess, nil) | 
					
						
							|  |  |  | 	// if no namespaces are explicitly exposed, then they are all implicitly exposed | 
					
						
							|  |  |  | 	k.Namespaces = map[string]struct{}{} | 
					
						
							|  |  |  | 	ctx := context.TODO() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for i, tc := range nsTestCases { | 
					
						
							|  |  |  | 		r := tc.Msg() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		w := dnstest.NewRecorder(&test.ResponseWriter{}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		_, err := k.ServeDNS(ctx, w, r) | 
					
						
							|  |  |  | 		if err != tc.Error { | 
					
						
							|  |  |  | 			t.Errorf("Test %d expected no error, got %v", i, err) | 
					
						
							|  |  |  | 			return | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if tc.Error != nil { | 
					
						
							|  |  |  | 			continue | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		resp := w.Msg | 
					
						
							|  |  |  | 		if resp == nil { | 
					
						
							|  |  |  | 			t.Fatalf("Test %d, got nil message and no error for %q", i, r.Question[0].Name) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Before sorting, make sure that CNAMES do not appear after their target records | 
					
						
							|  |  |  | 		test.CNAMEOrder(resp) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		test.SortAndCheck(resp, tc) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-22 09:30:08 -04:00
										 |  |  | var notSyncedTestCases = []test.Case{ | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		// We should get ServerFailure instead of NameError for missing records when we kubernetes hasn't synced | 
					
						
							|  |  |  | 		Qname: "svc0.testns.svc.cluster.local.", Qtype: dns.TypeA, | 
					
						
							|  |  |  | 		Rcode: dns.RcodeServerFailure, | 
					
						
							|  |  |  | 		Ns: []dns.RR{ | 
					
						
							| 
									
										
										
										
											2019-01-10 10:49:53 -05:00
										 |  |  | 			test.SOA("cluster.local.	5	IN	SOA	ns.dns.cluster.local. hostmaster.cluster.local. 1499347823 7200 1800 86400 5"), | 
					
						
							| 
									
										
										
										
											2018-10-22 09:30:08 -04:00
										 |  |  | 		}, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestNotSyncedServeDNS(t *testing.T) { | 
					
						
							|  |  |  | 	k := New([]string{"cluster.local."}) | 
					
						
							|  |  |  | 	k.APIConn = &APIConnServeTest{ | 
					
						
							|  |  |  | 		notSynced: true, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	k.Next = test.NextHandler(dns.RcodeSuccess, nil) | 
					
						
							| 
									
										
										
										
											2019-02-17 03:32:28 -05:00
										 |  |  | 	k.Namespaces = map[string]struct{}{"testns": {}} | 
					
						
							| 
									
										
										
										
											2018-10-22 09:30:08 -04:00
										 |  |  | 	ctx := context.TODO() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for i, tc := range notSyncedTestCases { | 
					
						
							|  |  |  | 		r := tc.Msg() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		w := dnstest.NewRecorder(&test.ResponseWriter{}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		_, err := k.ServeDNS(ctx, w, r) | 
					
						
							|  |  |  | 		if err != tc.Error { | 
					
						
							|  |  |  | 			t.Errorf("Test %d expected no error, got %v", i, err) | 
					
						
							|  |  |  | 			return | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if tc.Error != nil { | 
					
						
							|  |  |  | 			continue | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		resp := w.Msg | 
					
						
							|  |  |  | 		if resp == nil { | 
					
						
							|  |  |  | 			t.Fatalf("Test %d, got nil message and no error for %q", i, r.Question[0].Name) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-19 11:23:13 +00:00
										 |  |  | 		if err := test.CNAMEOrder(resp); err != nil { | 
					
						
							|  |  |  | 			t.Error(err) | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-10-22 09:30:08 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-19 11:23:13 +00:00
										 |  |  | 		if err := test.SortAndCheck(resp, tc); err != nil { | 
					
						
							|  |  |  | 			t.Error(err) | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-10-22 09:30:08 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type APIConnServeTest struct { | 
					
						
							|  |  |  | 	notSynced bool | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-07-11 18:05:32 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-06 13:55:15 -04:00
										 |  |  | func (a APIConnServeTest) HasSynced() bool                           { return !a.notSynced } | 
					
						
							|  |  |  | func (APIConnServeTest) Run()                                        {} | 
					
						
							|  |  |  | func (APIConnServeTest) Stop() error                                 { return nil } | 
					
						
							|  |  |  | func (APIConnServeTest) EpIndexReverse(string) []*object.Endpoints   { return nil } | 
					
						
							|  |  |  | func (APIConnServeTest) SvcIndexReverse(string) []*object.Service    { return nil } | 
					
						
							|  |  |  | func (APIConnServeTest) SvcExtIndexReverse(string) []*object.Service { return nil } | 
					
						
							|  |  |  | func (APIConnServeTest) Modified(bool) int64                         { return int64(3) } | 
					
						
							| 
									
										
										
										
											2017-07-11 18:05:32 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-09 00:10:57 -07:00
										 |  |  | func (APIConnServeTest) PodIndex(ip string) []*object.Pod { | 
					
						
							|  |  |  | 	if ip != "10.240.0.1" { | 
					
						
							|  |  |  | 		return []*object.Pod{} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-10-09 21:56:09 +01:00
										 |  |  | 	a := []*object.Pod{ | 
					
						
							| 
									
										
										
										
											2019-06-09 00:10:57 -07:00
										 |  |  | 		{Namespace: "podns", Name: "foo", PodIP: "10.240.0.1"}, // Remote IP set in test.ResponseWriter | 
					
						
							| 
									
										
										
										
											2018-10-09 21:56:09 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-07-11 18:05:32 -04:00
										 |  |  | 	return a | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-11 21:59:50 +01:00
										 |  |  | var svcIndex = map[string][]*object.Service{ | 
					
						
							| 
									
										
										
										
											2021-06-14 10:39:40 -04:00
										 |  |  | 	"kubedns.kube-system": { | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			Name:       "kubedns", | 
					
						
							|  |  |  | 			Namespace:  "kube-system", | 
					
						
							|  |  |  | 			Type:       api.ServiceTypeClusterIP, | 
					
						
							|  |  |  | 			ClusterIPs: []string{"10.0.0.10"}, | 
					
						
							|  |  |  | 			Ports: []api.ServicePort{ | 
					
						
							|  |  |  | 				{Name: "dns", Protocol: "udp", Port: 53}, | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2018-10-11 21:59:50 +01:00
										 |  |  | 	"svc1.testns": { | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2020-12-21 05:30:24 -05:00
										 |  |  | 			Name:       "svc1", | 
					
						
							|  |  |  | 			Namespace:  "testns", | 
					
						
							|  |  |  | 			Type:       api.ServiceTypeClusterIP, | 
					
						
							|  |  |  | 			ClusterIPs: []string{"10.0.0.1"}, | 
					
						
							| 
									
										
										
										
											2018-10-11 21:59:50 +01:00
										 |  |  | 			Ports: []api.ServicePort{ | 
					
						
							|  |  |  | 				{Name: "http", Protocol: "tcp", Port: 80}, | 
					
						
							|  |  |  | 			}, | 
					
						
							| 
									
										
										
										
											2017-11-15 02:16:04 -05:00
										 |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2018-10-09 21:56:09 +01:00
										 |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2018-10-11 21:59:50 +01:00
										 |  |  | 	"svcempty.testns": { | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2020-12-21 05:30:24 -05:00
										 |  |  | 			Name:       "svcempty", | 
					
						
							|  |  |  | 			Namespace:  "testns", | 
					
						
							|  |  |  | 			Type:       api.ServiceTypeClusterIP, | 
					
						
							|  |  |  | 			ClusterIPs: []string{"10.0.0.1"}, | 
					
						
							| 
									
										
										
										
											2018-10-11 21:59:50 +01:00
										 |  |  | 			Ports: []api.ServicePort{ | 
					
						
							|  |  |  | 				{Name: "http", Protocol: "tcp", Port: 80}, | 
					
						
							|  |  |  | 			}, | 
					
						
							| 
									
										
										
										
											2018-05-23 14:57:59 +02:00
										 |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2018-10-09 21:56:09 +01:00
										 |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2018-10-11 21:59:50 +01:00
										 |  |  | 	"svc6.testns": { | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2020-12-21 05:30:24 -05:00
										 |  |  | 			Name:       "svc6", | 
					
						
							|  |  |  | 			Namespace:  "testns", | 
					
						
							|  |  |  | 			Type:       api.ServiceTypeClusterIP, | 
					
						
							|  |  |  | 			ClusterIPs: []string{"1234:abcd::1"}, | 
					
						
							| 
									
										
										
										
											2018-10-11 21:59:50 +01:00
										 |  |  | 			Ports: []api.ServicePort{ | 
					
						
							|  |  |  | 				{Name: "http", Protocol: "tcp", Port: 80}, | 
					
						
							|  |  |  | 			}, | 
					
						
							| 
									
										
										
										
											2017-11-15 02:16:04 -05:00
										 |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2018-10-09 21:56:09 +01:00
										 |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2018-10-11 21:59:50 +01:00
										 |  |  | 	"hdls1.testns": { | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2020-12-21 05:30:24 -05:00
										 |  |  | 			Name:       "hdls1", | 
					
						
							|  |  |  | 			Namespace:  "testns", | 
					
						
							|  |  |  | 			Type:       api.ServiceTypeClusterIP, | 
					
						
							|  |  |  | 			ClusterIPs: []string{api.ClusterIPNone}, | 
					
						
							| 
									
										
										
										
											2018-10-11 21:59:50 +01:00
										 |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2018-10-09 21:56:09 +01:00
										 |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2018-10-11 21:59:50 +01:00
										 |  |  | 	"external.testns": { | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			Name:         "external", | 
					
						
							|  |  |  | 			Namespace:    "testns", | 
					
						
							|  |  |  | 			ExternalName: "ext.interwebs.test", | 
					
						
							|  |  |  | 			Type:         api.ServiceTypeExternalName, | 
					
						
							|  |  |  | 			Ports: []api.ServicePort{ | 
					
						
							|  |  |  | 				{Name: "http", Protocol: "tcp", Port: 80}, | 
					
						
							|  |  |  | 			}, | 
					
						
							| 
									
										
										
										
											2018-08-25 20:53:41 +08:00
										 |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2018-10-09 21:56:09 +01:00
										 |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2018-10-11 21:59:50 +01:00
										 |  |  | 	"external-to-service.testns": { | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			Name:         "external-to-service", | 
					
						
							|  |  |  | 			Namespace:    "testns", | 
					
						
							|  |  |  | 			ExternalName: "svc1.testns.svc.cluster.local.", | 
					
						
							|  |  |  | 			Type:         api.ServiceTypeExternalName, | 
					
						
							|  |  |  | 			Ports: []api.ServicePort{ | 
					
						
							|  |  |  | 				{Name: "http", Protocol: "tcp", Port: 80}, | 
					
						
							|  |  |  | 			}, | 
					
						
							| 
									
										
										
										
											2018-08-25 20:53:41 +08:00
										 |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2018-10-09 21:56:09 +01:00
										 |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2018-10-11 21:59:50 +01:00
										 |  |  | 	"hdlsprtls.testns": { | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2020-12-21 05:30:24 -05:00
										 |  |  | 			Name:       "hdlsprtls", | 
					
						
							|  |  |  | 			Namespace:  "testns", | 
					
						
							|  |  |  | 			Type:       api.ServiceTypeClusterIP, | 
					
						
							|  |  |  | 			ClusterIPs: []string{api.ClusterIPNone}, | 
					
						
							| 
									
										
										
										
											2018-10-11 21:59:50 +01:00
										 |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2018-10-09 21:56:09 +01:00
										 |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2018-10-11 21:59:50 +01:00
										 |  |  | 	"svc1.unexposedns": { | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2020-12-21 05:30:24 -05:00
										 |  |  | 			Name:       "svc1", | 
					
						
							|  |  |  | 			Namespace:  "unexposedns", | 
					
						
							|  |  |  | 			Type:       api.ServiceTypeClusterIP, | 
					
						
							|  |  |  | 			ClusterIPs: []string{"10.0.0.2"}, | 
					
						
							| 
									
										
										
										
											2018-10-11 21:59:50 +01:00
										 |  |  | 			Ports: []api.ServicePort{ | 
					
						
							|  |  |  | 				{Name: "http", Protocol: "tcp", Port: 80}, | 
					
						
							|  |  |  | 			}, | 
					
						
							| 
									
										
										
										
											2018-08-27 10:38:49 -04:00
										 |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2018-10-09 21:56:09 +01:00
										 |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2020-12-21 05:30:24 -05:00
										 |  |  | 	"svc-dual-stack.testns": { | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			Name:       "svc-dual-stack", | 
					
						
							|  |  |  | 			Namespace:  "testns", | 
					
						
							|  |  |  | 			Type:       api.ServiceTypeClusterIP, | 
					
						
							|  |  |  | 			ClusterIPs: []string{"10.0.0.3", "10::3"}, Ports: []api.ServicePort{ | 
					
						
							|  |  |  | 				{Name: "http", Protocol: "tcp", Port: 80}, | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2017-11-15 02:16:04 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-11 21:59:50 +01:00
										 |  |  | func (APIConnServeTest) SvcIndex(s string) []*object.Service { return svcIndex[s] } | 
					
						
							| 
									
										
										
										
											2017-10-17 21:30:54 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-09 21:56:09 +01:00
										 |  |  | func (APIConnServeTest) ServiceList() []*object.Service { | 
					
						
							|  |  |  | 	var svcs []*object.Service | 
					
						
							| 
									
										
										
										
											2017-11-15 02:16:04 -05:00
										 |  |  | 	for _, svc := range svcIndex { | 
					
						
							| 
									
										
										
										
											2018-10-11 21:59:50 +01:00
										 |  |  | 		svcs = append(svcs, svc...) | 
					
						
							| 
									
										
										
										
											2017-07-11 18:05:32 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	return svcs | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-11 21:59:50 +01:00
										 |  |  | var epsIndex = map[string][]*object.Endpoints{ | 
					
						
							| 
									
										
										
										
											2021-06-14 10:39:40 -04:00
										 |  |  | 	"kubedns.kube-system": {{ | 
					
						
							|  |  |  | 		Subsets: []object.EndpointSubset{ | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				Addresses: []object.EndpointAddress{ | 
					
						
							|  |  |  | 					{IP: "172.0.0.100"}, | 
					
						
							|  |  |  | 				}, | 
					
						
							|  |  |  | 				Ports: []object.EndpointPort{ | 
					
						
							|  |  |  | 					{Port: 53, Protocol: "udp", Name: "dns"}, | 
					
						
							|  |  |  | 				}, | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		Name:      "kubedns", | 
					
						
							|  |  |  | 		Namespace: "kube-system", | 
					
						
							|  |  |  | 		Index:     object.EndpointsKey("kubedns", "kube-system"), | 
					
						
							|  |  |  | 	}}, | 
					
						
							| 
									
										
										
										
											2018-10-11 21:59:50 +01:00
										 |  |  | 	"svc1.testns": {{ | 
					
						
							| 
									
										
										
										
											2018-10-09 21:56:09 +01:00
										 |  |  | 		Subsets: []object.EndpointSubset{ | 
					
						
							| 
									
										
										
										
											2017-11-15 02:16:04 -05:00
										 |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2018-10-09 21:56:09 +01:00
										 |  |  | 				Addresses: []object.EndpointAddress{ | 
					
						
							|  |  |  | 					{IP: "172.0.0.1", Hostname: "ep1a"}, | 
					
						
							| 
									
										
										
										
											2017-11-15 02:16:04 -05:00
										 |  |  | 				}, | 
					
						
							| 
									
										
										
										
											2018-10-09 21:56:09 +01:00
										 |  |  | 				Ports: []object.EndpointPort{ | 
					
						
							|  |  |  | 					{Port: 80, Protocol: "tcp", Name: "http"}, | 
					
						
							| 
									
										
										
										
											2017-10-17 21:30:54 -04:00
										 |  |  | 				}, | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2020-10-30 08:14:30 -04:00
										 |  |  | 		Name:      "svc1-slice1", | 
					
						
							| 
									
										
										
										
											2018-10-09 21:56:09 +01:00
										 |  |  | 		Namespace: "testns", | 
					
						
							| 
									
										
										
										
											2020-10-30 08:14:30 -04:00
										 |  |  | 		Index:     object.EndpointsKey("svc1", "testns"), | 
					
						
							| 
									
										
										
										
											2018-10-11 21:59:50 +01:00
										 |  |  | 	}}, | 
					
						
							|  |  |  | 	"svcempty.testns": {{ | 
					
						
							| 
									
										
										
										
											2018-10-09 21:56:09 +01:00
										 |  |  | 		Subsets: []object.EndpointSubset{ | 
					
						
							| 
									
										
										
										
											2018-05-23 14:57:59 +02:00
										 |  |  | 			{ | 
					
						
							|  |  |  | 				Addresses: nil, | 
					
						
							| 
									
										
										
										
											2018-10-09 21:56:09 +01:00
										 |  |  | 				Ports: []object.EndpointPort{ | 
					
						
							|  |  |  | 					{Port: 80, Protocol: "tcp", Name: "http"}, | 
					
						
							| 
									
										
										
										
											2018-05-23 14:57:59 +02:00
										 |  |  | 				}, | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2020-10-30 08:14:30 -04:00
										 |  |  | 		Name:      "svcempty-slice1", | 
					
						
							| 
									
										
										
										
											2018-10-09 21:56:09 +01:00
										 |  |  | 		Namespace: "testns", | 
					
						
							| 
									
										
										
										
											2020-10-30 08:14:30 -04:00
										 |  |  | 		Index:     object.EndpointsKey("svcempty", "testns"), | 
					
						
							| 
									
										
										
										
											2018-10-11 21:59:50 +01:00
										 |  |  | 	}}, | 
					
						
							|  |  |  | 	"hdls1.testns": {{ | 
					
						
							| 
									
										
										
										
											2018-10-09 21:56:09 +01:00
										 |  |  | 		Subsets: []object.EndpointSubset{ | 
					
						
							| 
									
										
										
										
											2017-11-15 02:16:04 -05:00
										 |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2018-10-09 21:56:09 +01:00
										 |  |  | 				Addresses: []object.EndpointAddress{ | 
					
						
							|  |  |  | 					{IP: "172.0.0.2"}, | 
					
						
							|  |  |  | 					{IP: "172.0.0.3"}, | 
					
						
							|  |  |  | 					{IP: "172.0.0.4", Hostname: "dup-name"}, | 
					
						
							|  |  |  | 					{IP: "172.0.0.5", Hostname: "dup-name"}, | 
					
						
							|  |  |  | 					{IP: "5678:abcd::1"}, | 
					
						
							|  |  |  | 					{IP: "5678:abcd::2"}, | 
					
						
							| 
									
										
										
										
											2017-10-17 21:30:54 -04:00
										 |  |  | 				}, | 
					
						
							| 
									
										
										
										
											2018-10-09 21:56:09 +01:00
										 |  |  | 				Ports: []object.EndpointPort{ | 
					
						
							|  |  |  | 					{Port: 80, Protocol: "tcp", Name: "http"}, | 
					
						
							| 
									
										
										
										
											2017-10-17 21:30:54 -04:00
										 |  |  | 				}, | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2020-10-30 08:14:30 -04:00
										 |  |  | 		Name:      "hdls1-slice1", | 
					
						
							| 
									
										
										
										
											2018-10-09 21:56:09 +01:00
										 |  |  | 		Namespace: "testns", | 
					
						
							| 
									
										
										
										
											2020-10-30 08:14:30 -04:00
										 |  |  | 		Index:     object.EndpointsKey("hdls1", "testns"), | 
					
						
							| 
									
										
										
										
											2018-10-11 21:59:50 +01:00
										 |  |  | 	}}, | 
					
						
							|  |  |  | 	"hdlsprtls.testns": {{ | 
					
						
							| 
									
										
										
										
											2018-10-09 21:56:09 +01:00
										 |  |  | 		Subsets: []object.EndpointSubset{ | 
					
						
							| 
									
										
										
										
											2018-08-27 10:10:51 -04:00
										 |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2018-10-09 21:56:09 +01:00
										 |  |  | 				Addresses: []object.EndpointAddress{ | 
					
						
							|  |  |  | 					{IP: "172.0.0.20"}, | 
					
						
							| 
									
										
										
										
											2018-08-27 10:10:51 -04:00
										 |  |  | 				}, | 
					
						
							| 
									
										
										
										
											2018-10-09 21:56:09 +01:00
										 |  |  | 				Ports: []object.EndpointPort{{Port: -1}}, | 
					
						
							| 
									
										
										
										
											2018-08-27 10:10:51 -04:00
										 |  |  | 			}, | 
					
						
							|  |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2020-10-30 08:14:30 -04:00
										 |  |  | 		Name:      "hdlsprtls-slice1", | 
					
						
							| 
									
										
										
										
											2018-10-09 21:56:09 +01:00
										 |  |  | 		Namespace: "testns", | 
					
						
							| 
									
										
										
										
											2020-10-30 08:14:30 -04:00
										 |  |  | 		Index:     object.EndpointsKey("hdlsprtls", "testns"), | 
					
						
							| 
									
										
										
										
											2018-10-11 21:59:50 +01:00
										 |  |  | 	}}, | 
					
						
							| 
									
										
										
										
											2017-10-17 21:30:54 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-11 21:59:50 +01:00
										 |  |  | func (APIConnServeTest) EpIndex(s string) []*object.Endpoints { | 
					
						
							| 
									
										
										
										
											2017-11-15 02:16:04 -05:00
										 |  |  | 	return epsIndex[s] | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-07-11 18:05:32 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-09 21:56:09 +01:00
										 |  |  | func (APIConnServeTest) EndpointsList() []*object.Endpoints { | 
					
						
							|  |  |  | 	var eps []*object.Endpoints | 
					
						
							| 
									
										
										
										
											2017-11-15 02:16:04 -05:00
										 |  |  | 	for _, ep := range epsIndex { | 
					
						
							| 
									
										
										
										
											2018-10-11 21:59:50 +01:00
										 |  |  | 		eps = append(eps, ep...) | 
					
						
							| 
									
										
										
										
											2017-07-11 18:05:32 -04:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-09-29 15:58:50 -04:00
										 |  |  | 	return eps | 
					
						
							| 
									
										
										
										
											2017-07-11 18:05:32 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-30 11:10:41 -07:00
										 |  |  | func (APIConnServeTest) GetNodeByName(ctx context.Context, name string) (*api.Node, error) { | 
					
						
							| 
									
										
										
										
											2017-09-29 15:58:50 -04:00
										 |  |  | 	return &api.Node{ | 
					
						
							|  |  |  | 		ObjectMeta: meta.ObjectMeta{ | 
					
						
							| 
									
										
										
										
											2017-07-11 18:05:32 -04:00
										 |  |  | 			Name: "test.node.foo.bar", | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}, nil | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-11-13 21:51:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-29 21:27:25 -06:00
										 |  |  | func (APIConnServeTest) GetNamespaceByName(name string) (*object.Namespace, error) { | 
					
						
							| 
									
										
										
										
											2017-12-15 15:31:57 -06:00
										 |  |  | 	if name == "pod-nons" { // handler_pod_verified_test.go uses this for non-existent namespace. | 
					
						
							| 
									
										
										
										
											2021-07-29 21:27:25 -06:00
										 |  |  | 		return nil, fmt.Errorf("namespace not found") | 
					
						
							| 
									
										
										
										
											2017-11-13 21:51:51 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-03-22 08:32:40 -06:00
										 |  |  | 	if name == "nsnoexist" { | 
					
						
							|  |  |  | 		return nil, fmt.Errorf("namespace not found") | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-07-29 21:27:25 -06:00
										 |  |  | 	return &object.Namespace{ | 
					
						
							|  |  |  | 		Name: name, | 
					
						
							| 
									
										
										
										
											2017-11-13 21:51:51 +00:00
										 |  |  | 	}, nil | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2022-02-22 09:38:57 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | // Upstub implements an Upstreamer that returns a set response for test purposes | 
					
						
							|  |  |  | type Upstub struct { | 
					
						
							|  |  |  | 	test.Case | 
					
						
							|  |  |  | 	Truncated bool | 
					
						
							|  |  |  | 	Qclass    uint16 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Lookup returns a set response | 
					
						
							|  |  |  | func (t *Upstub) Lookup(ctx context.Context, state request.Request, name string, typ uint16) (*dns.Msg, error) { | 
					
						
							|  |  |  | 	var answer []dns.RR | 
					
						
							|  |  |  | 	// if query type is not CNAME, remove any CNAME with same name as qname from the answer | 
					
						
							|  |  |  | 	if t.Qtype != dns.TypeCNAME { | 
					
						
							|  |  |  | 		for _, a := range t.Answer { | 
					
						
							|  |  |  | 			if c, ok := a.(*dns.CNAME); ok && c.Header().Name == t.Qname { | 
					
						
							|  |  |  | 				continue | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			answer = append(answer, a) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		answer = t.Answer | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return &dns.Msg{ | 
					
						
							|  |  |  | 		MsgHdr: dns.MsgHdr{ | 
					
						
							|  |  |  | 			Response:  true, | 
					
						
							|  |  |  | 			Truncated: t.Truncated, | 
					
						
							|  |  |  | 			Rcode:     t.Rcode, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		Question: []dns.Question{{Name: t.Qname, Qtype: t.Qtype, Qclass: t.Qclass}}, | 
					
						
							|  |  |  | 		Answer:   answer, | 
					
						
							|  |  |  | 		Extra:    t.Extra, | 
					
						
							|  |  |  | 		Ns:       t.Ns, | 
					
						
							|  |  |  | 	}, nil | 
					
						
							|  |  |  | } |