| 
									
										
										
										
											2016-09-07 11:10:16 +01:00
										 |  |  | package edns
 | 
					
						
							| 
									
										
										
										
											2016-04-09 11:13:04 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | import (
 | 
					
						
							|  |  |  | 	"testing"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/miekg/dns"
 | 
					
						
							|  |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-07 11:10:16 +01:00
										 |  |  | func TestVersion(t *testing.T) {
 | 
					
						
							| 
									
										
										
										
											2016-04-09 11:13:04 +01:00
										 |  |  | 	m := ednsMsg()
 | 
					
						
							|  |  |  | 	m.Extra[0].(*dns.OPT).SetVersion(2)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-07 11:10:16 +01:00
										 |  |  | 	_, err := Version(m)
 | 
					
						
							| 
									
										
										
										
											2016-04-09 11:13:04 +01:00
										 |  |  | 	if err == nil {
 | 
					
						
							|  |  |  | 		t.Errorf("expected wrong version, but got OK")
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-07 11:10:16 +01:00
										 |  |  | func TestVersionNoEdns(t *testing.T) {
 | 
					
						
							| 
									
										
										
										
											2016-04-09 11:13:04 +01:00
										 |  |  | 	m := ednsMsg()
 | 
					
						
							|  |  |  | 	m.Extra = nil
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-07 11:10:16 +01:00
										 |  |  | 	_, err := Version(m)
 | 
					
						
							| 
									
										
										
										
											2016-04-09 11:13:04 +01:00
										 |  |  | 	if err != nil {
 | 
					
						
							|  |  |  | 		t.Errorf("expected no error, but got one: %s", err)
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func ednsMsg() *dns.Msg {
 | 
					
						
							|  |  |  | 	m := new(dns.Msg)
 | 
					
						
							|  |  |  | 	m.SetQuestion("example.com.", dns.TypeA)
 | 
					
						
							|  |  |  | 	o := new(dns.OPT)
 | 
					
						
							|  |  |  | 	o.Hdr.Name = "."
 | 
					
						
							|  |  |  | 	o.Hdr.Rrtype = dns.TypeOPT
 | 
					
						
							|  |  |  | 	m.Extra = append(m.Extra, o)
 | 
					
						
							|  |  |  | 	return m
 | 
					
						
							|  |  |  | }
 |