mirror of
https://github.com/alibaba/higress.git
synced 2026-05-22 19:57:29 +08:00
138 lines
3.7 KiB
Go
138 lines
3.7 KiB
Go
// Copyright Istio 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 istio
|
|
|
|
import (
|
|
"testing"
|
|
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
"k8s.io/apimachinery/pkg/runtime/schema"
|
|
k8s "sigs.k8s.io/gateway-api/apis/v1"
|
|
k8sbeta "sigs.k8s.io/gateway-api/apis/v1beta1"
|
|
|
|
higressconstant "github.com/alibaba/higress/v2/pkg/config/constants"
|
|
networking "istio.io/api/networking/v1alpha3"
|
|
"istio.io/istio/pilot/pkg/networking/core"
|
|
"istio.io/istio/pilot/pkg/serviceregistry/kube/controller"
|
|
"istio.io/istio/pkg/config"
|
|
"istio.io/istio/pkg/config/constants"
|
|
"istio.io/istio/pkg/config/schema/gvk"
|
|
"istio.io/istio/pkg/kube"
|
|
"istio.io/istio/pkg/kube/krt"
|
|
"istio.io/istio/pkg/test"
|
|
"istio.io/istio/pkg/test/util/assert"
|
|
)
|
|
|
|
var (
|
|
gatewayClassSpec = &k8s.GatewayClassSpec{
|
|
ControllerName: higressconstant.ManagedGatewayController,
|
|
}
|
|
gatewaySpec = &k8s.GatewaySpec{
|
|
GatewayClassName: "higress",
|
|
Listeners: []k8s.Listener{
|
|
{
|
|
Name: "default",
|
|
Port: 9009,
|
|
Protocol: "HTTP",
|
|
AllowedRoutes: &k8s.AllowedRoutes{Namespaces: &k8s.RouteNamespaces{From: func() *k8s.FromNamespaces { x := k8s.NamespacesFromAll; return &x }()}},
|
|
},
|
|
},
|
|
}
|
|
httpRouteSpec = &k8s.HTTPRouteSpec{
|
|
CommonRouteSpec: k8s.CommonRouteSpec{ParentRefs: []k8s.ParentReference{{
|
|
Name: "gwspec",
|
|
}}},
|
|
Hostnames: []k8s.Hostname{"test.cluster.local"},
|
|
}
|
|
|
|
expectedgw = &networking.Gateway{
|
|
Servers: []*networking.Server{
|
|
{
|
|
Port: &networking.Port{
|
|
Number: 9009,
|
|
Name: "default",
|
|
Protocol: "HTTP",
|
|
},
|
|
Hosts: []string{"*/*"},
|
|
},
|
|
},
|
|
}
|
|
)
|
|
|
|
var AlwaysReady = func(class schema.GroupVersionResource, stop <-chan struct{}) bool {
|
|
return true
|
|
}
|
|
|
|
func setupController(t *testing.T, objs ...runtime.Object) *Controller {
|
|
kc := kube.NewFakeClient(objs...)
|
|
setupClientCRDs(t, kc)
|
|
stop := test.NewStop(t)
|
|
controller := NewController(
|
|
kc,
|
|
AlwaysReady,
|
|
controller.Options{KrtDebugger: krt.GlobalDebugHandler},
|
|
nil)
|
|
kc.RunAndWait(stop)
|
|
go controller.Run(stop)
|
|
cg := core.NewConfigGenTest(t, core.TestOptions{})
|
|
controller.Reconcile(cg.PushContext())
|
|
kube.WaitForCacheSync("test", stop, controller.HasSynced)
|
|
|
|
return controller
|
|
}
|
|
|
|
func TestListInvalidGroupVersionKind(t *testing.T) {
|
|
controller := setupController(t)
|
|
|
|
typ := config.GroupVersionKind{Kind: "wrong-kind"}
|
|
c := controller.List(typ, "ns1")
|
|
assert.Equal(t, len(c), 0)
|
|
}
|
|
|
|
func TestListGatewayResourceType(t *testing.T) {
|
|
controller := setupController(t,
|
|
&k8sbeta.GatewayClass{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: "higress",
|
|
},
|
|
Spec: *gatewayClassSpec,
|
|
},
|
|
&k8sbeta.Gateway{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: "gwspec",
|
|
Namespace: "ns1",
|
|
},
|
|
Spec: *gatewaySpec,
|
|
},
|
|
&k8sbeta.HTTPRoute{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: "http-route",
|
|
Namespace: "ns1",
|
|
},
|
|
Spec: *httpRouteSpec,
|
|
})
|
|
|
|
dumpOnFailure(t, krt.GlobalDebugHandler)
|
|
cfg := controller.List(gvk.Gateway, "ns1")
|
|
assert.Equal(t, len(cfg), 1)
|
|
for _, c := range cfg {
|
|
assert.Equal(t, c.GroupVersionKind, gvk.Gateway)
|
|
assert.Equal(t, c.Name, "gwspec"+"-"+constants.KubernetesGatewayName+"-default")
|
|
assert.Equal(t, c.Namespace, "ns1")
|
|
assert.Equal(t, c.Spec, any(expectedgw))
|
|
}
|
|
}
|