| 
									
										
										
										
											2017-01-06 09:42:30 +00:00
										 |  |  | package erratic
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import (
 | 
					
						
							| 
									
										
										
										
											2018-04-22 08:34:35 +01:00
										 |  |  | 	"context"
 | 
					
						
							| 
									
										
										
										
											2017-01-06 09:42:30 +00:00
										 |  |  | 	"testing"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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"
 | 
					
						
							| 
									
										
										
										
											2017-01-06 09:42:30 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/miekg/dns"
 | 
					
						
							|  |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestErraticDrop(t *testing.T) {
 | 
					
						
							| 
									
										
										
										
											2017-04-13 16:26:17 +01:00
										 |  |  | 	e := &Erratic{drop: 2} // 50% drops
 | 
					
						
							| 
									
										
										
										
											2017-01-06 09:42:30 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	tests := []struct {
 | 
					
						
							| 
									
										
										
										
											2018-07-20 10:25:54 +01:00
										 |  |  | 		rrtype       uint16
 | 
					
						
							| 
									
										
										
										
											2017-01-06 09:42:30 +00:00
										 |  |  | 		expectedCode int
 | 
					
						
							|  |  |  | 		expectedErr  error
 | 
					
						
							|  |  |  | 		drop         bool
 | 
					
						
							|  |  |  | 	}{
 | 
					
						
							| 
									
										
										
										
											2018-07-20 10:25:54 +01:00
										 |  |  | 		{rrtype: dns.TypeA, expectedCode: dns.RcodeSuccess, expectedErr: nil, drop: true},
 | 
					
						
							|  |  |  | 		{rrtype: dns.TypeA, expectedCode: dns.RcodeSuccess, expectedErr: nil, drop: false},
 | 
					
						
							|  |  |  | 		{rrtype: dns.TypeAAAA, expectedCode: dns.RcodeSuccess, expectedErr: nil, drop: true},
 | 
					
						
							|  |  |  | 		{rrtype: dns.TypeHINFO, expectedCode: dns.RcodeServerFailure, expectedErr: nil, drop: false},
 | 
					
						
							| 
									
										
										
										
											2017-01-06 09:42:30 +00:00
										 |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ctx := context.TODO()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for i, tc := range tests {
 | 
					
						
							|  |  |  | 		req := new(dns.Msg)
 | 
					
						
							| 
									
										
										
										
											2018-07-20 10:25:54 +01:00
										 |  |  | 		req.SetQuestion("example.org.", tc.rrtype)
 | 
					
						
							| 
									
										
										
										
											2017-01-06 09:42:30 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-21 15:15:47 +01:00
										 |  |  | 		rec := dnstest.NewRecorder(&test.ResponseWriter{})
 | 
					
						
							| 
									
										
										
										
											2017-01-06 09:42:30 +00:00
										 |  |  | 		code, err := e.ServeDNS(ctx, rec, req)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if err != tc.expectedErr {
 | 
					
						
							|  |  |  | 			t.Errorf("Test %d: Expected error %q, but got %q", i, tc.expectedErr, err)
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							| 
									
										
										
										
											2023-08-14 21:14:09 +08:00
										 |  |  | 		if code != tc.expectedCode {
 | 
					
						
							| 
									
										
										
										
											2017-01-06 09:42:30 +00:00
										 |  |  | 			t.Errorf("Test %d: Expected status code %d, but got %d", i, tc.expectedCode, code)
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if tc.drop && rec.Msg != nil {
 | 
					
						
							| 
									
										
										
										
											2017-04-16 07:49:13 +01:00
										 |  |  | 			t.Errorf("Test %d: Expected dropped message, but got %q", i, rec.Msg.Question[0].Name)
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestErraticTruncate(t *testing.T) {
 | 
					
						
							|  |  |  | 	e := &Erratic{truncate: 2} // 50% drops
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tests := []struct {
 | 
					
						
							|  |  |  | 		expectedCode int
 | 
					
						
							|  |  |  | 		expectedErr  error
 | 
					
						
							|  |  |  | 		truncate     bool
 | 
					
						
							|  |  |  | 	}{
 | 
					
						
							|  |  |  | 		{expectedCode: dns.RcodeSuccess, expectedErr: nil, truncate: true},
 | 
					
						
							|  |  |  | 		{expectedCode: dns.RcodeSuccess, expectedErr: nil, truncate: false},
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ctx := context.TODO()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for i, tc := range tests {
 | 
					
						
							|  |  |  | 		req := new(dns.Msg)
 | 
					
						
							|  |  |  | 		req.SetQuestion("example.org.", dns.TypeA)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-21 15:15:47 +01:00
										 |  |  | 		rec := dnstest.NewRecorder(&test.ResponseWriter{})
 | 
					
						
							| 
									
										
										
										
											2017-04-16 07:49:13 +01:00
										 |  |  | 		code, err := e.ServeDNS(ctx, rec, req)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if err != tc.expectedErr {
 | 
					
						
							|  |  |  | 			t.Errorf("Test %d: Expected error %q, but got %q", i, tc.expectedErr, err)
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							| 
									
										
										
										
											2023-08-14 21:14:09 +08:00
										 |  |  | 		if code != tc.expectedCode {
 | 
					
						
							| 
									
										
										
										
											2017-04-16 07:49:13 +01:00
										 |  |  | 			t.Errorf("Test %d: Expected status code %d, but got %d", i, tc.expectedCode, code)
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if tc.truncate && !rec.Msg.Truncated {
 | 
					
						
							|  |  |  | 			t.Errorf("Test %d: Expected truncated message, but got %q", i, rec.Msg.Question[0].Name)
 | 
					
						
							| 
									
										
										
										
											2017-01-06 09:42:30 +00:00
										 |  |  | 		}
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | }
 | 
					
						
							| 
									
										
										
										
											2018-07-20 10:25:54 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | func TestAxfr(t *testing.T) {
 | 
					
						
							|  |  |  | 	e := &Erratic{truncate: 0} // nothing, just check if we can get an axfr
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ctx := context.TODO()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	req := new(dns.Msg)
 | 
					
						
							|  |  |  | 	req.SetQuestion("example.org.", dns.TypeAXFR)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	rec := dnstest.NewRecorder(&test.ResponseWriter{})
 | 
					
						
							|  |  |  | 	_, err := e.ServeDNS(ctx, rec, req)
 | 
					
						
							|  |  |  | 	if err != nil {
 | 
					
						
							|  |  |  | 		t.Errorf("Failed to set up AXFR: %s", err)
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	if x := rec.Msg.Answer[0].Header().Rrtype; x != dns.TypeSOA {
 | 
					
						
							|  |  |  | 		t.Errorf("Expected for record to be %d, got %d", dns.TypeSOA, x)
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | }
 | 
					
						
							| 
									
										
										
										
											2018-10-23 17:55:40 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | func TestErratic(t *testing.T) {
 | 
					
						
							|  |  |  | 	e := &Erratic{drop: 0, delay: 0}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ctx := context.TODO()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	req := new(dns.Msg)
 | 
					
						
							|  |  |  | 	req.SetQuestion("example.org.", dns.TypeA)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	rec := dnstest.NewRecorder(&test.ResponseWriter{})
 | 
					
						
							|  |  |  | 	e.ServeDNS(ctx, rec, req)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if rec.Msg.Answer[0].Header().Rrtype != dns.TypeA {
 | 
					
						
							|  |  |  | 		t.Errorf("Expected A response, got %d type", rec.Msg.Answer[0].Header().Rrtype)
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | }
 |