| 
									
										
										
										
											2016-10-26 10:01:52 +01:00
										 |  |  | package metrics
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import (
 | 
					
						
							| 
									
										
										
										
											2018-04-22 08:34:35 +01:00
										 |  |  | 	"context"
 | 
					
						
							| 
									
										
										
										
											2016-10-26 10:01:52 +01:00
										 |  |  | 	"testing"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-14 09:36:06 +01:00
										 |  |  | 	"github.com/coredns/coredns/plugin"
 | 
					
						
							|  |  |  | 	mtest "github.com/coredns/coredns/plugin/metrics/test"
 | 
					
						
							| 
									
										
										
										
											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"
 | 
					
						
							| 
									
										
										
										
											2016-10-26 10:01:52 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/miekg/dns"
 | 
					
						
							|  |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestMetrics(t *testing.T) {
 | 
					
						
							| 
									
										
										
										
											2017-12-13 16:59:10 -05:00
										 |  |  | 	met := New("localhost:0")
 | 
					
						
							| 
									
										
										
										
											2016-10-26 10:01:52 +01:00
										 |  |  | 	if err := met.OnStartup(); err != nil {
 | 
					
						
							|  |  |  | 		t.Fatalf("Failed to start metrics handler: %s", err)
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2018-04-21 17:43:02 +01:00
										 |  |  | 	defer met.OnFinalShutdown()
 | 
					
						
							| 
									
										
										
										
											2016-10-26 10:01:52 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	met.AddZone("example.org.")
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tests := []struct {
 | 
					
						
							| 
									
										
										
										
											2017-09-14 09:36:06 +01:00
										 |  |  | 		next          plugin.Handler
 | 
					
						
							| 
									
										
										
										
											2016-10-26 10:01:52 +01:00
										 |  |  | 		qname         string
 | 
					
						
							|  |  |  | 		qtype         uint16
 | 
					
						
							|  |  |  | 		metric        string
 | 
					
						
							|  |  |  | 		expectedValue string
 | 
					
						
							|  |  |  | 	}{
 | 
					
						
							|  |  |  | 		// This all works because 1 bucket (1 zone, 1 type)
 | 
					
						
							|  |  |  | 		{
 | 
					
						
							|  |  |  | 			next:          test.NextHandler(dns.RcodeSuccess, nil),
 | 
					
						
							|  |  |  | 			qname:         "example.org",
 | 
					
						
							|  |  |  | 			metric:        "coredns_dns_request_count_total",
 | 
					
						
							|  |  |  | 			expectedValue: "1",
 | 
					
						
							|  |  |  | 		},
 | 
					
						
							|  |  |  | 		{
 | 
					
						
							|  |  |  | 			next:          test.NextHandler(dns.RcodeSuccess, nil),
 | 
					
						
							|  |  |  | 			qname:         "example.org",
 | 
					
						
							|  |  |  | 			metric:        "coredns_dns_request_count_total",
 | 
					
						
							|  |  |  | 			expectedValue: "2",
 | 
					
						
							|  |  |  | 		},
 | 
					
						
							|  |  |  | 		{
 | 
					
						
							|  |  |  | 			next:          test.NextHandler(dns.RcodeSuccess, nil),
 | 
					
						
							|  |  |  | 			qname:         "example.org",
 | 
					
						
							|  |  |  | 			metric:        "coredns_dns_request_type_count_total",
 | 
					
						
							|  |  |  | 			expectedValue: "3",
 | 
					
						
							|  |  |  | 		},
 | 
					
						
							|  |  |  | 		{
 | 
					
						
							|  |  |  | 			next:          test.NextHandler(dns.RcodeSuccess, nil),
 | 
					
						
							|  |  |  | 			qname:         "example.org",
 | 
					
						
							|  |  |  | 			metric:        "coredns_dns_response_rcode_count_total",
 | 
					
						
							|  |  |  | 			expectedValue: "4",
 | 
					
						
							|  |  |  | 		},
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ctx := context.TODO()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for i, tc := range tests {
 | 
					
						
							|  |  |  | 		req := new(dns.Msg)
 | 
					
						
							|  |  |  | 		if tc.qtype == 0 {
 | 
					
						
							|  |  |  | 			tc.qtype = dns.TypeA
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 		req.SetQuestion(dns.Fqdn(tc.qname), tc.qtype)
 | 
					
						
							|  |  |  | 		met.Next = tc.next
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-21 15:15:47 +01:00
										 |  |  | 		rec := dnstest.NewRecorder(&test.ResponseWriter{})
 | 
					
						
							| 
									
										
										
										
											2016-10-26 10:01:52 +01:00
										 |  |  | 		_, err := met.ServeDNS(ctx, rec, req)
 | 
					
						
							|  |  |  | 		if err != nil {
 | 
					
						
							|  |  |  | 			t.Fatalf("Test %d: Expected no error, but got %s", i, err)
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-28 12:57:10 +01:00
										 |  |  | 		result := mtest.Scrape(t, "http://"+ListenAddr+"/metrics")
 | 
					
						
							| 
									
										
										
										
											2016-10-26 10:01:52 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if tc.expectedValue != "" {
 | 
					
						
							|  |  |  | 			got, _ := mtest.MetricValue(tc.metric, result)
 | 
					
						
							|  |  |  | 			if got != tc.expectedValue {
 | 
					
						
							|  |  |  | 				t.Errorf("Test %d: Expected value %s for metrics %s, but got %s", i, tc.expectedValue, tc.metric, got)
 | 
					
						
							|  |  |  | 			}
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | }
 |