| 
									
										
										
										
											2016-10-17 18:37:56 +01:00
										 |  |  | package test | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"io/ioutil" | 
					
						
							|  |  |  | 	"log" | 
					
						
							|  |  |  | 	"os" | 
					
						
							|  |  |  | 	"path" | 
					
						
							|  |  |  | 	"testing" | 
					
						
							|  |  |  | 	"time" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-14 09:36:06 +01:00
										 |  |  | 	"github.com/coredns/coredns/plugin/proxy" | 
					
						
							|  |  |  | 	"github.com/coredns/coredns/plugin/test" | 
					
						
							| 
									
										
										
										
											2017-02-21 22:51:47 -08:00
										 |  |  | 	"github.com/coredns/coredns/request" | 
					
						
							| 
									
										
										
										
											2016-10-17 18:37:56 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/miekg/dns" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestAuto(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2017-01-12 08:13:50 +00:00
										 |  |  | 	t.Parallel() | 
					
						
							| 
									
										
										
										
											2016-10-17 18:37:56 +01:00
										 |  |  | 	tmpdir, err := ioutil.TempDir(os.TempDir(), "coredns") | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatal(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	corefile := `org:0 { | 
					
						
							|  |  |  | 		auto { | 
					
						
							|  |  |  | 			directory ` + tmpdir + ` db\.(.*) {1} 1 | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | ` | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-24 11:35:14 +01:00
										 |  |  | 	i, udp, _, err := CoreDNSServerAndPorts(corefile) | 
					
						
							| 
									
										
										
										
											2016-10-17 18:37:56 +01:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatalf("Could not get CoreDNS serving instance: %s", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	defer i.Stop() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	log.SetOutput(ioutil.Discard) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-15 08:12:58 +00:00
										 |  |  | 	p := proxy.NewLookup([]string{udp}) | 
					
						
							| 
									
										
										
										
											2016-10-17 18:37:56 +01:00
										 |  |  | 	state := request.Request{W: &test.ResponseWriter{}, Req: new(dns.Msg)} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	resp, err := p.Lookup(state, "www.example.org.", dns.TypeA) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatal("Expected to receive reply, but didn't") | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if resp.Rcode != dns.RcodeServerFailure { | 
					
						
							|  |  |  | 		t.Fatalf("Expected reply to be a SERVFAIL, got %d", resp.Rcode) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Write db.example.org to get example.org. | 
					
						
							|  |  |  | 	if err = ioutil.WriteFile(path.Join(tmpdir, "db.example.org"), []byte(zoneContent), 0644); err != nil { | 
					
						
							|  |  |  | 		t.Fatal(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-24 09:18:27 +01:00
										 |  |  | 	time.Sleep(1500 * time.Millisecond) // wait for it to be picked up | 
					
						
							| 
									
										
										
										
											2016-11-07 16:21:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-17 18:37:56 +01:00
										 |  |  | 	resp, err = p.Lookup(state, "www.example.org.", dns.TypeA) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatal("Expected to receive reply, but didn't") | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if len(resp.Answer) != 1 { | 
					
						
							|  |  |  | 		t.Fatalf("Expected 1 RR in the answer section, got %d", len(resp.Answer)) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Remove db.example.org again. | 
					
						
							|  |  |  | 	os.Remove(path.Join(tmpdir, "db.example.org")) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	time.Sleep(1100 * time.Millisecond) // wait for it to be picked up | 
					
						
							|  |  |  | 	resp, err = p.Lookup(state, "www.example.org.", dns.TypeA) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatal("Expected to receive reply, but didn't") | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if resp.Rcode != dns.RcodeServerFailure { | 
					
						
							|  |  |  | 		t.Fatalf("Expected reply to be a SERVFAIL, got %d", resp.Rcode) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-07 11:12:20 +00:00
										 |  |  | func TestAutoNonExistentZone(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2017-01-12 08:13:50 +00:00
										 |  |  | 	t.Parallel() | 
					
						
							| 
									
										
										
										
											2016-11-07 11:12:20 +00:00
										 |  |  | 	tmpdir, err := ioutil.TempDir(os.TempDir(), "coredns") | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatal(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	log.SetOutput(ioutil.Discard) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	corefile := `.:0 { | 
					
						
							|  |  |  | 		auto { | 
					
						
							|  |  |  | 			directory ` + tmpdir + ` (.*) {1} 1 | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		errors stdout | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | ` | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	i, err := CoreDNSServer(corefile) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatalf("Could not get CoreDNS serving instance: %s", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	udp, _ := CoreDNSServerPorts(i, 0) | 
					
						
							|  |  |  | 	if udp == "" { | 
					
						
							| 
									
										
										
										
											2016-11-13 14:03:12 +00:00
										 |  |  | 		t.Fatal("Could not get UDP listening port") | 
					
						
							| 
									
										
										
										
											2016-11-07 11:12:20 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	defer i.Stop() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-15 08:12:58 +00:00
										 |  |  | 	p := proxy.NewLookup([]string{udp}) | 
					
						
							| 
									
										
										
										
											2016-11-07 11:12:20 +00:00
										 |  |  | 	state := request.Request{W: &test.ResponseWriter{}, Req: new(dns.Msg)} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	resp, err := p.Lookup(state, "example.org.", dns.TypeA) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatal("Expected to receive reply, but didn't") | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if resp.Rcode != dns.RcodeServerFailure { | 
					
						
							|  |  |  | 		t.Fatalf("Expected reply to be a SERVFAIL, got %d", resp.Rcode) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-07 16:21:16 +00:00
										 |  |  | func TestAutoAXFR(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2017-01-12 08:13:50 +00:00
										 |  |  | 	t.Parallel() | 
					
						
							| 
									
										
										
										
											2016-11-07 16:21:16 +00:00
										 |  |  | 	log.SetOutput(ioutil.Discard) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tmpdir, err := ioutil.TempDir(os.TempDir(), "coredns") | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatal(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	corefile := `org:0 { | 
					
						
							|  |  |  | 		auto { | 
					
						
							|  |  |  | 			directory ` + tmpdir + ` db\.(.*) {1} 1 | 
					
						
							|  |  |  | 			transfer to * | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | ` | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	i, err := CoreDNSServer(corefile) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatalf("Could not get CoreDNS serving instance: %s", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	udp, _ := CoreDNSServerPorts(i, 0) | 
					
						
							|  |  |  | 	if udp == "" { | 
					
						
							| 
									
										
										
										
											2016-11-13 14:03:12 +00:00
										 |  |  | 		t.Fatal("Could not get UDP listening port") | 
					
						
							| 
									
										
										
										
											2016-11-07 16:21:16 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	defer i.Stop() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Write db.example.org to get example.org. | 
					
						
							|  |  |  | 	if err = ioutil.WriteFile(path.Join(tmpdir, "db.example.org"), []byte(zoneContent), 0644); err != nil { | 
					
						
							|  |  |  | 		t.Fatal(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	time.Sleep(1100 * time.Millisecond) // wait for it to be picked up | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-15 08:12:58 +00:00
										 |  |  | 	p := proxy.NewLookup([]string{udp}) | 
					
						
							| 
									
										
										
										
											2016-11-07 16:21:16 +00:00
										 |  |  | 	m := new(dns.Msg) | 
					
						
							|  |  |  | 	m.SetAxfr("example.org.") | 
					
						
							|  |  |  | 	state := request.Request{W: &test.ResponseWriter{}, Req: m} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	resp, err := p.Lookup(state, "example.org.", dns.TypeAXFR) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatal("Expected to receive reply, but didn't") | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if len(resp.Answer) != 5 { | 
					
						
							| 
									
										
										
										
											2016-11-13 14:03:12 +00:00
										 |  |  | 		t.Fatalf("Expected response with %d RRs, got %d", 5, len(resp.Answer)) | 
					
						
							| 
									
										
										
										
											2016-11-07 16:21:16 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-17 18:37:56 +01:00
										 |  |  | const zoneContent = `; testzone | 
					
						
							|  |  |  | @	IN	SOA	sns.dns.icann.org. noc.dns.icann.org. 2016082534 7200 3600 1209600 3600 | 
					
						
							|  |  |  | 		NS	a.iana-servers.net. | 
					
						
							|  |  |  | 		NS	b.iana-servers.net. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | www IN A 127.0.0.1 | 
					
						
							|  |  |  | ` |