mirror of
				https://github.com/kubernetes-sigs/external-dns.git
				synced 2025-11-04 04:31:00 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			124 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			124 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
/*
 | 
						|
Copyright 2021 The Kubernetes Authors.
 | 
						|
 | 
						|
Licensed under the Apache License, Version 2.0 (the "License");
 | 
						|
you may not use this file except in compliance with the License.
 | 
						|
You may obtain a copy of the License at
 | 
						|
 | 
						|
    http://www.apache.org/licenses/LICENSE-2.0
 | 
						|
 | 
						|
Unless required by applicable law or agreed to in writing, software
 | 
						|
distributed under the License is distributed on an "AS IS" BASIS,
 | 
						|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | 
						|
See the License for the specific language governing permissions and
 | 
						|
limitations under the License.
 | 
						|
*/
 | 
						|
 | 
						|
package source
 | 
						|
 | 
						|
import (
 | 
						|
	"context"
 | 
						|
	"testing"
 | 
						|
 | 
						|
	"github.com/stretchr/testify/require"
 | 
						|
	corev1 "k8s.io/api/core/v1"
 | 
						|
	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
 | 
						|
	kubefake "k8s.io/client-go/kubernetes/fake"
 | 
						|
	"sigs.k8s.io/external-dns/endpoint"
 | 
						|
	"sigs.k8s.io/gateway-api/apis/v1alpha2"
 | 
						|
	"sigs.k8s.io/gateway-api/apis/v1beta1"
 | 
						|
	gatewayfake "sigs.k8s.io/gateway-api/pkg/client/clientset/versioned/fake"
 | 
						|
)
 | 
						|
 | 
						|
func TestGatewayTCPRouteSourceEndpoints(t *testing.T) {
 | 
						|
	t.Parallel()
 | 
						|
 | 
						|
	gwClient := gatewayfake.NewSimpleClientset()
 | 
						|
	kubeClient := kubefake.NewSimpleClientset()
 | 
						|
	clients := new(MockClientGenerator)
 | 
						|
	clients.On("GatewayClient").Return(gwClient, nil)
 | 
						|
	clients.On("KubeClient").Return(kubeClient, nil)
 | 
						|
 | 
						|
	ctx := context.Background()
 | 
						|
	ns := &corev1.Namespace{
 | 
						|
		ObjectMeta: metav1.ObjectMeta{
 | 
						|
			Name: "default",
 | 
						|
		},
 | 
						|
	}
 | 
						|
	_, err := kubeClient.CoreV1().Namespaces().Create(ctx, ns, metav1.CreateOptions{})
 | 
						|
	require.NoError(t, err, "failed to create Namespace")
 | 
						|
 | 
						|
	ips := []string{"10.64.0.1", "10.64.0.2"}
 | 
						|
	gw := &v1beta1.Gateway{
 | 
						|
		ObjectMeta: metav1.ObjectMeta{
 | 
						|
			Name:      "internal",
 | 
						|
			Namespace: "default",
 | 
						|
		},
 | 
						|
		Spec: v1beta1.GatewaySpec{
 | 
						|
			Listeners: []v1beta1.Listener{{
 | 
						|
				Protocol: v1beta1.TCPProtocolType,
 | 
						|
			}},
 | 
						|
		},
 | 
						|
		Status: gatewayStatus(ips...),
 | 
						|
	}
 | 
						|
	_, err = gwClient.GatewayV1beta1().Gateways(gw.Namespace).Create(ctx, gw, metav1.CreateOptions{})
 | 
						|
	require.NoError(t, err, "failed to create Gateway")
 | 
						|
 | 
						|
	rt := &v1alpha2.TCPRoute{
 | 
						|
		ObjectMeta: metav1.ObjectMeta{
 | 
						|
			Name:      "api",
 | 
						|
			Namespace: "default",
 | 
						|
			Annotations: map[string]string{
 | 
						|
				hostnameAnnotationKey: "api-annotation.foobar.internal",
 | 
						|
			},
 | 
						|
		},
 | 
						|
		Spec: v1alpha2.TCPRouteSpec{},
 | 
						|
		Status: v1alpha2.TCPRouteStatus{
 | 
						|
			RouteStatus: v1a2RouteStatus(v1a2ParentRef("default", "internal")),
 | 
						|
		},
 | 
						|
	}
 | 
						|
	_, err = gwClient.GatewayV1alpha2().TCPRoutes(rt.Namespace).Create(ctx, rt, metav1.CreateOptions{})
 | 
						|
	require.NoError(t, err, "failed to create TCPRoute")
 | 
						|
 | 
						|
	src, err := NewGatewayTCPRouteSource(clients, &Config{
 | 
						|
		FQDNTemplate:             "{{.Name}}-template.foobar.internal",
 | 
						|
		CombineFQDNAndAnnotation: true,
 | 
						|
	})
 | 
						|
	require.NoError(t, err, "failed to create Gateway TCPRoute Source")
 | 
						|
 | 
						|
	endpoints, err := src.Endpoints(ctx)
 | 
						|
	require.NoError(t, err, "failed to get Endpoints")
 | 
						|
	validateEndpoints(t, endpoints, []*endpoint.Endpoint{
 | 
						|
		newTestEndpoint("api-annotation.foobar.internal", "A", ips...),
 | 
						|
		newTestEndpoint("api-template.foobar.internal", "A", ips...),
 | 
						|
	})
 | 
						|
}
 | 
						|
 | 
						|
func v1a2ParentRef(namespace, name string) v1alpha2.ParentReference {
 | 
						|
	group := v1alpha2.Group("gateway.networking.k8s.io")
 | 
						|
	kind := v1alpha2.Kind("Gateway")
 | 
						|
	ref := v1alpha2.ParentReference{
 | 
						|
		Group:     &group,
 | 
						|
		Kind:      &kind,
 | 
						|
		Name:      v1alpha2.ObjectName(name),
 | 
						|
		Namespace: (*v1alpha2.Namespace)(&namespace),
 | 
						|
	}
 | 
						|
	return ref
 | 
						|
}
 | 
						|
 | 
						|
func v1a2RouteStatus(refs ...v1alpha2.ParentReference) v1alpha2.RouteStatus {
 | 
						|
	var v v1alpha2.RouteStatus
 | 
						|
	for _, ref := range refs {
 | 
						|
		v.Parents = append(v.Parents, v1alpha2.RouteParentStatus{
 | 
						|
			ParentRef: ref,
 | 
						|
			Conditions: []metav1.Condition{
 | 
						|
				{
 | 
						|
					Type:   string(v1alpha2.RouteConditionAccepted),
 | 
						|
					Status: metav1.ConditionTrue,
 | 
						|
				},
 | 
						|
			},
 | 
						|
		})
 | 
						|
	}
 | 
						|
	return v
 | 
						|
}
 |