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"
|
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),
|
Speed up testing (#4239)
* Speed up testing
* make notification run in the background, this recudes the test_readme
time from 18s to 0.10s
* reduce time for zone reload
* TestServeDNSConcurrent remove entirely. This took a whopping 58s for
... ? A few minutes staring didn't reveal wth it is actually testing.
Making values smaller revealed race conditions in the tests. Remove
entirely.
* Move many interval values to variables so we can reset them to short
values for the tests.
* test_large_axfr: make the zone smaller. The number used 64K has no
rational, make it 64/10 to speed up.
* TestProxyThreeWay: use client with shorter timeout
A few random tidbits in other tests.
Total time saved: 177s (almost 3m) - which makes it worthwhile again to
run the test locally:
this branch:
~~~
ok github.com/coredns/coredns/test 10.437s
cd plugin; time go t ./...
5,51s user 7,51s system 11,15s elapsed 744%CPU (
~~~
master:
~~~
ok github.com/coredns/coredns/test 35.252s
cd plugin; time go t ./...
157,64s user 15,39s system 50,05s elapsed 345%CPU ()
~~~
tests/ -25s
plugins/ -40s
This brings the total on 20s, and another 10s can be saved by fixing
dnstapio. Moving this to 5s would be even better, but 10s is also nice.
Signed-off-by: Miek Gieben <miek@miek.nl>
* Also 0.01
Signed-off-by: Miek Gieben <miek@miek.nl>
2020-10-30 10:27:04 +01:00
|
|
|
qname: "example.org.",
|
2020-03-26 09:17:33 +01:00
|
|
|
metric: "coredns_dns_requests_total",
|
2016-10-26 10:01:52 +01:00
|
|
|
expectedValue: "1",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
next: test.NextHandler(dns.RcodeSuccess, nil),
|
Speed up testing (#4239)
* Speed up testing
* make notification run in the background, this recudes the test_readme
time from 18s to 0.10s
* reduce time for zone reload
* TestServeDNSConcurrent remove entirely. This took a whopping 58s for
... ? A few minutes staring didn't reveal wth it is actually testing.
Making values smaller revealed race conditions in the tests. Remove
entirely.
* Move many interval values to variables so we can reset them to short
values for the tests.
* test_large_axfr: make the zone smaller. The number used 64K has no
rational, make it 64/10 to speed up.
* TestProxyThreeWay: use client with shorter timeout
A few random tidbits in other tests.
Total time saved: 177s (almost 3m) - which makes it worthwhile again to
run the test locally:
this branch:
~~~
ok github.com/coredns/coredns/test 10.437s
cd plugin; time go t ./...
5,51s user 7,51s system 11,15s elapsed 744%CPU (
~~~
master:
~~~
ok github.com/coredns/coredns/test 35.252s
cd plugin; time go t ./...
157,64s user 15,39s system 50,05s elapsed 345%CPU ()
~~~
tests/ -25s
plugins/ -40s
This brings the total on 20s, and another 10s can be saved by fixing
dnstapio. Moving this to 5s would be even better, but 10s is also nice.
Signed-off-by: Miek Gieben <miek@miek.nl>
* Also 0.01
Signed-off-by: Miek Gieben <miek@miek.nl>
2020-10-30 10:27:04 +01:00
|
|
|
qname: "example.org.",
|
2020-03-26 09:17:33 +01:00
|
|
|
metric: "coredns_dns_requests_total",
|
2016-10-26 10:01:52 +01:00
|
|
|
expectedValue: "2",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
next: test.NextHandler(dns.RcodeSuccess, nil),
|
Speed up testing (#4239)
* Speed up testing
* make notification run in the background, this recudes the test_readme
time from 18s to 0.10s
* reduce time for zone reload
* TestServeDNSConcurrent remove entirely. This took a whopping 58s for
... ? A few minutes staring didn't reveal wth it is actually testing.
Making values smaller revealed race conditions in the tests. Remove
entirely.
* Move many interval values to variables so we can reset them to short
values for the tests.
* test_large_axfr: make the zone smaller. The number used 64K has no
rational, make it 64/10 to speed up.
* TestProxyThreeWay: use client with shorter timeout
A few random tidbits in other tests.
Total time saved: 177s (almost 3m) - which makes it worthwhile again to
run the test locally:
this branch:
~~~
ok github.com/coredns/coredns/test 10.437s
cd plugin; time go t ./...
5,51s user 7,51s system 11,15s elapsed 744%CPU (
~~~
master:
~~~
ok github.com/coredns/coredns/test 35.252s
cd plugin; time go t ./...
157,64s user 15,39s system 50,05s elapsed 345%CPU ()
~~~
tests/ -25s
plugins/ -40s
This brings the total on 20s, and another 10s can be saved by fixing
dnstapio. Moving this to 5s would be even better, but 10s is also nice.
Signed-off-by: Miek Gieben <miek@miek.nl>
* Also 0.01
Signed-off-by: Miek Gieben <miek@miek.nl>
2020-10-30 10:27:04 +01:00
|
|
|
qname: "example.org.",
|
2020-03-26 09:17:33 +01:00
|
|
|
metric: "coredns_dns_requests_total",
|
2016-10-26 10:01:52 +01:00
|
|
|
expectedValue: "3",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
next: test.NextHandler(dns.RcodeSuccess, nil),
|
Speed up testing (#4239)
* Speed up testing
* make notification run in the background, this recudes the test_readme
time from 18s to 0.10s
* reduce time for zone reload
* TestServeDNSConcurrent remove entirely. This took a whopping 58s for
... ? A few minutes staring didn't reveal wth it is actually testing.
Making values smaller revealed race conditions in the tests. Remove
entirely.
* Move many interval values to variables so we can reset them to short
values for the tests.
* test_large_axfr: make the zone smaller. The number used 64K has no
rational, make it 64/10 to speed up.
* TestProxyThreeWay: use client with shorter timeout
A few random tidbits in other tests.
Total time saved: 177s (almost 3m) - which makes it worthwhile again to
run the test locally:
this branch:
~~~
ok github.com/coredns/coredns/test 10.437s
cd plugin; time go t ./...
5,51s user 7,51s system 11,15s elapsed 744%CPU (
~~~
master:
~~~
ok github.com/coredns/coredns/test 35.252s
cd plugin; time go t ./...
157,64s user 15,39s system 50,05s elapsed 345%CPU ()
~~~
tests/ -25s
plugins/ -40s
This brings the total on 20s, and another 10s can be saved by fixing
dnstapio. Moving this to 5s would be even better, but 10s is also nice.
Signed-off-by: Miek Gieben <miek@miek.nl>
* Also 0.01
Signed-off-by: Miek Gieben <miek@miek.nl>
2020-10-30 10:27:04 +01:00
|
|
|
qname: "example.org.",
|
2020-03-26 09:17:33 +01:00
|
|
|
metric: "coredns_dns_responses_total",
|
2016-10-26 10:01:52 +01:00
|
|
|
expectedValue: "4",
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ctx := context.TODO()
|
|
|
|
|
|
|
|
|
|
for i, tc := range tests {
|
|
|
|
|
req := new(dns.Msg)
|
|
|
|
|
if tc.qtype == 0 {
|
|
|
|
|
tc.qtype = dns.TypeA
|
|
|
|
|
}
|
Speed up testing (#4239)
* Speed up testing
* make notification run in the background, this recudes the test_readme
time from 18s to 0.10s
* reduce time for zone reload
* TestServeDNSConcurrent remove entirely. This took a whopping 58s for
... ? A few minutes staring didn't reveal wth it is actually testing.
Making values smaller revealed race conditions in the tests. Remove
entirely.
* Move many interval values to variables so we can reset them to short
values for the tests.
* test_large_axfr: make the zone smaller. The number used 64K has no
rational, make it 64/10 to speed up.
* TestProxyThreeWay: use client with shorter timeout
A few random tidbits in other tests.
Total time saved: 177s (almost 3m) - which makes it worthwhile again to
run the test locally:
this branch:
~~~
ok github.com/coredns/coredns/test 10.437s
cd plugin; time go t ./...
5,51s user 7,51s system 11,15s elapsed 744%CPU (
~~~
master:
~~~
ok github.com/coredns/coredns/test 35.252s
cd plugin; time go t ./...
157,64s user 15,39s system 50,05s elapsed 345%CPU ()
~~~
tests/ -25s
plugins/ -40s
This brings the total on 20s, and another 10s can be saved by fixing
dnstapio. Moving this to 5s would be even better, but 10s is also nice.
Signed-off-by: Miek Gieben <miek@miek.nl>
* Also 0.01
Signed-off-by: Miek Gieben <miek@miek.nl>
2020-10-30 10:27:04 +01:00
|
|
|
req.SetQuestion(tc.qname, tc.qtype)
|
2016-10-26 10:01:52 +01:00
|
|
|
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)
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-19 11:23:13 +00:00
|
|
|
result := test.Scrape("http://" + ListenAddr + "/metrics")
|
2016-10-26 10:01:52 +01:00
|
|
|
|
|
|
|
|
if tc.expectedValue != "" {
|
2019-01-19 11:23:13 +00:00
|
|
|
got, _ := test.MetricValue(tc.metric, result)
|
2016-10-26 10:01:52 +01:00
|
|
|
if got != tc.expectedValue {
|
|
|
|
|
t.Errorf("Test %d: Expected value %s for metrics %s, but got %s", i, tc.expectedValue, tc.metric, got)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|