| 
									
										
										
										
											2019-03-07 20:35:16 +00:00
										 |  |  | package ready
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import (
 | 
					
						
							|  |  |  | 	"context"
 | 
					
						
							|  |  |  | 	"fmt"
 | 
					
						
							|  |  |  | 	"net/http"
 | 
					
						
							|  |  |  | 	"testing"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/coredns/coredns/plugin/erratic"
 | 
					
						
							|  |  |  | 	clog "github.com/coredns/coredns/plugin/pkg/log"
 | 
					
						
							|  |  |  | 	"github.com/coredns/coredns/plugin/test"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/miekg/dns"
 | 
					
						
							|  |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func init() { clog.Discard() }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestReady(t *testing.T) {
 | 
					
						
							|  |  |  | 	rd := &ready{Addr: ":0"}
 | 
					
						
							|  |  |  | 	e := &erratic.Erratic{}
 | 
					
						
							|  |  |  | 	plugins.Append(e, "erratic")
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-19 14:04:19 +08:00
										 |  |  | 	if err := rd.onStartup(); err != nil {
 | 
					
						
							|  |  |  | 		t.Fatalf("Unable to startup the readiness server: %v", err)
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2019-03-07 20:35:16 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	defer rd.onFinalShutdown()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	address := fmt.Sprintf("http://%s/ready", rd.ln.Addr().String())
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-19 14:04:19 +08:00
										 |  |  | 	response, err := http.Get(address)
 | 
					
						
							|  |  |  | 	if err != nil {
 | 
					
						
							|  |  |  | 		t.Fatalf("Unable to query %s: %v", address, err)
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	if response.StatusCode != 503 {
 | 
					
						
							|  |  |  | 		t.Errorf("Invalid status code: expecting %d, got %d", 503, response.StatusCode)
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	response.Body.Close()
 | 
					
						
							| 
									
										
										
										
											2019-03-07 20:35:16 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// make it ready by giving erratic 3 queries.
 | 
					
						
							|  |  |  | 	m := new(dns.Msg)
 | 
					
						
							|  |  |  | 	m.SetQuestion("example.org.", dns.TypeA)
 | 
					
						
							|  |  |  | 	e.ServeDNS(context.TODO(), &test.ResponseWriter{}, m)
 | 
					
						
							|  |  |  | 	e.ServeDNS(context.TODO(), &test.ResponseWriter{}, m)
 | 
					
						
							|  |  |  | 	e.ServeDNS(context.TODO(), &test.ResponseWriter{}, m)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-19 14:04:19 +08:00
										 |  |  | 	response, err = http.Get(address)
 | 
					
						
							| 
									
										
										
										
											2019-03-07 20:35:16 +00:00
										 |  |  | 	if err != nil {
 | 
					
						
							|  |  |  | 		t.Fatalf("Unable to query %s: %v", address, err)
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	if response.StatusCode != 200 {
 | 
					
						
							|  |  |  | 		t.Errorf("Invalid status code: expecting %d, got %d", 200, response.StatusCode)
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	response.Body.Close()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// make erratic not-ready by giving it more queries, this should not change the process readiness
 | 
					
						
							|  |  |  | 	e.ServeDNS(context.TODO(), &test.ResponseWriter{}, m)
 | 
					
						
							|  |  |  | 	e.ServeDNS(context.TODO(), &test.ResponseWriter{}, m)
 | 
					
						
							|  |  |  | 	e.ServeDNS(context.TODO(), &test.ResponseWriter{}, m)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	response, err = http.Get(address)
 | 
					
						
							|  |  |  | 	if err != nil {
 | 
					
						
							|  |  |  | 		t.Fatalf("Unable to query %s: %v", address, err)
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	if response.StatusCode != 200 {
 | 
					
						
							|  |  |  | 		t.Errorf("Invalid status code: expecting %d, got %d", 200, response.StatusCode)
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	response.Body.Close()
 | 
					
						
							|  |  |  | }
 |