| 
									
										
										
										
											2017-03-01 10:41:54 -05:00
										 |  |  | package trace | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2018-10-05 13:13:16 -07:00
										 |  |  | 	"context" | 
					
						
							| 
									
										
										
										
											2017-03-01 10:41:54 -05:00
										 |  |  | 	"testing" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-05 13:13:16 -07:00
										 |  |  | 	"github.com/coredns/coredns/plugin" | 
					
						
							|  |  |  | 	"github.com/coredns/coredns/plugin/pkg/dnstest" | 
					
						
							|  |  |  | 	"github.com/coredns/coredns/plugin/pkg/rcode" | 
					
						
							|  |  |  | 	"github.com/coredns/coredns/plugin/test" | 
					
						
							|  |  |  | 	"github.com/coredns/coredns/request" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-01 10:41:54 -05:00
										 |  |  | 	"github.com/mholt/caddy" | 
					
						
							| 
									
										
										
										
											2018-10-05 13:13:16 -07:00
										 |  |  | 	"github.com/miekg/dns" | 
					
						
							|  |  |  | 	"github.com/opentracing/opentracing-go/mocktracer" | 
					
						
							| 
									
										
										
										
											2017-03-01 10:41:54 -05:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-05 13:13:16 -07:00
										 |  |  | const server = "coolServer" | 
					
						
							| 
									
										
										
										
											2017-03-01 10:41:54 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-05 13:13:16 -07:00
										 |  |  | func TestStartup(t *testing.T) { | 
					
						
							|  |  |  | 	m, err := traceParse(caddy.NewTestController("dns", `trace`)) | 
					
						
							| 
									
										
										
										
											2017-03-01 10:41:54 -05:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Errorf("Error parsing test input: %s", err) | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if m.Name() != "trace" { | 
					
						
							|  |  |  | 		t.Errorf("Wrong name from GetName: %s", m.Name()) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	err = m.OnStartup() | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2017-09-14 09:36:06 +01:00
										 |  |  | 		t.Errorf("Error starting tracing plugin: %s", err) | 
					
						
							| 
									
										
										
										
											2017-03-01 10:41:54 -05:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if m.Tracer() == nil { | 
					
						
							|  |  |  | 		t.Errorf("Error, no tracer created") | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-10-05 13:13:16 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | func TestTrace(t *testing.T) { | 
					
						
							|  |  |  | 	cases := []struct { | 
					
						
							|  |  |  | 		name     string | 
					
						
							|  |  |  | 		rcode    int | 
					
						
							|  |  |  | 		question *dns.Msg | 
					
						
							|  |  |  | 		server   string | 
					
						
							|  |  |  | 	}{ | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			name:     "NXDOMAIN", | 
					
						
							|  |  |  | 			rcode:    dns.RcodeNameError, | 
					
						
							|  |  |  | 			question: new(dns.Msg).SetQuestion("example.org.", dns.TypeA), | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			name:     "NOERROR", | 
					
						
							|  |  |  | 			rcode:    dns.RcodeSuccess, | 
					
						
							|  |  |  | 			question: new(dns.Msg).SetQuestion("example.net.", dns.TypeCNAME), | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for _, tc := range cases { | 
					
						
							|  |  |  | 		t.Run(tc.name, func(t *testing.T) { | 
					
						
							|  |  |  | 			w := dnstest.NewRecorder(&test.ResponseWriter{}) | 
					
						
							|  |  |  | 			m := mocktracer.New() | 
					
						
							|  |  |  | 			tr := &trace{ | 
					
						
							|  |  |  | 				Next: test.HandlerFunc(func(_ context.Context, w dns.ResponseWriter, r *dns.Msg) (int, error) { | 
					
						
							|  |  |  | 					m := new(dns.Msg) | 
					
						
							|  |  |  | 					m.SetRcode(r, tc.rcode) | 
					
						
							|  |  |  | 					w.WriteMsg(m) | 
					
						
							|  |  |  | 					return tc.rcode, nil | 
					
						
							|  |  |  | 				}), | 
					
						
							|  |  |  | 				every:  1, | 
					
						
							|  |  |  | 				tracer: m, | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			ctx := context.WithValue(context.TODO(), plugin.ServerCtx{}, server) | 
					
						
							|  |  |  | 			if _, err := tr.ServeDNS(ctx, w, tc.question); err != nil { | 
					
						
							|  |  |  | 				t.Fatalf("Error during tr.ServeDNS(ctx, w, %v): %v", tc.question, err) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			fs := m.FinishedSpans() | 
					
						
							|  |  |  | 			// Each trace consists of two spans; the root and the Next function. | 
					
						
							|  |  |  | 			if len(fs) != 2 { | 
					
						
							|  |  |  | 				t.Fatalf("Unexpected span count: len(fs): want 2, got %v", len(fs)) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			rootSpan := fs[1] | 
					
						
							|  |  |  | 			req := request.Request{W: w, Req: tc.question} | 
					
						
							|  |  |  | 			if rootSpan.OperationName != spanName(ctx, req) { | 
					
						
							|  |  |  | 				t.Errorf("Unexpected span name: rootSpan.Name: want %v, got %v", spanName(ctx, req), rootSpan.OperationName) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			if rootSpan.Tag(tagName) != req.Name() { | 
					
						
							|  |  |  | 				t.Errorf("Unexpected span tag: rootSpan.Tag(%v): want %v, got %v", tagName, req.Name(), rootSpan.Tag(tagName)) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			if rootSpan.Tag(tagType) != req.Type() { | 
					
						
							|  |  |  | 				t.Errorf("Unexpected span tag: rootSpan.Tag(%v): want %v, got %v", tagType, req.Type(), rootSpan.Tag(tagType)) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			if rootSpan.Tag(tagRcode) != rcode.ToString(tc.rcode) { | 
					
						
							|  |  |  | 				t.Errorf("Unexpected span tag: rootSpan.Tag(%v): want %v, got %v", tagRcode, rcode.ToString(tc.rcode), rootSpan.Tag(tagRcode)) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		}) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } |