| 
									
										
										
										
											2018-07-13 14:32:07 +01:00
										 |  |  | package rewrite
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import (
 | 
					
						
							|  |  |  | 	"context"
 | 
					
						
							|  |  |  | 	"strings"
 | 
					
						
							|  |  |  | 	"testing"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/coredns/coredns/plugin"
 | 
					
						
							|  |  |  | 	"github.com/coredns/coredns/plugin/pkg/dnstest"
 | 
					
						
							|  |  |  | 	"github.com/coredns/coredns/plugin/test"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/miekg/dns"
 | 
					
						
							|  |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestRewriteIllegalName(t *testing.T) {
 | 
					
						
							|  |  |  | 	r, _ := newNameRule("stop", "example.org.", "example..org.")
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	rw := Rewrite{
 | 
					
						
							|  |  |  | 		Next:     plugin.HandlerFunc(msgPrinter),
 | 
					
						
							|  |  |  | 		Rules:    []Rule{r},
 | 
					
						
							|  |  |  | 		noRevert: true,
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ctx := context.TODO()
 | 
					
						
							|  |  |  | 	m := new(dns.Msg)
 | 
					
						
							|  |  |  | 	m.SetQuestion("example.org.", dns.TypeA)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	rec := dnstest.NewRecorder(&test.ResponseWriter{})
 | 
					
						
							|  |  |  | 	_, err := rw.ServeDNS(ctx, rec, m)
 | 
					
						
							|  |  |  | 	if !strings.Contains(err.Error(), "invalid name") {
 | 
					
						
							|  |  |  | 		t.Errorf("Expected invalid name, got %s", err.Error())
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | }
 | 
					
						
							| 
									
										
										
										
											2018-10-23 16:59:59 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-06 16:10:46 -06:00
										 |  |  | func TestRewriteNamePrefixSuffix(t *testing.T) {
 | 
					
						
							| 
									
										
										
										
											2018-12-06 15:02:07 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-06 16:10:46 -06:00
										 |  |  | 	ctx, close := context.WithCancel(context.TODO())
 | 
					
						
							|  |  |  | 	defer close()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tests := []struct {
 | 
					
						
							|  |  |  | 		next     string
 | 
					
						
							|  |  |  | 		args     []string
 | 
					
						
							|  |  |  | 		question string
 | 
					
						
							|  |  |  | 		expected string
 | 
					
						
							|  |  |  | 	}{
 | 
					
						
							|  |  |  | 		{"stop", []string{"prefix", "foo", "bar"}, "foo.example.com.", "bar.example.com."},
 | 
					
						
							|  |  |  | 		{"stop", []string{"prefix", "foo.", "bar."}, "foo.example.com.", "bar.example.com."},
 | 
					
						
							|  |  |  | 		{"stop", []string{"suffix", "com", "org"}, "foo.example.com.", "foo.example.org."},
 | 
					
						
							|  |  |  | 		{"stop", []string{"suffix", ".com", ".org"}, "foo.example.com.", "foo.example.org."},
 | 
					
						
							| 
									
										
										
										
											2018-12-06 15:02:07 -06:00
										 |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2018-12-06 16:10:46 -06:00
										 |  |  | 	for _, tc := range tests {
 | 
					
						
							|  |  |  | 		r, err := newNameRule(tc.next, tc.args...)
 | 
					
						
							|  |  |  | 		if err != nil {
 | 
					
						
							|  |  |  | 			t.Fatalf("Expected no error, got %s", err)
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							| 
									
										
										
										
											2018-12-06 15:02:07 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-06 16:10:46 -06:00
										 |  |  | 		rw := Rewrite{
 | 
					
						
							|  |  |  | 			Next:     plugin.HandlerFunc(msgPrinter),
 | 
					
						
							|  |  |  | 			Rules:    []Rule{r},
 | 
					
						
							|  |  |  | 			noRevert: true,
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							| 
									
										
										
										
											2018-12-06 15:02:07 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-06 16:10:46 -06:00
										 |  |  | 		m := new(dns.Msg)
 | 
					
						
							|  |  |  | 		m.SetQuestion(tc.question, dns.TypeA)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		rec := dnstest.NewRecorder(&test.ResponseWriter{})
 | 
					
						
							|  |  |  | 		_, err = rw.ServeDNS(ctx, rec, m)
 | 
					
						
							|  |  |  | 		if err != nil {
 | 
					
						
							|  |  |  | 			t.Fatalf("Expected no error, got %s", err)
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 		actual := rec.Msg.Question[0].Name
 | 
					
						
							|  |  |  | 		if actual != tc.expected {
 | 
					
						
							|  |  |  | 			t.Fatalf("Expected rewrite to %v, got %v", tc.expected, actual)
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							| 
									
										
										
										
											2018-12-06 15:02:07 -06:00
										 |  |  | 	}
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-23 16:59:59 -04:00
										 |  |  | func TestNewNameRule(t *testing.T) {
 | 
					
						
							|  |  |  | 	tests := []struct {
 | 
					
						
							|  |  |  | 		next         string
 | 
					
						
							|  |  |  | 		args         []string
 | 
					
						
							|  |  |  | 		expectedFail bool
 | 
					
						
							|  |  |  | 	}{
 | 
					
						
							|  |  |  | 		{"stop", []string{"exact", "srv3.coredns.rocks", "srv4.coredns.rocks"}, false},
 | 
					
						
							|  |  |  | 		{"stop", []string{"srv1.coredns.rocks", "srv2.coredns.rocks"}, false},
 | 
					
						
							|  |  |  | 		{"stop", []string{"suffix", "coredns.rocks", "coredns.rocks."}, false},
 | 
					
						
							|  |  |  | 		{"stop", []string{"suffix", "coredns.rocks.", "coredns.rocks"}, false},
 | 
					
						
							|  |  |  | 		{"stop", []string{"suffix", "coredns.rocks.", "coredns.rocks."}, false},
 | 
					
						
							|  |  |  | 		{"stop", []string{"regex", "srv1.coredns.rocks", "10"}, false},
 | 
					
						
							|  |  |  | 		{"stop", []string{"regex", "(.*).coredns.rocks", "10"}, false},
 | 
					
						
							|  |  |  | 		{"stop", []string{"regex", "(.*).coredns.rocks", "{1}.coredns.rocks"}, false},
 | 
					
						
							|  |  |  | 		{"stop", []string{"regex", "(.*).coredns.rocks", "{1}.{2}.coredns.rocks"}, true},
 | 
					
						
							|  |  |  | 		{"stop", []string{"regex", "staging.mydomain.com", "aws-loadbalancer-id.us-east-1.elb.amazonaws.com"}, false},
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	for i, tc := range tests {
 | 
					
						
							|  |  |  | 		failed := false
 | 
					
						
							|  |  |  | 		rule, err := newNameRule(tc.next, tc.args...)
 | 
					
						
							|  |  |  | 		if err != nil {
 | 
					
						
							|  |  |  | 			failed = true
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 		if !failed && !tc.expectedFail {
 | 
					
						
							|  |  |  | 			t.Logf("Test %d: PASS, passed as expected: (%s) %s", i, tc.next, tc.args)
 | 
					
						
							|  |  |  | 			continue
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 		if failed && tc.expectedFail {
 | 
					
						
							|  |  |  | 			t.Logf("Test %d: PASS, failed as expected: (%s) %s: %s", i, tc.next, tc.args, err)
 | 
					
						
							|  |  |  | 			continue
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 		if failed && !tc.expectedFail {
 | 
					
						
							|  |  |  | 			t.Fatalf("Test %d: FAIL, expected fail=%t, but received fail=%t: (%s) %s, rule=%v, error=%s", i, tc.expectedFail, failed, tc.next, tc.args, rule, err)
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 		t.Fatalf("Test %d: FAIL, expected fail=%t, but received fail=%t: (%s) %s, rule=%v", i, tc.expectedFail, failed, tc.next, tc.args, rule)
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	for i, tc := range tests {
 | 
					
						
							|  |  |  | 		failed := false
 | 
					
						
							|  |  |  | 		tc.args = append([]string{tc.next, "name"}, tc.args...)
 | 
					
						
							|  |  |  | 		rule, err := newRule(tc.args...)
 | 
					
						
							|  |  |  | 		if err != nil {
 | 
					
						
							|  |  |  | 			failed = true
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 		if !failed && !tc.expectedFail {
 | 
					
						
							|  |  |  | 			t.Logf("Test %d: PASS, passed as expected: (%s) %s", i, tc.next, tc.args)
 | 
					
						
							|  |  |  | 			continue
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 		if failed && tc.expectedFail {
 | 
					
						
							|  |  |  | 			t.Logf("Test %d: PASS, failed as expected: (%s) %s: %s", i, tc.next, tc.args, err)
 | 
					
						
							|  |  |  | 			continue
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 		t.Fatalf("Test %d: FAIL, expected fail=%t, but received fail=%t: (%s) %s, rule=%v", i, tc.expectedFail, failed, tc.next, tc.args, rule)
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | }
 |