Skip to content

Commit

Permalink
Add a conformance test that checks adding and removing listeners.
Browse files Browse the repository at this point in the history
  • Loading branch information
mmamczur committed Mar 16, 2023
1 parent 26080e9 commit a69d9e4
Show file tree
Hide file tree
Showing 2 changed files with 257 additions and 0 deletions.
178 changes: 178 additions & 0 deletions conformance/tests/gateway-modify-listeners.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,178 @@
/*
Copyright 2023 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 tests

import (
"context"
"testing"
"time"

"github.com/stretchr/testify/require"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/types"
"sigs.k8s.io/controller-runtime/pkg/client"
"sigs.k8s.io/gateway-api/apis/v1beta1"
"sigs.k8s.io/gateway-api/conformance/utils/kubernetes"
"sigs.k8s.io/gateway-api/conformance/utils/suite"
)

func init() {
ConformanceTests = append(ConformanceTests, GatewayModifyListeners)
}

var GatewayModifyListeners = suite.ConformanceTest{
ShortName: "GatewayModifyListeners",
Description: "A Gateway in the gateway-conformance-infra namespace should handle adding and removing listeners.",
Manifests: []string{"tests/gateway-modify-listeners.yaml"},
Test: func(t *testing.T, s *suite.ConformanceTestSuite) {

t.Run("should add a listener", func(t *testing.T) {
gwNN := types.NamespacedName{Name: "gateway-add-listener", Namespace: "gateway-conformance-infra"}
ctx, cancel := context.WithTimeout(context.Background(), time.Minute)
defer cancel()

namespaces := []string{"gateway-conformance-infra"}
kubernetes.NamespacesMustBeReady(t, s.Client, s.TimeoutConfig, namespaces)
original := &v1beta1.Gateway{}
err := s.Client.Get(ctx, gwNN, original)
require.NoErrorf(t, err, "error getting Gateway: %v", err)

// Sanity check
kubernetes.GatewayMustHaveLatestConditions(t, original)

all := v1beta1.NamespacesFromAll

mutate := original.DeepCopy()

// mutate the Gateway Spec
hostname := v1beta1.Hostname("data.test.com")
mutate.Spec.Listeners = append(mutate.Spec.Listeners, v1beta1.Listener{
Name: "http",
Port: 8080,
Protocol: v1beta1.HTTPProtocolType,
Hostname: &hostname,
AllowedRoutes: &v1beta1.AllowedRoutes{
Namespaces: &v1beta1.RouteNamespaces{From: &all},
},
})

err = s.Client.Patch(ctx, mutate, client.MergeFrom(original))
require.NoErrorf(t, err, "error patching the Gateway: %v", err)

// Ensure the generation and observedGeneration sync up
kubernetes.NamespacesMustBeReady(t, s.Client, s.TimeoutConfig, namespaces)
//time.Sleep(3 * time.Minute)
updated := &v1beta1.Gateway{}
err = s.Client.Get(ctx, gwNN, updated)
require.NoErrorf(t, err, "error getting Gateway: %v", err)

listeners := []v1beta1.ListenerStatus{
{
Name: v1beta1.SectionName("https"),
SupportedKinds: []v1beta1.RouteGroupKind{{
Group: (*v1beta1.Group)(&v1beta1.GroupVersion.Group),
Kind: v1beta1.Kind("HTTPRoute"),
}},
Conditions: []metav1.Condition{{
Type: string(v1beta1.ListenerConditionAccepted),
Status: metav1.ConditionTrue,
Reason: "", //any reason
}},
AttachedRoutes: 1,
},
{
Name: v1beta1.SectionName("http"),
SupportedKinds: []v1beta1.RouteGroupKind{{
Group: (*v1beta1.Group)(&v1beta1.GroupVersion.Group),
Kind: v1beta1.Kind("HTTPRoute"),
}},
Conditions: []metav1.Condition{{
Type: string(v1beta1.ListenerConditionAccepted),
Status: metav1.ConditionTrue,
Reason: "", //any reason
}},
AttachedRoutes: 1,
},
}

kubernetes.GatewayStatusMustHaveListeners(t, s.Client, s.TimeoutConfig, gwNN, listeners)

// Sanity check
kubernetes.GatewayMustHaveLatestConditions(t, updated)

require.NotEqual(t, original.Generation, updated.Generation, "generation should change after an update")
})

t.Run("should remove a listener", func(t *testing.T) {
gwNN := types.NamespacedName{Name: "gateway-remove-listener", Namespace: "gateway-conformance-infra"}
ctx, cancel := context.WithTimeout(context.Background(), time.Minute)
defer cancel()

namespaces := []string{"gateway-conformance-infra"}
kubernetes.NamespacesMustBeReady(t, s.Client, s.TimeoutConfig, namespaces)
original := &v1beta1.Gateway{}
err := s.Client.Get(ctx, gwNN, original)
require.NoErrorf(t, err, "error getting Gateway: %v", err)

// Sanity check
kubernetes.GatewayMustHaveLatestConditions(t, original)

mutate := original.DeepCopy()
require.Equalf(t, 2, len(mutate.Spec.Listeners), "the gateway must have 2 listeners")
// mutate the Gateway Spec, remove the https listener
var newListeners []v1beta1.Listener
for _, listener := range mutate.Spec.Listeners {
if listener.Name == "http" {
newListeners = append(newListeners, listener)
}
}
mutate.Spec.Listeners = newListeners

err = s.Client.Patch(ctx, mutate, client.MergeFrom(original))
require.NoErrorf(t, err, "error patching the Gateway: %v", err)

// Ensure the generation and observedGeneration sync up
kubernetes.NamespacesMustBeReady(t, s.Client, s.TimeoutConfig, namespaces)
updated := &v1beta1.Gateway{}
err = s.Client.Get(ctx, gwNN, updated)
require.NoErrorf(t, err, "error getting Gateway: %v", err)

listeners := []v1beta1.ListenerStatus{
{
Name: v1beta1.SectionName("http"),
SupportedKinds: []v1beta1.RouteGroupKind{{
Group: (*v1beta1.Group)(&v1beta1.GroupVersion.Group),
Kind: v1beta1.Kind("HTTPRoute"),
}},
Conditions: []metav1.Condition{{
Type: string(v1beta1.ListenerConditionAccepted),
Status: metav1.ConditionTrue,
Reason: "", //any reason
}},
AttachedRoutes: 1,
},
}

kubernetes.GatewayStatusMustHaveListeners(t, s.Client, s.TimeoutConfig, gwNN, listeners)

// Sanity check
kubernetes.GatewayMustHaveLatestConditions(t, updated)

require.NotEqual(t, original.Generation, updated.Generation, "generation should change after an update")
})
},
}
79 changes: 79 additions & 0 deletions conformance/tests/gateway-modify-listeners.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
apiVersion: gateway.networking.k8s.io/v1beta1
kind: Gateway
metadata:
name: gateway-add-listener
namespace: gateway-conformance-infra
spec:
gatewayClassName: "{GATEWAY_CLASS_NAME}"
listeners:
- name: https
port: 443
protocol: HTTPS
hostname: "secure.test.com"
allowedRoutes:
namespaces:
from: All
tls:
certificateRefs:
- group: ""
kind: Secret
name: tls-validity-checks-certificate
namespace: gateway-conformance-infra
---
apiVersion: gateway.networking.k8s.io/v1beta1
kind: HTTPRoute
metadata:
name: http-route-1
namespace: gateway-conformance-infra
spec:
parentRefs:
- kind: Gateway
name: gateway-add-listener
namespace: gateway-conformance-infra
rules:
- backendRefs:
- name: foo-svc
port: 8080
---
apiVersion: gateway.networking.k8s.io/v1beta1
kind: Gateway
metadata:
name: gateway-remove-listener
namespace: gateway-conformance-infra
spec:
gatewayClassName: "{GATEWAY_CLASS_NAME}"
listeners:
- name: https
port: 443
protocol: HTTPS
hostname: "secure.test.com"
allowedRoutes:
namespaces:
from: All
tls:
certificateRefs:
- group: ""
kind: Secret
name: tls-validity-checks-certificate
namespace: gateway-conformance-infra
- name: http
port: 8080
protocol: HTTP
allowedRoutes:
namespaces:
from: All
---
apiVersion: gateway.networking.k8s.io/v1beta1
kind: HTTPRoute
metadata:
name: http-route-2
namespace: gateway-conformance-infra
spec:
parentRefs:
- kind: Gateway
name: gateway-remove-listener
namespace: gateway-conformance-infra
rules:
- backendRefs:
- name: foo-svc
port: 8080

0 comments on commit a69d9e4

Please sign in to comment.