ingress-nginx-helm/test/e2e/settings/ingress_class.go

157 lines
4.5 KiB
Go
Raw Normal View History

2019-01-07 20:29:18 +00:00
/*
Copyright 2019 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 settings
import (
"net/http"
"strings"
"github.com/onsi/ginkgo"
"github.com/stretchr/testify/assert"
2019-05-08 00:21:13 +00:00
appsv1 "k8s.io/api/apps/v1"
2019-12-13 02:07:50 +00:00
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
2019-01-07 20:29:18 +00:00
"k8s.io/ingress-nginx/internal/ingress/annotations/class"
2019-01-07 20:29:18 +00:00
"k8s.io/ingress-nginx/test/e2e/framework"
)
var _ = framework.IngressNginxDescribe("[Flag] ingress-class", func() {
2019-01-07 20:29:18 +00:00
f := framework.NewDefaultFramework("ingress-class")
ginkgo.BeforeEach(func() {
2019-01-07 20:29:18 +00:00
f.NewEchoDeploymentWithReplicas(1)
})
ginkgo.Context("Without a specific ingress-class", func() {
2019-01-07 20:29:18 +00:00
ginkgo.It("should ignore Ingress with class", func() {
2019-01-07 20:29:18 +00:00
invalidHost := "foo"
annotations := map[string]string{
class.IngressKey: "testclass",
2019-01-07 20:29:18 +00:00
}
ing := framework.NewSingleIngress(invalidHost, "/", invalidHost, f.Namespace, framework.EchoService, 80, annotations)
2019-01-07 20:29:18 +00:00
f.EnsureIngress(ing)
validHost := "bar"
ing = framework.NewSingleIngress(validHost, "/", validHost, f.Namespace, framework.EchoService, 80, nil)
2019-01-07 20:29:18 +00:00
f.EnsureIngress(ing)
f.WaitForNginxConfiguration(func(cfg string) bool {
return !strings.Contains(cfg, "server_name foo") &&
strings.Contains(cfg, "server_name bar")
})
f.HTTPTestClient().
GET("/").
WithHeader("Host", invalidHost).
Expect().
Status(http.StatusNotFound)
f.HTTPTestClient().
GET("/").
WithHeader("Host", validHost).
Expect().
Status(http.StatusOK)
2019-01-07 20:29:18 +00:00
})
})
ginkgo.Context("With a specific ingress-class", func() {
ginkgo.BeforeEach(func() {
err := framework.UpdateDeployment(f.KubeClientSet, f.Namespace, "nginx-ingress-controller", 1,
2019-05-08 00:21:13 +00:00
func(deployment *appsv1.Deployment) error {
2019-01-07 20:29:18 +00:00
args := deployment.Spec.Template.Spec.Containers[0].Args
args = append(args, "--ingress-class=testclass")
deployment.Spec.Template.Spec.Containers[0].Args = args
2019-05-08 00:21:13 +00:00
_, err := f.KubeClientSet.AppsV1().Deployments(f.Namespace).Update(deployment)
2019-01-07 20:29:18 +00:00
return err
})
assert.Nil(ginkgo.GinkgoT(), err, "updating ingress controller deployment flags")
2019-01-07 20:29:18 +00:00
})
ginkgo.It("should ignore Ingress with no class", func() {
2019-01-07 20:29:18 +00:00
invalidHost := "bar"
ing := framework.NewSingleIngress(invalidHost, "/", invalidHost, f.Namespace, framework.EchoService, 80, nil)
2019-01-07 20:29:18 +00:00
f.EnsureIngress(ing)
validHost := "foo"
annotations := map[string]string{
class.IngressKey: "testclass",
2019-01-07 20:29:18 +00:00
}
ing = framework.NewSingleIngress(validHost, "/", validHost, f.Namespace, framework.EchoService, 80, annotations)
2019-01-07 20:29:18 +00:00
f.EnsureIngress(ing)
f.WaitForNginxServer(validHost, func(cfg string) bool {
return strings.Contains(cfg, "server_name foo")
})
f.WaitForNginxConfiguration(func(cfg string) bool {
return !strings.Contains(cfg, "server_name bar")
})
f.HTTPTestClient().
GET("/").
WithHeader("Host", validHost).
Expect().
Status(http.StatusOK)
f.HTTPTestClient().
GET("/").
WithHeader("Host", invalidHost).
Expect().
Status(http.StatusNotFound)
2019-01-07 20:29:18 +00:00
})
ginkgo.It("should delete Ingress when class is removed", func() {
2019-01-07 20:29:18 +00:00
host := "foo"
annotations := map[string]string{
class.IngressKey: "testclass",
2019-01-07 20:29:18 +00:00
}
ing := framework.NewSingleIngress(host, "/", host, f.Namespace, framework.EchoService, 80, annotations)
f.EnsureIngress(ing)
2019-01-07 20:29:18 +00:00
f.WaitForNginxServer(host, func(cfg string) bool {
return strings.Contains(cfg, "server_name foo")
})
f.HTTPTestClient().
GET("/").
WithHeader("Host", host).
Expect().
Status(http.StatusOK)
2019-01-07 20:29:18 +00:00
2019-12-13 02:07:50 +00:00
ing, err := f.KubeClientSet.NetworkingV1beta1().Ingresses(f.Namespace).Get(host, metav1.GetOptions{})
assert.Nil(ginkgo.GinkgoT(), err)
2019-12-13 02:07:50 +00:00
delete(ing.Annotations, class.IngressKey)
_, err = f.KubeClientSet.NetworkingV1beta1().Ingresses(ing.Namespace).Update(ing)
assert.Nil(ginkgo.GinkgoT(), err)
2019-01-07 20:29:18 +00:00
f.WaitForNginxConfiguration(func(cfg string) bool {
return !strings.Contains(cfg, "server_name foo")
})
f.HTTPTestClient().
GET("/").
WithHeader("Host", host).
Expect().
Status(http.StatusNotFound)
2019-01-07 20:29:18 +00:00
})
})
})