aboutsummaryrefslogtreecommitdiff
path: root/middleware/test/helpers.go
diff options
context:
space:
mode:
authorGravatar Miek Gieben <miek@miek.nl> 2017-08-18 14:45:20 +0100
committerGravatar GitHub <noreply@github.com> 2017-08-18 14:45:20 +0100
commitf96cf27193032120ba727316c4057dffed0cbe48 (patch)
treec76caa111aba281560a3b7db91953e307c06f1c9 /middleware/test/helpers.go
parentcc4e4a0626bf8881e2ae8b2c1e52e09c6308e74e (diff)
downloadcoredns-f96cf27193032120ba727316c4057dffed0cbe48.tar.gz
coredns-f96cf27193032120ba727316c4057dffed0cbe48.tar.zst
coredns-f96cf27193032120ba727316c4057dffed0cbe48.zip
mw/federation: add federation back as separate mw for k8s (#929)
* mw/federaration This PR add the federation back as a middleware to keep it more contained from the main kubernetes code. It also makes parseRequest less import and pushes this functionlity down in the k.Entries. This minimizes (or tries to) the importance for the qtype in the query. In the end the qtype checking should only happen in ServeDNS - but for k8s this might proof difficult. Numerous other cleanup in code and kubernetes tests. * up test coverage
Diffstat (limited to 'middleware/test/helpers.go')
-rw-r--r--middleware/test/helpers.go12
1 files changed, 6 insertions, 6 deletions
diff --git a/middleware/test/helpers.go b/middleware/test/helpers.go
index 8d9cada43..2074f46c2 100644
--- a/middleware/test/helpers.go
+++ b/middleware/test/helpers.go
@@ -218,35 +218,35 @@ func Section(t *testing.T, tc Case, sec sect, rr []dns.RR) bool {
case *dns.SOA:
tt := section[i].(*dns.SOA)
if x.Ns != tt.Ns {
- t.Errorf("SOA nameserver should be %q, but is %q", x.Ns, tt.Ns)
+ t.Errorf("SOA nameserver should be %q, but is %q", tt.Ns, x.Ns)
return false
}
case *dns.PTR:
tt := section[i].(*dns.PTR)
if x.Ptr != tt.Ptr {
- t.Errorf("PTR ptr should be %q, but is %q", x.Ptr, tt.Ptr)
+ t.Errorf("PTR ptr should be %q, but is %q", tt.Ptr, x.Ptr)
return false
}
case *dns.CNAME:
tt := section[i].(*dns.CNAME)
if x.Target != tt.Target {
- t.Errorf("CNAME target should be %q, but is %q", x.Target, tt.Target)
+ t.Errorf("CNAME target should be %q, but is %q", tt.Target, x.Target)
return false
}
case *dns.MX:
tt := section[i].(*dns.MX)
if x.Mx != tt.Mx {
- t.Errorf("MX Mx should be %q, but is %q", x.Mx, tt.Mx)
+ t.Errorf("MX Mx should be %q, but is %q", tt.Mx, x.Mx)
return false
}
if x.Preference != tt.Preference {
- t.Errorf("MX Preference should be %q, but is %q", x.Preference, tt.Preference)
+ t.Errorf("MX Preference should be %q, but is %q", tt.Preference, x.Preference)
return false
}
case *dns.NS:
tt := section[i].(*dns.NS)
if x.Ns != tt.Ns {
- t.Errorf("NS nameserver should be %q, but is %q", x.Ns, tt.Ns)
+ t.Errorf("NS nameserver should be %q, but is %q", tt.Ns, x.Ns)
return false
}
case *dns.OPT: