| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | package cache | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2018-04-22 08:34:35 +01:00
										 |  |  | 	"context" | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 	"testing" | 
					
						
							|  |  |  | 	"time" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-14 09:36:06 +01:00
										 |  |  | 	"github.com/coredns/coredns/plugin" | 
					
						
							|  |  |  | 	"github.com/coredns/coredns/plugin/pkg/response" | 
					
						
							|  |  |  | 	"github.com/coredns/coredns/plugin/test" | 
					
						
							| 
									
										
										
										
											2018-04-27 19:37:49 +01:00
										 |  |  | 	"github.com/coredns/coredns/request" | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/miekg/dns" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type cacheTestCase struct { | 
					
						
							|  |  |  | 	test.Case | 
					
						
							|  |  |  | 	in                 test.Case | 
					
						
							|  |  |  | 	AuthenticatedData  bool | 
					
						
							|  |  |  | 	Authoritative      bool | 
					
						
							|  |  |  | 	RecursionAvailable bool | 
					
						
							|  |  |  | 	Truncated          bool | 
					
						
							| 
									
										
										
										
											2017-04-29 15:06:42 +01:00
										 |  |  | 	shouldCache        bool | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var cacheTestCases = []cacheTestCase{ | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		RecursionAvailable: true, AuthenticatedData: true, Authoritative: true, | 
					
						
							|  |  |  | 		Case: test.Case{ | 
					
						
							|  |  |  | 			Qname: "miek.nl.", Qtype: dns.TypeMX, | 
					
						
							|  |  |  | 			Answer: []dns.RR{ | 
					
						
							| 
									
										
										
										
											2016-10-02 08:31:44 +01:00
										 |  |  | 				test.MX("miek.nl.	3600	IN	MX	1 aspmx.l.google.com."), | 
					
						
							|  |  |  | 				test.MX("miek.nl.	3600	IN	MX	10 aspmx2.googlemail.com."), | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 			}, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		in: test.Case{ | 
					
						
							|  |  |  | 			Qname: "miek.nl.", Qtype: dns.TypeMX, | 
					
						
							|  |  |  | 			Answer: []dns.RR{ | 
					
						
							| 
									
										
										
										
											2016-10-02 08:31:44 +01:00
										 |  |  | 				test.MX("miek.nl.	3601	IN	MX	1 aspmx.l.google.com."), | 
					
						
							|  |  |  | 				test.MX("miek.nl.	3601	IN	MX	10 aspmx2.googlemail.com."), | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 			}, | 
					
						
							|  |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2017-04-29 15:06:42 +01:00
										 |  |  | 		shouldCache: true, | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2016-10-08 15:22:31 +01:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		RecursionAvailable: true, AuthenticatedData: true, Authoritative: true, | 
					
						
							|  |  |  | 		Case: test.Case{ | 
					
						
							|  |  |  | 			Qname: "mIEK.nL.", Qtype: dns.TypeMX, | 
					
						
							|  |  |  | 			Answer: []dns.RR{ | 
					
						
							|  |  |  | 				test.MX("mIEK.nL.	3600	IN	MX	1 aspmx.l.google.com."), | 
					
						
							|  |  |  | 				test.MX("mIEK.nL.	3600	IN	MX	10 aspmx2.googlemail.com."), | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		in: test.Case{ | 
					
						
							|  |  |  | 			Qname: "mIEK.nL.", Qtype: dns.TypeMX, | 
					
						
							|  |  |  | 			Answer: []dns.RR{ | 
					
						
							|  |  |  | 				test.MX("mIEK.nL.	3601	IN	MX	1 aspmx.l.google.com."), | 
					
						
							|  |  |  | 				test.MX("mIEK.nL.	3601	IN	MX	10 aspmx2.googlemail.com."), | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2017-04-29 15:06:42 +01:00
										 |  |  | 		shouldCache: true, | 
					
						
							| 
									
										
										
										
											2016-10-08 15:22:31 +01:00
										 |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		Truncated: true, | 
					
						
							|  |  |  | 		Case: test.Case{ | 
					
						
							|  |  |  | 			Qname: "miek.nl.", Qtype: dns.TypeMX, | 
					
						
							|  |  |  | 			Answer: []dns.RR{test.MX("miek.nl.	1800	IN	MX	1 aspmx.l.google.com.")}, | 
					
						
							|  |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2017-04-29 15:06:42 +01:00
										 |  |  | 		in:          test.Case{}, | 
					
						
							|  |  |  | 		shouldCache: false, | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2016-10-28 07:50:16 +01:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		RecursionAvailable: true, Authoritative: true, | 
					
						
							|  |  |  | 		Case: test.Case{ | 
					
						
							|  |  |  | 			Rcode: dns.RcodeNameError, | 
					
						
							|  |  |  | 			Qname: "example.org.", Qtype: dns.TypeA, | 
					
						
							|  |  |  | 			Ns: []dns.RR{ | 
					
						
							|  |  |  | 				test.SOA("example.org. 3600 IN	SOA	sns.dns.icann.org. noc.dns.icann.org. 2016082540 7200 3600 1209600 3600"), | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		in: test.Case{ | 
					
						
							|  |  |  | 			Rcode: dns.RcodeNameError, | 
					
						
							|  |  |  | 			Qname: "example.org.", Qtype: dns.TypeA, | 
					
						
							|  |  |  | 			Ns: []dns.RR{ | 
					
						
							|  |  |  | 				test.SOA("example.org. 3600 IN	SOA	sns.dns.icann.org. noc.dns.icann.org. 2016082540 7200 3600 1209600 3600"), | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2017-04-29 15:06:42 +01:00
										 |  |  | 		shouldCache: true, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		RecursionAvailable: true, Authoritative: true, | 
					
						
							|  |  |  | 		Case: test.Case{ | 
					
						
							|  |  |  | 			Qname: "miek.nl.", Qtype: dns.TypeMX, | 
					
						
							|  |  |  | 			Do: true, | 
					
						
							|  |  |  | 			Answer: []dns.RR{ | 
					
						
							|  |  |  | 				test.MX("miek.nl.	3600	IN	MX	1 aspmx.l.google.com."), | 
					
						
							|  |  |  | 				test.MX("miek.nl.	3600	IN	MX	10 aspmx2.googlemail.com."), | 
					
						
							|  |  |  | 				test.RRSIG("miek.nl.	3600	IN	RRSIG	MX 8 2 1800 20160521031301 20160421031301 12051 miek.nl. lAaEzB5teQLLKyDenatmyhca7blLRg9DoGNrhe3NReBZN5C5/pMQk8Jc u25hv2fW23/SLm5IC2zaDpp2Fzgm6Jf7e90/yLcwQPuE7JjS55WMF+HE LEh7Z6AEb+Iq4BWmNhUz6gPxD4d9eRMs7EAzk13o1NYi5/JhfL6IlaYy qkc="), | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		in: test.Case{ | 
					
						
							|  |  |  | 			Qname: "miek.nl.", Qtype: dns.TypeMX, | 
					
						
							|  |  |  | 			Do: true, | 
					
						
							|  |  |  | 			Answer: []dns.RR{ | 
					
						
							|  |  |  | 				test.MX("miek.nl.	3600	IN	MX	1 aspmx.l.google.com."), | 
					
						
							|  |  |  | 				test.MX("miek.nl.	3600	IN	MX	10 aspmx2.googlemail.com."), | 
					
						
							|  |  |  | 				test.RRSIG("miek.nl.	1800	IN	RRSIG	MX 8 2 1800 20160521031301 20160421031301 12051 miek.nl. lAaEzB5teQLLKyDenatmyhca7blLRg9DoGNrhe3NReBZN5C5/pMQk8Jc u25hv2fW23/SLm5IC2zaDpp2Fzgm6Jf7e90/yLcwQPuE7JjS55WMF+HE LEh7Z6AEb+Iq4BWmNhUz6gPxD4d9eRMs7EAzk13o1NYi5/JhfL6IlaYy qkc="), | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		shouldCache: false, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		RecursionAvailable: true, Authoritative: true, | 
					
						
							|  |  |  | 		Case: test.Case{ | 
					
						
							|  |  |  | 			Qname: "example.org.", Qtype: dns.TypeMX, | 
					
						
							|  |  |  | 			Do: true, | 
					
						
							|  |  |  | 			Answer: []dns.RR{ | 
					
						
							|  |  |  | 				test.MX("example.org.	3600	IN	MX	1 aspmx.l.google.com."), | 
					
						
							|  |  |  | 				test.MX("example.org.	3600	IN	MX	10 aspmx2.googlemail.com."), | 
					
						
							|  |  |  | 				test.RRSIG("example.org.	3600	IN	RRSIG	MX 8 2 1800 20170521031301 20170421031301 12051 miek.nl. lAaEzB5teQLLKyDenatmyhca7blLRg9DoGNrhe3NReBZN5C5/pMQk8Jc u25hv2fW23/SLm5IC2zaDpp2Fzgm6Jf7e90/yLcwQPuE7JjS55WMF+HE LEh7Z6AEb+Iq4BWmNhUz6gPxD4d9eRMs7EAzk13o1NYi5/JhfL6IlaYy qkc="), | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		in: test.Case{ | 
					
						
							|  |  |  | 			Qname: "example.org.", Qtype: dns.TypeMX, | 
					
						
							|  |  |  | 			Do: true, | 
					
						
							|  |  |  | 			Answer: []dns.RR{ | 
					
						
							|  |  |  | 				test.MX("example.org.	3600	IN	MX	1 aspmx.l.google.com."), | 
					
						
							|  |  |  | 				test.MX("example.org.	3600	IN	MX	10 aspmx2.googlemail.com."), | 
					
						
							|  |  |  | 				test.RRSIG("example.org.	1800	IN	RRSIG	MX 8 2 1800 20170521031301 20170421031301 12051 miek.nl. lAaEzB5teQLLKyDenatmyhca7blLRg9DoGNrhe3NReBZN5C5/pMQk8Jc u25hv2fW23/SLm5IC2zaDpp2Fzgm6Jf7e90/yLcwQPuE7JjS55WMF+HE LEh7Z6AEb+Iq4BWmNhUz6gPxD4d9eRMs7EAzk13o1NYi5/JhfL6IlaYy qkc="), | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		shouldCache: true, | 
					
						
							| 
									
										
										
										
											2016-10-28 07:50:16 +01:00
										 |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func cacheMsg(m *dns.Msg, tc cacheTestCase) *dns.Msg { | 
					
						
							|  |  |  | 	m.RecursionAvailable = tc.RecursionAvailable | 
					
						
							|  |  |  | 	m.AuthenticatedData = tc.AuthenticatedData | 
					
						
							|  |  |  | 	m.Authoritative = tc.Authoritative | 
					
						
							| 
									
										
										
										
											2016-10-28 07:50:16 +01:00
										 |  |  | 	m.Rcode = tc.Rcode | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 	m.Truncated = tc.Truncated | 
					
						
							|  |  |  | 	m.Answer = tc.in.Answer | 
					
						
							|  |  |  | 	m.Ns = tc.in.Ns | 
					
						
							| 
									
										
										
										
											2017-04-29 15:06:42 +01:00
										 |  |  | 	// m.Extra = tc.in.Extra don't copy Extra, because we don't care and fake EDNS0 DO with tc.Do. | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 	return m | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-02 08:31:44 +01:00
										 |  |  | func newTestCache(ttl time.Duration) (*Cache, *ResponseWriter) { | 
					
						
							| 
									
										
										
										
											2018-01-17 08:35:22 +01:00
										 |  |  | 	c := New() | 
					
						
							|  |  |  | 	c.pttl = ttl | 
					
						
							|  |  |  | 	c.nttl = ttl | 
					
						
							| 
									
										
										
										
											2016-10-02 08:31:44 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-13 12:39:10 -07:00
										 |  |  | 	crr := &ResponseWriter{ResponseWriter: nil, Cache: c} | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 	return c, crr | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestCache(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2017-04-29 15:06:42 +01:00
										 |  |  | 	now, _ := time.Parse(time.UnixDate, "Fri Apr 21 10:51:21 BST 2017") | 
					
						
							|  |  |  | 	utc := now.UTC() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-02 08:31:44 +01:00
										 |  |  | 	c, crr := newTestCache(maxTTL) | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	for _, tc := range cacheTestCases { | 
					
						
							|  |  |  | 		m := tc.in.Msg() | 
					
						
							|  |  |  | 		m = cacheMsg(m, tc) | 
					
						
							| 
									
										
										
										
											2018-04-27 19:37:49 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		state := request.Request{W: nil, Req: m} | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-29 15:06:42 +01:00
										 |  |  | 		mt, _ := response.Typify(m, utc) | 
					
						
							| 
									
										
										
										
											2018-08-31 17:26:43 -04:00
										 |  |  | 		valid, k := key(m, mt, state.Do()) | 
					
						
							| 
									
										
										
										
											2017-04-29 15:06:42 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-31 17:26:43 -04:00
										 |  |  | 		if valid { | 
					
						
							|  |  |  | 			crr.set(m, k, mt, c.pttl) | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-27 19:37:49 +01:00
										 |  |  | 		i, _ := c.get(time.Now().UTC(), state, "dns://:53") | 
					
						
							| 
									
										
										
										
											2017-06-13 12:39:10 -07:00
										 |  |  | 		ok := i != nil | 
					
						
							| 
									
										
										
										
											2017-04-29 15:06:42 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if ok != tc.shouldCache { | 
					
						
							| 
									
										
										
										
											2018-06-02 19:48:39 +01:00
										 |  |  | 			t.Errorf("Cached message that should not have been cached: %s", state.Name()) | 
					
						
							| 
									
										
										
										
											2016-10-02 08:31:44 +01:00
										 |  |  | 			continue | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if ok { | 
					
						
							| 
									
										
										
										
											2018-01-17 08:35:22 +01:00
										 |  |  | 			resp := i.toMsg(m, time.Now().UTC()) | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			if !test.Header(t, tc.Case, resp) { | 
					
						
							|  |  |  | 				t.Logf("%v\n", resp) | 
					
						
							|  |  |  | 				continue | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if !test.Section(t, tc.Case, test.Answer, resp.Answer) { | 
					
						
							|  |  |  | 				t.Logf("%v\n", resp) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			if !test.Section(t, tc.Case, test.Ns, resp.Ns) { | 
					
						
							|  |  |  | 				t.Logf("%v\n", resp) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			if !test.Section(t, tc.Case, test.Extra, resp.Extra) { | 
					
						
							|  |  |  | 				t.Logf("%v\n", resp) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-06-26 07:44:25 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-28 14:22:23 +01:00
										 |  |  | func TestCacheZeroTTL(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2018-01-17 08:35:22 +01:00
										 |  |  | 	c := New() | 
					
						
							| 
									
										
										
										
											2018-09-03 14:26:02 -05:00
										 |  |  | 	c.minpttl = 0 | 
					
						
							|  |  |  | 	c.minnttl = 0 | 
					
						
							| 
									
										
										
										
											2017-09-28 14:22:23 +01:00
										 |  |  | 	c.Next = zeroTTLBackend() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	req := new(dns.Msg) | 
					
						
							|  |  |  | 	req.SetQuestion("example.org.", dns.TypeA) | 
					
						
							|  |  |  | 	ctx := context.TODO() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	c.ServeDNS(ctx, &test.ResponseWriter{}, req) | 
					
						
							|  |  |  | 	if c.pcache.Len() != 0 { | 
					
						
							|  |  |  | 		t.Errorf("Msg with 0 TTL should not have been cached") | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if c.ncache.Len() != 0 { | 
					
						
							|  |  |  | 		t.Errorf("Msg with 0 TTL should not have been cached") | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-26 07:44:25 -07:00
										 |  |  | func BenchmarkCacheResponse(b *testing.B) { | 
					
						
							| 
									
										
										
										
											2018-01-17 08:35:22 +01:00
										 |  |  | 	c := New() | 
					
						
							| 
									
										
										
										
											2017-06-26 07:44:25 -07:00
										 |  |  | 	c.prefetch = 1 | 
					
						
							|  |  |  | 	c.Next = BackendHandler() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ctx := context.TODO() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	reqs := make([]*dns.Msg, 5) | 
					
						
							|  |  |  | 	for i, q := range []string{"example1", "example2", "a", "b", "ddd"} { | 
					
						
							|  |  |  | 		reqs[i] = new(dns.Msg) | 
					
						
							|  |  |  | 		reqs[i].SetQuestion(q+".example.org.", dns.TypeA) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-30 20:25:40 +01:00
										 |  |  | 	b.StartTimer() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	j := 0 | 
					
						
							|  |  |  | 	for i := 0; i < b.N; i++ { | 
					
						
							|  |  |  | 		req := reqs[j] | 
					
						
							|  |  |  | 		c.ServeDNS(ctx, &test.ResponseWriter{}, req) | 
					
						
							|  |  |  | 		j++ | 
					
						
							|  |  |  | 		j = j % 5 | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-06-26 07:44:25 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-14 09:36:06 +01:00
										 |  |  | func BackendHandler() plugin.Handler { | 
					
						
							|  |  |  | 	return plugin.HandlerFunc(func(ctx context.Context, w dns.ResponseWriter, r *dns.Msg) (int, error) { | 
					
						
							| 
									
										
										
										
											2017-06-26 07:44:25 -07:00
										 |  |  | 		m := new(dns.Msg) | 
					
						
							|  |  |  | 		m.SetReply(r) | 
					
						
							|  |  |  | 		m.Response = true | 
					
						
							|  |  |  | 		m.RecursionAvailable = true | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		owner := m.Question[0].Name | 
					
						
							|  |  |  | 		m.Answer = []dns.RR{test.A(owner + " 303 IN A 127.0.0.53")} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		w.WriteMsg(m) | 
					
						
							|  |  |  | 		return dns.RcodeSuccess, nil | 
					
						
							|  |  |  | 	}) | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-09-28 14:22:23 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | func zeroTTLBackend() plugin.Handler { | 
					
						
							|  |  |  | 	return plugin.HandlerFunc(func(ctx context.Context, w dns.ResponseWriter, r *dns.Msg) (int, error) { | 
					
						
							|  |  |  | 		m := new(dns.Msg) | 
					
						
							|  |  |  | 		m.SetReply(r) | 
					
						
							|  |  |  | 		m.Response, m.RecursionAvailable = true, true | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		m.Answer = []dns.RR{test.A("example.org. 0 IN A 127.0.0.53")} | 
					
						
							|  |  |  | 		w.WriteMsg(m) | 
					
						
							|  |  |  | 		return dns.RcodeSuccess, nil | 
					
						
							|  |  |  | 	}) | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-09-03 14:26:02 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | func TestComputeTTL(t *testing.T) { | 
					
						
							|  |  |  | 	tests := []struct { | 
					
						
							|  |  |  | 		msgTTL      time.Duration | 
					
						
							|  |  |  | 		minTTL      time.Duration | 
					
						
							|  |  |  | 		maxTTL      time.Duration | 
					
						
							|  |  |  | 		expectedTTL time.Duration | 
					
						
							|  |  |  | 	}{ | 
					
						
							|  |  |  | 		{1800 * time.Second, 300 * time.Second, 3600 * time.Second, 1800 * time.Second}, | 
					
						
							|  |  |  | 		{299 * time.Second, 300 * time.Second, 3600 * time.Second, 300 * time.Second}, | 
					
						
							|  |  |  | 		{299 * time.Second, 0 * time.Second, 3600 * time.Second, 299 * time.Second}, | 
					
						
							|  |  |  | 		{3601 * time.Second, 300 * time.Second, 3600 * time.Second, 3600 * time.Second}, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	for i, test := range tests { | 
					
						
							|  |  |  | 		ttl := computeTTL(test.msgTTL, test.minTTL, test.maxTTL) | 
					
						
							|  |  |  | 		if ttl != test.expectedTTL { | 
					
						
							|  |  |  | 			t.Errorf("Test %v: Expected ttl %v but found: %v", i, test.expectedTTL, ttl) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } |