aboutsummaryrefslogtreecommitdiff
path: root/plugin/rewrite/rewrite_test.go
diff options
context:
space:
mode:
authorGravatar Chris O'Haver <cohaver@infoblox.com> 2022-09-08 14:56:27 -0400
committerGravatar GitHub <noreply@github.com> 2022-09-08 14:56:27 -0400
commitb56b080a7c1125cd97c0a2edd7ae21bc1bdcd2a5 (patch)
tree1494a9542db6d6f69db39113734c8518a6701daf /plugin/rewrite/rewrite_test.go
parent1f0a41a66597cb8ab4aace8ea5b5bad880bcd23b (diff)
downloadcoredns-b56b080a7c1125cd97c0a2edd7ae21bc1bdcd2a5.tar.gz
coredns-b56b080a7c1125cd97c0a2edd7ae21bc1bdcd2a5.tar.zst
coredns-b56b080a7c1125cd97c0a2edd7ae21bc1bdcd2a5.zip
plugin/view: Advanced routing interface and new 'view' plugin (#5538)
* introduce new interface "dnsserver.Viewer", that allows a plugin implementing it to decide if a query should be routed into its server block. * add new plugin "view", that uses the new interface to enable a user to define expression based conditions that must be met for a query to be routed to its server block. Signed-off-by: Chris O'Haver <cohaver@infoblox.com>
Diffstat (limited to 'plugin/rewrite/rewrite_test.go')
-rw-r--r--plugin/rewrite/rewrite_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/rewrite/rewrite_test.go b/plugin/rewrite/rewrite_test.go
index ae5576ab5..03d4fff1d 100644
--- a/plugin/rewrite/rewrite_test.go
+++ b/plugin/rewrite/rewrite_test.go
@@ -604,8 +604,8 @@ func TestRewriteEDNS0LocalVariable(t *testing.T) {
}
rw.Rules = []Rule{r}
- ctx := context.TODO()
rec := dnstest.NewRecorder(&test.ResponseWriter{})
+ ctx := meta.Collect(context.TODO(), request.Request{W: rec, Req: m})
meta.ServeDNS(ctx, rec, m)
resp := rec.Msg