| 
									
										
										
										
											2016-04-26 20:45:29 +01:00
										 |  |  | package test | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"io/ioutil" | 
					
						
							|  |  |  | 	"log" | 
					
						
							|  |  |  | 	"testing" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/miekg/coredns/middleware/test" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/miekg/dns" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-19 17:14:17 -07:00
										 |  |  | func benchmarkLookupBalanceRewriteCache(b *testing.B) { | 
					
						
							| 
									
										
										
										
											2016-04-26 20:45:29 +01:00
										 |  |  | 	t := new(testing.T) | 
					
						
							|  |  |  | 	name, rm, err := test.TempFile(t, ".", exampleOrg) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatalf("failed to created zone: %s", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	defer rm() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	corefile := `example.org:0 { | 
					
						
							|  |  |  |     file ` + name + ` | 
					
						
							|  |  |  |     rewrite ANY HINFO | 
					
						
							|  |  |  |     loadbalance | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | ` | 
					
						
							| 
									
										
										
										
											2016-08-19 17:14:17 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	ex, err := CoreDNSServer(corefile) | 
					
						
							| 
									
										
										
										
											2016-04-26 20:45:29 +01:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2016-08-19 17:14:17 -07:00
										 |  |  | 		t.Fatalf("could not get CoreDNS serving instance: %s", err) | 
					
						
							| 
									
										
										
										
											2016-04-26 20:45:29 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-08-19 17:14:17 -07:00
										 |  |  | 	udp, _ := CoreDNSServerPorts(ex, 0) | 
					
						
							| 
									
										
										
										
											2016-04-26 20:45:29 +01:00
										 |  |  | 	defer ex.Stop() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	log.SetOutput(ioutil.Discard) | 
					
						
							|  |  |  | 	c := new(dns.Client) | 
					
						
							|  |  |  | 	m := new(dns.Msg) | 
					
						
							|  |  |  | 	m.SetQuestion("example.org.", dns.TypeA) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	b.ResetTimer() | 
					
						
							|  |  |  | 	for i := 0; i < b.N; i++ { | 
					
						
							|  |  |  | 		c.Exchange(m, udp) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } |