| 
									
										
										
										
											2017-05-22 16:05:48 -04:00
										 |  |  | package kubernetes
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-10 23:13:08 +01:00
										 |  |  | import (
 | 
					
						
							|  |  |  | 	"testing"
 | 
					
						
							| 
									
										
										
										
											2017-05-22 16:05:48 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-27 07:45:32 -07:00
										 |  |  | 	"github.com/coredns/coredns/plugin/pkg/watch"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-03 19:11:28 +08:00
										 |  |  | 	api "k8s.io/api/core/v1"
 | 
					
						
							| 
									
										
										
										
											2017-09-29 15:58:50 -04:00
										 |  |  | 	meta "k8s.io/apimachinery/pkg/apis/meta/v1"
 | 
					
						
							| 
									
										
										
										
											2017-08-10 23:13:08 +01:00
										 |  |  | )
 | 
					
						
							| 
									
										
										
										
											2017-05-22 16:05:48 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | type APIConnTest struct{}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-20 22:53:17 +01:00
										 |  |  | func (APIConnTest) HasSynced() bool                       { return true }
 | 
					
						
							| 
									
										
										
										
											2017-10-17 21:30:54 -04:00
										 |  |  | func (APIConnTest) Run()                                  { return }
 | 
					
						
							|  |  |  | func (APIConnTest) Stop() error                           { return nil }
 | 
					
						
							|  |  |  | func (APIConnTest) PodIndex(string) []*api.Pod            { return nil }
 | 
					
						
							|  |  |  | func (APIConnTest) SvcIndex(string) []*api.Service        { return nil }
 | 
					
						
							|  |  |  | func (APIConnTest) SvcIndexReverse(string) []*api.Service { return nil }
 | 
					
						
							|  |  |  | func (APIConnTest) EpIndex(string) []*api.Endpoints       { return nil }
 | 
					
						
							|  |  |  | func (APIConnTest) EndpointsList() []*api.Endpoints       { return nil }
 | 
					
						
							| 
									
										
										
										
											2018-02-08 10:11:04 -06:00
										 |  |  | func (APIConnTest) Modified() int64                       { return 0 }
 | 
					
						
							| 
									
										
										
										
											2018-06-27 07:45:32 -07:00
										 |  |  | func (APIConnTest) SetWatchChan(watch.Chan)               {}
 | 
					
						
							|  |  |  | func (APIConnTest) Watch(string) error                    { return nil }
 | 
					
						
							|  |  |  | func (APIConnTest) StopWatching(string)                   {}
 | 
					
						
							| 
									
										
										
										
											2017-05-22 16:05:48 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | func (APIConnTest) ServiceList() []*api.Service {
 | 
					
						
							| 
									
										
										
										
											2017-09-29 15:58:50 -04:00
										 |  |  | 	svcs := []*api.Service{
 | 
					
						
							|  |  |  | 		{
 | 
					
						
							|  |  |  | 			ObjectMeta: meta.ObjectMeta{
 | 
					
						
							|  |  |  | 				Name:      "dns-service",
 | 
					
						
							|  |  |  | 				Namespace: "kube-system",
 | 
					
						
							|  |  |  | 			},
 | 
					
						
							|  |  |  | 			Spec: api.ServiceSpec{
 | 
					
						
							|  |  |  | 				ClusterIP: "10.0.0.111",
 | 
					
						
							|  |  |  | 			},
 | 
					
						
							| 
									
										
										
										
											2017-05-22 16:05:48 -04:00
										 |  |  | 		},
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2017-09-29 15:58:50 -04:00
										 |  |  | 	return svcs
 | 
					
						
							| 
									
										
										
										
											2017-05-22 16:05:48 -04:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-17 21:30:54 -04:00
										 |  |  | func (APIConnTest) EpIndexReverse(string) []*api.Endpoints {
 | 
					
						
							| 
									
										
										
										
											2017-09-29 15:58:50 -04:00
										 |  |  | 	eps := []*api.Endpoints{
 | 
					
						
							|  |  |  | 		{
 | 
					
						
							|  |  |  | 			Subsets: []api.EndpointSubset{
 | 
					
						
							|  |  |  | 				{
 | 
					
						
							|  |  |  | 					Addresses: []api.EndpointAddress{
 | 
					
						
							|  |  |  | 						{
 | 
					
						
							|  |  |  | 							IP: "127.0.0.1",
 | 
					
						
							| 
									
										
										
										
											2017-05-22 16:05:48 -04:00
										 |  |  | 						},
 | 
					
						
							|  |  |  | 					},
 | 
					
						
							|  |  |  | 				},
 | 
					
						
							| 
									
										
										
										
											2017-09-29 15:58:50 -04:00
										 |  |  | 			},
 | 
					
						
							|  |  |  | 			ObjectMeta: meta.ObjectMeta{
 | 
					
						
							|  |  |  | 				Name:      "dns-service",
 | 
					
						
							|  |  |  | 				Namespace: "kube-system",
 | 
					
						
							| 
									
										
										
										
											2017-05-22 16:05:48 -04:00
										 |  |  | 			},
 | 
					
						
							|  |  |  | 		},
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2017-09-29 15:58:50 -04:00
										 |  |  | 	return eps
 | 
					
						
							| 
									
										
										
										
											2017-05-22 16:05:48 -04:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-29 15:58:50 -04:00
										 |  |  | func (APIConnTest) GetNodeByName(name string) (*api.Node, error) { return &api.Node{}, nil }
 | 
					
						
							| 
									
										
										
										
											2017-11-13 21:51:51 +00:00
										 |  |  | func (APIConnTest) GetNamespaceByName(name string) (*api.Namespace, error) {
 | 
					
						
							|  |  |  | 	return &api.Namespace{}, nil
 | 
					
						
							|  |  |  | }
 | 
					
						
							| 
									
										
										
										
											2017-06-14 09:38:00 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-10 23:13:08 +01:00
										 |  |  | func TestNsAddr(t *testing.T) {
 | 
					
						
							| 
									
										
										
										
											2017-05-22 16:05:48 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-18 14:45:20 +01:00
										 |  |  | 	k := New([]string{"inter.webs.test."})
 | 
					
						
							| 
									
										
										
										
											2017-05-22 16:05:48 -04:00
										 |  |  | 	k.APIConn = &APIConnTest{}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-10 23:13:08 +01:00
										 |  |  | 	cdr := k.nsAddr()
 | 
					
						
							| 
									
										
										
										
											2017-05-22 16:05:48 -04:00
										 |  |  | 	expected := "10.0.0.111"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if cdr.A.String() != expected {
 | 
					
						
							| 
									
										
										
										
											2017-08-10 23:13:08 +01:00
										 |  |  | 		t.Errorf("Expected A to be %q, got %q", expected, cdr.A.String())
 | 
					
						
							| 
									
										
										
										
											2017-05-22 16:05:48 -04:00
										 |  |  | 	}
 | 
					
						
							|  |  |  | 	expected = "dns-service.kube-system.svc."
 | 
					
						
							|  |  |  | 	if cdr.Hdr.Name != expected {
 | 
					
						
							| 
									
										
										
										
											2017-08-10 23:13:08 +01:00
										 |  |  | 		t.Errorf("Expected Hdr.Name to be %q, got %q", expected, cdr.Hdr.Name)
 | 
					
						
							| 
									
										
										
										
											2017-05-22 16:05:48 -04:00
										 |  |  | 	}
 | 
					
						
							|  |  |  | }
 |