mirror of
				https://github.com/coredns/coredns.git
				synced 2025-10-27 08:14:18 -04:00 
			
		
		
		
	Adding additional records for test cases (#1304)
This commit is contained in:
		
				
					committed by
					
						 John Belamaric
						John Belamaric
					
				
			
			
				
	
			
			
			
						parent
						
							3125381f2d
						
					
				
				
					commit
					cee6f60ab8
				
			| @@ -85,6 +85,22 @@ var dnsTestCases = []test.Case{ | ||||
| 			test.A("hdls1.testns.svc.cluster.local.	5	IN	A	172.0.0.3"), | ||||
| 		}, | ||||
| 	}, | ||||
| 	// A pod ip | ||||
| 	{ | ||||
| 		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"), | ||||
| 		}, | ||||
| 	}, | ||||
| 	// A pod ip | ||||
| 	{ | ||||
| 		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"), | ||||
| 		}, | ||||
| 	}, | ||||
| 	// SRV Service (Headless) | ||||
| 	{ | ||||
| 		Qname: "_http._tcp.hdls1.testns.svc.cluster.local.", Qtype: dns.TypeSRV, | ||||
| @@ -102,6 +118,12 @@ var dnsTestCases = []test.Case{ | ||||
| 			test.AAAA("5678-abcd--2.hdls1.testns.svc.cluster.local.	5	IN	AAAA	5678:abcd::2"), | ||||
| 		}, | ||||
| 	}, | ||||
| 	// AAAA | ||||
| 	{ | ||||
| 		Qname: "5678-abcd--2.hdls1.testns.svc.cluster.local", Qtype: dns.TypeAAAA, | ||||
| 		Rcode: dns.RcodeSuccess, | ||||
| 		Answer: []dns.RR{test.AAAA("5678-abcd--2.hdls1.testns.svc.cluster.local.	5	IN	AAAA	5678:abcd::2")}, | ||||
| 	}, | ||||
| 	// CNAME External | ||||
| 	{ | ||||
| 		Qname: "external.testns.svc.cluster.local.", Qtype: dns.TypeCNAME, | ||||
| @@ -166,6 +188,17 @@ var dnsTestCases = []test.Case{ | ||||
| 			test.AAAA("svc6.testns.svc.cluster.local.	5	IN	AAAA	1234:abcd::1"), | ||||
| 		}, | ||||
| 	}, | ||||
| 	// SRV | ||||
| 	{ | ||||
| 		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"), | ||||
| 		}, | ||||
| 	}, | ||||
| 	// AAAA Service (Headless) | ||||
| 	{ | ||||
| 		Qname: "hdls1.testns.svc.cluster.local.", Qtype: dns.TypeAAAA, | ||||
|   | ||||
		Reference in New Issue
	
	Block a user