aboutsummaryrefslogtreecommitdiff
path: root/test/plugin_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/plugin_test.go')
-rw-r--r--test/plugin_test.go43
1 files changed, 0 insertions, 43 deletions
diff --git a/test/plugin_test.go b/test/plugin_test.go
deleted file mode 100644
index 4003a958f..000000000
--- a/test/plugin_test.go
+++ /dev/null
@@ -1,43 +0,0 @@
-package test
-
-import (
- "testing"
-
- "github.com/coredns/coredns/plugin/test"
-
- "github.com/miekg/dns"
-
- // Load all managed plugins in github.com/coredns/coredns
- _ "github.com/coredns/coredns/core/plugin"
-)
-
-func benchmarkLookupBalanceRewriteCache(b *testing.B) {
- t := new(testing.T)
- name, rm, err := test.TempFile(".", exampleOrg)
- if err != nil {
- t.Fatalf("Failed to create zone: %s", err)
- }
- defer rm()
-
- corefile := `example.org:0 {
- file ` + name + `
- rewrite type ANY HINFO
- loadbalance
-}
-`
-
- ex, udp, _, err := CoreDNSServerAndPorts(corefile)
- if err != nil {
- t.Fatalf("Could not get CoreDNS serving instance: %s", err)
- }
- defer ex.Stop()
-
- c := new(dns.Client)
- m := new(dns.Msg)
- m.SetQuestion("example.org.", dns.TypeA)
-
- b.ResetTimer()
- for i := 0; i < b.N; i++ {
- c.Exchange(m, udp)
- }
-}