From c47aa3cac7ea810062b9a14ae2476f8e51e32931 Mon Sep 17 00:00:00 2001 From: Balazs Szekeres Date: Tue, 18 Feb 2020 14:43:13 +0100 Subject: [PATCH] Added basic limit-rate configmap test. --- test/e2e/settings/limit_rate.go | 62 +++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 test/e2e/settings/limit_rate.go diff --git a/test/e2e/settings/limit_rate.go b/test/e2e/settings/limit_rate.go new file mode 100644 index 000000000..d51408335 --- /dev/null +++ b/test/e2e/settings/limit_rate.go @@ -0,0 +1,62 @@ +/* +Copyright 2020 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 ( + "fmt" + "strings" + + "github.com/onsi/ginkgo" + + "k8s.io/ingress-nginx/test/e2e/framework" +) + +var _ = framework.DescribeSetting("Configmap - limit-rate", func() { + f := framework.NewDefaultFramework("limit-rate") + host := "limit-rate" + + ginkgo.BeforeEach(func() { + f.NewEchoDeployment() + }) + + ginkgo.It("Check limit-rate config", func() { + annotation := make(map[string]string) + annotation["nginx.ingress.kubernetes.io/proxy-buffering"] = "on" + + ing := framework.NewSingleIngress(host, "/", host, f.Namespace, framework.EchoService, 80, annotation) + f.EnsureIngress(ing) + + f.WaitForNginxServer(host, func(server string) bool { + return strings.Contains(server, fmt.Sprintf("server_name %s ;", host)) + }) + + wlKey := "limit-rate" + wlValue := "1" + f.UpdateNginxConfigMapData(wlKey, wlValue) + + f.WaitForNginxConfiguration(func(server string) bool { + return strings.Contains(server, fmt.Sprintf("limit_rate %sk;", wlValue)) + }) + + wlValue = "90" + f.UpdateNginxConfigMapData(wlKey, wlValue) + + f.WaitForNginxConfiguration(func(server string) bool { + return strings.Contains(server, fmt.Sprintf("limit_rate %sk;", wlValue)) + }) + }) +})