| 
									
										
										
										
											2018-12-14 09:41:51 +00:00
										 |  |  | package external | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"context" | 
					
						
							|  |  |  | 	"testing" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/coredns/coredns/plugin/kubernetes" | 
					
						
							|  |  |  | 	"github.com/coredns/coredns/plugin/kubernetes/object" | 
					
						
							|  |  |  | 	"github.com/coredns/coredns/plugin/pkg/dnstest" | 
					
						
							|  |  |  | 	"github.com/coredns/coredns/plugin/test" | 
					
						
							|  |  |  | 	"github.com/coredns/coredns/request" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/miekg/dns" | 
					
						
							|  |  |  | 	api "k8s.io/api/core/v1" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestExternal(t *testing.T) { | 
					
						
							|  |  |  | 	k := kubernetes.New([]string{"cluster.local."}) | 
					
						
							| 
									
										
										
										
											2019-02-17 03:32:28 -05:00
										 |  |  | 	k.Namespaces = map[string]struct{}{"testns": {}} | 
					
						
							| 
									
										
										
										
											2018-12-14 09:41:51 +00:00
										 |  |  | 	k.APIConn = &external{} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	e := New() | 
					
						
							| 
									
										
										
										
											2022-07-06 13:55:15 -04:00
										 |  |  | 	e.Zones = []string{"example.com.", "in-addr.arpa."} | 
					
						
							| 
									
										
										
										
											2022-08-30 20:59:27 +02:00
										 |  |  | 	e.headless = true | 
					
						
							| 
									
										
										
										
											2018-12-14 09:41:51 +00:00
										 |  |  | 	e.Next = test.NextHandler(dns.RcodeSuccess, nil) | 
					
						
							|  |  |  | 	e.externalFunc = k.External | 
					
						
							| 
									
										
										
										
											2022-03-07 12:16:24 -05:00
										 |  |  | 	e.externalAddrFunc = externalAddress  // internal test function | 
					
						
							|  |  |  | 	e.externalSerialFunc = externalSerial // internal test function | 
					
						
							| 
									
										
										
										
											2018-12-14 09:41:51 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	ctx := context.TODO() | 
					
						
							|  |  |  | 	for i, tc := range tests { | 
					
						
							|  |  |  | 		r := tc.Msg() | 
					
						
							|  |  |  | 		w := dnstest.NewRecorder(&test.ResponseWriter{}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		_, err := e.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 | 
					
						
							| 
									
										
										
										
											2020-05-29 10:04:23 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-14 09:41:51 +00:00
										 |  |  | 		if resp == nil { | 
					
						
							|  |  |  | 			t.Fatalf("Test %d, got nil message and no error for %q", i, r.Question[0].Name) | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2022-04-12 11:01:15 -04:00
										 |  |  | 		if !resp.Authoritative { | 
					
						
							|  |  |  | 			t.Error("Expected authoritative answer") | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2019-01-19 11:23:13 +00:00
										 |  |  | 		if err = test.SortAndCheck(resp, tc); err != nil { | 
					
						
							| 
									
										
										
										
											2022-07-06 13:55:15 -04:00
										 |  |  | 			t.Errorf("Test %d: %v", i, err) | 
					
						
							| 
									
										
										
										
											2019-01-19 11:23:13 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-12-14 09:41:51 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var tests = []test.Case{ | 
					
						
							| 
									
										
										
										
											2022-07-06 13:55:15 -04:00
										 |  |  | 	// PTR reverse lookup | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		Qname: "4.3.2.1.in-addr.arpa.", Qtype: dns.TypePTR, Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Answer: []dns.RR{ | 
					
						
							|  |  |  | 			test.PTR("4.3.2.1.in-addr.arpa. 5 IN PTR svc1.testns.example.com."), | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	// Bad PTR reverse lookup using existing service name | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		Qname: "svc1.testns.example.com.", Qtype: dns.TypePTR, Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Ns: []dns.RR{ | 
					
						
							|  |  |  | 			test.SOA("example.com.	5	IN	SOA	ns1.dns.example.com. hostmaster.example.com. 1499347823 7200 1800 86400 5"), | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	// Bad PTR reverse lookup using non-existing service name | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		Qname: "not-existing.testns.example.com.", Qtype: dns.TypePTR, Rcode: dns.RcodeNameError, | 
					
						
							|  |  |  | 		Ns: []dns.RR{ | 
					
						
							|  |  |  | 			test.SOA("example.com.	5	IN	SOA	ns1.dns.example.com. hostmaster.example.com. 1499347823 7200 1800 86400 5"), | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2018-12-14 09:41:51 +00:00
										 |  |  | 	// A Service | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		Qname: "svc1.testns.example.com.", Qtype: dns.TypeA, Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Answer: []dns.RR{ | 
					
						
							|  |  |  | 			test.A("svc1.testns.example.com.	5	IN	A	1.2.3.4"), | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		Qname: "svc1.testns.example.com.", Qtype: dns.TypeSRV, Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Answer: []dns.RR{test.SRV("svc1.testns.example.com.	5	IN	SRV	0 100 80 svc1.testns.example.com.")}, | 
					
						
							| 
									
										
										
										
											2023-06-09 18:08:23 +02:00
										 |  |  | 		Extra:  []dns.RR{test.A("svc1.testns.example.com.  5       IN      A       1.2.3.4")}, | 
					
						
							| 
									
										
										
										
											2018-12-14 09:41:51 +00:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 	// SRV Service Not udp/tcp | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		Qname: "*._not-udp-or-tcp.svc1.testns.example.com.", Qtype: dns.TypeSRV, Rcode: dns.RcodeNameError, | 
					
						
							|  |  |  | 		Ns: []dns.RR{ | 
					
						
							|  |  |  | 			test.SOA("example.com.	5	IN	SOA	ns1.dns.example.com. hostmaster.example.com. 1499347823 7200 1800 86400 5"), | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	// SRV Service | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		Qname: "_http._tcp.svc1.testns.example.com.", Qtype: dns.TypeSRV, Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Answer: []dns.RR{ | 
					
						
							|  |  |  | 			test.SRV("_http._tcp.svc1.testns.example.com.	5	IN	SRV	0 100 80 svc1.testns.example.com."), | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		Extra: []dns.RR{ | 
					
						
							|  |  |  | 			test.A("svc1.testns.example.com.	5	IN	A	1.2.3.4"), | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	// AAAA Service (with an existing A record, but no AAAA record) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		Qname: "svc1.testns.example.com.", Qtype: dns.TypeAAAA, Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Ns: []dns.RR{ | 
					
						
							|  |  |  | 			test.SOA("example.com.	5	IN	SOA	ns1.dns.example.com. hostmaster.example.com. 1499347823 7200 1800 86400 5"), | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	// AAAA Service (non-existing service) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		Qname: "svc0.testns.example.com.", Qtype: dns.TypeAAAA, Rcode: dns.RcodeNameError, | 
					
						
							|  |  |  | 		Ns: []dns.RR{ | 
					
						
							|  |  |  | 			test.SOA("example.com.	5	IN	SOA	ns1.dns.example.com. hostmaster.example.com. 1499347823 7200 1800 86400 5"), | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	// A Service (non-existing service) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		Qname: "svc0.testns.example.com.", Qtype: dns.TypeA, Rcode: dns.RcodeNameError, | 
					
						
							|  |  |  | 		Ns: []dns.RR{ | 
					
						
							|  |  |  | 			test.SOA("example.com.	5	IN	SOA	ns1.dns.example.com. hostmaster.example.com. 1499347823 7200 1800 86400 5"), | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	// A Service (non-existing namespace) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		Qname: "svc0.svc-nons.example.com.", Qtype: dns.TypeA, Rcode: dns.RcodeNameError, | 
					
						
							|  |  |  | 		Ns: []dns.RR{ | 
					
						
							|  |  |  | 			test.SOA("example.com.	5	IN	SOA	ns1.dns.example.com. hostmaster.example.com. 1499347823 7200 1800 86400 5"), | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	// AAAA Service | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		Qname: "svc6.testns.example.com.", Qtype: dns.TypeAAAA, Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Answer: []dns.RR{ | 
					
						
							|  |  |  | 			test.AAAA("svc6.testns.example.com.	5	IN	AAAA	1:2::5"), | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	// SRV | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		Qname: "_http._tcp.svc6.testns.example.com.", Qtype: dns.TypeSRV, Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Answer: []dns.RR{ | 
					
						
							|  |  |  | 			test.SRV("_http._tcp.svc6.testns.example.com.	5	IN	SRV	0 100 80 svc6.testns.example.com."), | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		Extra: []dns.RR{ | 
					
						
							|  |  |  | 			test.AAAA("svc6.testns.example.com.	5	IN	AAAA	1:2::5"), | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	// SRV | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		Qname: "svc6.testns.example.com.", Qtype: dns.TypeSRV, Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Answer: []dns.RR{ | 
					
						
							|  |  |  | 			test.SRV("svc6.testns.example.com.	5	IN	SRV	0 100 80 svc6.testns.example.com."), | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		Extra: []dns.RR{ | 
					
						
							|  |  |  | 			test.AAAA("svc6.testns.example.com.	5	IN	AAAA	1:2::5"), | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		Qname: "testns.example.com.", Qtype: dns.TypeA, Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Ns: []dns.RR{ | 
					
						
							|  |  |  | 			test.SOA("example.com.	5	IN	SOA	ns1.dns.example.com. hostmaster.example.com. 1499347823 7200 1800 86400 5"), | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		Qname: "testns.example.com.", Qtype: dns.TypeSOA, Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Ns: []dns.RR{ | 
					
						
							|  |  |  | 			test.SOA("example.com.	5	IN	SOA	ns1.dns.example.com. hostmaster.example.com. 1499347823 7200 1800 86400 5"), | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2022-03-07 12:16:24 -05:00
										 |  |  | 	// svc11 | 
					
						
							| 
									
										
										
										
											2020-05-29 10:04:23 -07:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		Qname: "svc11.testns.example.com.", Qtype: dns.TypeA, Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Answer: []dns.RR{ | 
					
						
							| 
									
										
										
										
											2022-07-06 13:55:15 -04:00
										 |  |  | 			test.A("svc11.testns.example.com.	5	IN	A	2.3.4.5"), | 
					
						
							| 
									
										
										
										
											2020-05-29 10:04:23 -07:00
										 |  |  | 		}, | 
					
						
							|  |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2021-10-27 16:59:21 +03:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2022-03-07 12:16:24 -05:00
										 |  |  | 		Qname: "_http._tcp.svc11.testns.example.com.", Qtype: dns.TypeSRV, Rcode: dns.RcodeSuccess, | 
					
						
							| 
									
										
										
										
											2021-10-27 16:59:21 +03:00
										 |  |  | 		Answer: []dns.RR{ | 
					
						
							| 
									
										
										
										
											2022-03-07 12:16:24 -05:00
										 |  |  | 			test.SRV("_http._tcp.svc11.testns.example.com.	5	IN	SRV	0 100 80 svc11.testns.example.com."), | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		Extra: []dns.RR{ | 
					
						
							| 
									
										
										
										
											2022-07-06 13:55:15 -04:00
										 |  |  | 			test.A("svc11.testns.example.com.	5	IN	A	2.3.4.5"), | 
					
						
							| 
									
										
										
										
											2022-03-07 12:16:24 -05:00
										 |  |  | 		}, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		Qname: "svc11.testns.example.com.", Qtype: dns.TypeSRV, Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Answer: []dns.RR{ | 
					
						
							|  |  |  | 			test.SRV("svc11.testns.example.com.	5	IN	SRV	0 100 80 svc11.testns.example.com."), | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		Extra: []dns.RR{ | 
					
						
							| 
									
										
										
										
											2022-07-06 13:55:15 -04:00
										 |  |  | 			test.A("svc11.testns.example.com.	5	IN	A	2.3.4.5"), | 
					
						
							| 
									
										
										
										
											2021-10-27 16:59:21 +03:00
										 |  |  | 		}, | 
					
						
							|  |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2022-03-07 12:16:24 -05:00
										 |  |  | 	// svc12 | 
					
						
							| 
									
										
										
										
											2020-05-29 10:04:23 -07:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		Qname: "svc12.testns.example.com.", Qtype: dns.TypeA, Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Answer: []dns.RR{ | 
					
						
							|  |  |  | 			test.CNAME("svc12.testns.example.com.	5	IN	CNAME	dummy.hostname"), | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2022-03-07 12:16:24 -05:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		Qname: "_http._tcp.svc12.testns.example.com.", Qtype: dns.TypeSRV, Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Answer: []dns.RR{ | 
					
						
							|  |  |  | 			test.SRV("_http._tcp.svc12.testns.example.com.	5	IN	SRV	0 100 80 dummy.hostname."), | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		Qname: "svc12.testns.example.com.", Qtype: dns.TypeSRV, Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Answer: []dns.RR{ | 
					
						
							|  |  |  | 			test.SRV("svc12.testns.example.com.	5	IN	SRV	0 100 80 dummy.hostname."), | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2022-08-30 20:59:27 +02:00
										 |  |  | 	// headless service | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		Qname: "svc-headless.testns.example.com.", Qtype: dns.TypeA, Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Answer: []dns.RR{ | 
					
						
							|  |  |  | 			test.A("svc-headless.testns.example.com.	5	IN	A	1.2.3.4"), | 
					
						
							|  |  |  | 			test.A("svc-headless.testns.example.com.	5	IN	A	1.2.3.5"), | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		Qname: "svc-headless.testns.example.com.", Qtype: dns.TypeSRV, Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Answer: []dns.RR{ | 
					
						
							|  |  |  | 			test.SRV("svc-headless.testns.example.com.	5	IN	SRV	0	50	80	endpoint-svc-0.svc-headless.testns.example.com."), | 
					
						
							|  |  |  | 			test.SRV("svc-headless.testns.example.com.	5	IN	SRV	0	50	80	endpoint-svc-1.svc-headless.testns.example.com."), | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		Extra: []dns.RR{ | 
					
						
							|  |  |  | 			test.A("endpoint-svc-0.svc-headless.testns.example.com.	5	IN	A	1.2.3.4"), | 
					
						
							|  |  |  | 			test.A("endpoint-svc-1.svc-headless.testns.example.com.	5	IN	A	1.2.3.5"), | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		Qname: "_http._tcp.svc-headless.testns.example.com.", Qtype: dns.TypeSRV, Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Answer: []dns.RR{ | 
					
						
							|  |  |  | 			test.SRV("_http._tcp.svc-headless.testns.example.com.	5	IN	SRV	0	50	80	endpoint-svc-0.svc-headless.testns.example.com."), | 
					
						
							|  |  |  | 			test.SRV("_http._tcp.svc-headless.testns.example.com.	5	IN	SRV	0	50	80	endpoint-svc-1.svc-headless.testns.example.com."), | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		Extra: []dns.RR{ | 
					
						
							|  |  |  | 			test.A("endpoint-svc-0.svc-headless.testns.example.com.	5	IN	A	1.2.3.4"), | 
					
						
							|  |  |  | 			test.A("endpoint-svc-1.svc-headless.testns.example.com.	5	IN	A	1.2.3.5"), | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		Qname: "endpoint-svc-0.svc-headless.testns.example.com.", Qtype: dns.TypeSRV, Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Answer: []dns.RR{ | 
					
						
							|  |  |  | 			test.SRV("endpoint-svc-0.svc-headless.testns.example.com.		5	IN	SRV	0	100	80	endpoint-svc-0.svc-headless.testns.example.com."), | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		Extra: []dns.RR{ | 
					
						
							|  |  |  | 			test.A("endpoint-svc-0.svc-headless.testns.example.com.	5	IN	A	1.2.3.4"), | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		Qname: "endpoint-svc-1.svc-headless.testns.example.com.", Qtype: dns.TypeSRV, Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Answer: []dns.RR{ | 
					
						
							|  |  |  | 			test.SRV("endpoint-svc-1.svc-headless.testns.example.com.		5	IN	SRV	0	100	80	endpoint-svc-1.svc-headless.testns.example.com."), | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		Extra: []dns.RR{ | 
					
						
							|  |  |  | 			test.A("endpoint-svc-1.svc-headless.testns.example.com.	5	IN	A	1.2.3.5"), | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		Qname: "endpoint-svc-0.svc-headless.testns.example.com.", Qtype: dns.TypeA, Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Answer: []dns.RR{ | 
					
						
							|  |  |  | 			test.A("endpoint-svc-0.svc-headless.testns.example.com.	5	IN	A	1.2.3.4"), | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		Qname: "endpoint-svc-1.svc-headless.testns.example.com.", Qtype: dns.TypeA, Rcode: dns.RcodeSuccess, | 
					
						
							|  |  |  | 		Answer: []dns.RR{ | 
					
						
							|  |  |  | 			test.A("endpoint-svc-1.svc-headless.testns.example.com.	5	IN	A	1.2.3.5"), | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2018-12-14 09:41:51 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type external struct{} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-30 20:59:27 +02:00
										 |  |  | func (external) HasSynced() bool                           { return true } | 
					
						
							|  |  |  | func (external) Run()                                      {} | 
					
						
							|  |  |  | func (external) Stop() error                               { return nil } | 
					
						
							|  |  |  | func (external) EpIndexReverse(string) []*object.Endpoints { return nil } | 
					
						
							|  |  |  | func (external) SvcIndexReverse(string) []*object.Service  { return nil } | 
					
						
							|  |  |  | func (external) Modified(bool) int64                       { return 0 } | 
					
						
							|  |  |  | func (external) EpIndex(s string) []*object.Endpoints { | 
					
						
							|  |  |  | 	return epIndexExternal[s] | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | func (external) EndpointsList() []*object.Endpoints { | 
					
						
							|  |  |  | 	var eps []*object.Endpoints | 
					
						
							|  |  |  | 	for _, ep := range epIndexExternal { | 
					
						
							|  |  |  | 		eps = append(eps, ep...) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return eps | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-03-30 11:10:41 -07:00
										 |  |  | func (external) GetNodeByName(ctx context.Context, name string) (*api.Node, error) { return nil, nil } | 
					
						
							| 
									
										
										
										
											2020-05-29 10:04:23 -07:00
										 |  |  | func (external) SvcIndex(s string) []*object.Service                               { return svcIndexExternal[s] } | 
					
						
							|  |  |  | func (external) PodIndex(string) []*object.Pod                                     { return nil } | 
					
						
							| 
									
										
										
										
											2018-12-14 09:41:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-06 13:55:15 -04:00
										 |  |  | func (external) SvcExtIndexReverse(ip string) (result []*object.Service) { | 
					
						
							|  |  |  | 	for _, svcs := range svcIndexExternal { | 
					
						
							|  |  |  | 		for _, svc := range svcs { | 
					
						
							|  |  |  | 			for _, exIp := range svc.ExternalIPs { | 
					
						
							|  |  |  | 				if exIp != ip { | 
					
						
							|  |  |  | 					continue | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				result = append(result, svc) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return result | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-29 21:27:25 -06:00
										 |  |  | func (external) GetNamespaceByName(name string) (*object.Namespace, error) { | 
					
						
							|  |  |  | 	return &object.Namespace{ | 
					
						
							|  |  |  | 		Name: name, | 
					
						
							| 
									
										
										
										
											2018-12-14 09:41:51 +00:00
										 |  |  | 	}, nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-30 20:59:27 +02:00
										 |  |  | var epIndexExternal = map[string][]*object.Endpoints{ | 
					
						
							|  |  |  | 	"svc-headless.testns": { | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			Name:      "svc-headless", | 
					
						
							|  |  |  | 			Namespace: "testns", | 
					
						
							|  |  |  | 			Index:     "svc-headless.testns", | 
					
						
							|  |  |  | 			Subsets: []object.EndpointSubset{ | 
					
						
							|  |  |  | 				{ | 
					
						
							|  |  |  | 					Ports: []object.EndpointPort{ | 
					
						
							|  |  |  | 						{ | 
					
						
							|  |  |  | 							Port:     80, | 
					
						
							|  |  |  | 							Name:     "http", | 
					
						
							|  |  |  | 							Protocol: "TCP", | 
					
						
							|  |  |  | 						}, | 
					
						
							|  |  |  | 					}, | 
					
						
							|  |  |  | 					Addresses: []object.EndpointAddress{ | 
					
						
							|  |  |  | 						{ | 
					
						
							|  |  |  | 							IP:            "1.2.3.4", | 
					
						
							|  |  |  | 							Hostname:      "endpoint-svc-0", | 
					
						
							|  |  |  | 							NodeName:      "test-node", | 
					
						
							|  |  |  | 							TargetRefName: "endpoint-svc-0", | 
					
						
							|  |  |  | 						}, | 
					
						
							|  |  |  | 						{ | 
					
						
							|  |  |  | 							IP:            "1.2.3.5", | 
					
						
							|  |  |  | 							Hostname:      "endpoint-svc-1", | 
					
						
							|  |  |  | 							NodeName:      "test-node", | 
					
						
							|  |  |  | 							TargetRefName: "endpoint-svc-1", | 
					
						
							|  |  |  | 						}, | 
					
						
							|  |  |  | 					}, | 
					
						
							|  |  |  | 				}, | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-14 09:41:51 +00:00
										 |  |  | var svcIndexExternal = map[string][]*object.Service{ | 
					
						
							|  |  |  | 	"svc1.testns": { | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			Name:        "svc1", | 
					
						
							|  |  |  | 			Namespace:   "testns", | 
					
						
							|  |  |  | 			Type:        api.ServiceTypeClusterIP, | 
					
						
							| 
									
										
										
										
											2020-12-21 05:30:24 -05:00
										 |  |  | 			ClusterIPs:  []string{"10.0.0.1"}, | 
					
						
							| 
									
										
										
										
											2018-12-14 09:41:51 +00:00
										 |  |  | 			ExternalIPs: []string{"1.2.3.4"}, | 
					
						
							|  |  |  | 			Ports:       []api.ServicePort{{Name: "http", Protocol: "tcp", Port: 80}}, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	"svc6.testns": { | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			Name:        "svc6", | 
					
						
							|  |  |  | 			Namespace:   "testns", | 
					
						
							|  |  |  | 			Type:        api.ServiceTypeClusterIP, | 
					
						
							| 
									
										
										
										
											2020-12-21 05:30:24 -05:00
										 |  |  | 			ClusterIPs:  []string{"10.0.0.3"}, | 
					
						
							| 
									
										
										
										
											2018-12-14 09:41:51 +00:00
										 |  |  | 			ExternalIPs: []string{"1:2::5"}, | 
					
						
							|  |  |  | 			Ports:       []api.ServicePort{{Name: "http", Protocol: "tcp", Port: 80}}, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2020-05-29 10:04:23 -07:00
										 |  |  | 	"svc11.testns": { | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			Name:        "svc11", | 
					
						
							|  |  |  | 			Namespace:   "testns", | 
					
						
							|  |  |  | 			Type:        api.ServiceTypeLoadBalancer, | 
					
						
							| 
									
										
										
										
											2022-07-06 13:55:15 -04:00
										 |  |  | 			ExternalIPs: []string{"2.3.4.5"}, | 
					
						
							| 
									
										
										
										
											2022-08-30 20:59:27 +02:00
										 |  |  | 			ClusterIPs:  []string{"10.0.0.3"}, | 
					
						
							| 
									
										
										
										
											2020-05-29 10:04:23 -07:00
										 |  |  | 			Ports:       []api.ServicePort{{Name: "http", Protocol: "tcp", Port: 80}}, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	"svc12.testns": { | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			Name:        "svc12", | 
					
						
							|  |  |  | 			Namespace:   "testns", | 
					
						
							|  |  |  | 			Type:        api.ServiceTypeLoadBalancer, | 
					
						
							| 
									
										
										
										
											2022-08-30 20:59:27 +02:00
										 |  |  | 			ClusterIPs:  []string{"10.0.0.3"}, | 
					
						
							| 
									
										
										
										
											2020-05-29 10:04:23 -07:00
										 |  |  | 			ExternalIPs: []string{"dummy.hostname"}, | 
					
						
							|  |  |  | 			Ports:       []api.ServicePort{{Name: "http", Protocol: "tcp", Port: 80}}, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2022-08-30 20:59:27 +02:00
										 |  |  | 	"svc-headless.testns": { | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			Name:       "svc-headless", | 
					
						
							|  |  |  | 			Namespace:  "testns", | 
					
						
							|  |  |  | 			Type:       api.ServiceTypeClusterIP, | 
					
						
							|  |  |  | 			ClusterIPs: []string{"None"}, | 
					
						
							|  |  |  | 			Ports:      []api.ServicePort{{Name: "http", Protocol: "tcp", Port: 80}}, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2018-12-14 09:41:51 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (external) ServiceList() []*object.Service { | 
					
						
							|  |  |  | 	var svcs []*object.Service | 
					
						
							|  |  |  | 	for _, svc := range svcIndexExternal { | 
					
						
							|  |  |  | 		svcs = append(svcs, svc...) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return svcs | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-30 20:59:27 +02:00
										 |  |  | func externalAddress(state request.Request, headless bool) []dns.RR { | 
					
						
							| 
									
										
										
										
											2018-12-14 09:41:51 +00:00
										 |  |  | 	a := test.A("example.org. IN A 127.0.0.1") | 
					
						
							|  |  |  | 	return []dns.RR{a} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2022-03-07 12:16:24 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | func externalSerial(string) uint32 { | 
					
						
							|  |  |  | 	return 1499347823 | 
					
						
							|  |  |  | } |