2019-04-01 19:55:36 +00:00
|
|
|
/*
|
|
|
|
Copyright 2018 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 loadbalance
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
|
|
. "github.com/onsi/gomega"
|
|
|
|
|
|
|
|
"k8s.io/ingress-nginx/test/e2e/framework"
|
|
|
|
)
|
|
|
|
|
2020-02-16 18:27:58 +00:00
|
|
|
var _ = framework.DescribeSetting("[Load Balancer] load-balance", func() {
|
2019-04-01 19:55:36 +00:00
|
|
|
f := framework.NewDefaultFramework("lb-configmap")
|
|
|
|
|
|
|
|
BeforeEach(func() {
|
|
|
|
f.NewEchoDeploymentWithReplicas(1)
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should apply the configmap load-balance setting", func() {
|
|
|
|
host := "load-balance.com"
|
|
|
|
|
|
|
|
f.UpdateNginxConfigMapData("load-balance", "ewma")
|
|
|
|
|
2019-09-01 18:16:52 +00:00
|
|
|
f.EnsureIngress(framework.NewSingleIngress(host, "/", host, f.Namespace, framework.EchoService, 80, nil))
|
2019-04-01 19:55:36 +00:00
|
|
|
f.WaitForNginxServer(host,
|
|
|
|
func(server string) bool {
|
|
|
|
return strings.Contains(server, "server_name load-balance.com")
|
|
|
|
})
|
|
|
|
|
2019-09-01 18:16:52 +00:00
|
|
|
algorithm, err := f.GetLbAlgorithm(framework.EchoService, 80)
|
2019-04-01 19:55:36 +00:00
|
|
|
Expect(err).Should(BeNil())
|
2019-07-03 03:50:30 +00:00
|
|
|
Expect(algorithm).Should(Equal("ewma"))
|
2019-04-01 19:55:36 +00:00
|
|
|
})
|
|
|
|
})
|