ingress-nginx-helm/test/e2e/annotations/alias.go

100 lines
2.8 KiB
Go
Raw Normal View History

2017-11-10 02:00:38 +00:00
/*
Copyright 2017 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 annotations
import (
"fmt"
"net/http"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
"github.com/parnurzeal/gorequest"
"k8s.io/ingress-nginx/test/e2e/framework"
)
var _ = framework.IngressNginxDescribe("Annotations - Alias", func() {
f := framework.NewDefaultFramework("alias")
BeforeEach(func() {
2018-10-29 21:39:04 +00:00
f.NewEchoDeployment()
2017-11-10 02:00:38 +00:00
})
AfterEach(func() {
})
It("should return status code 200 for host 'foo' and 404 for 'bar'", func() {
host := "foo"
annotations := map[string]string{}
2017-11-10 02:00:38 +00:00
ing := framework.NewSingleIngress(host, "/", host, f.IngressController.Namespace, "http-svc", 80, &annotations)
2018-10-29 21:39:04 +00:00
f.EnsureIngress(ing)
2017-11-10 02:00:38 +00:00
2018-10-29 21:39:04 +00:00
f.WaitForNginxServer(host,
2017-11-12 16:52:55 +00:00
func(server string) bool {
2017-11-22 13:54:44 +00:00
return Expect(server).Should(ContainSubstring("server_name foo")) &&
Expect(server).ShouldNot(ContainSubstring("return 503"))
2017-11-12 16:52:55 +00:00
})
2017-11-10 02:00:38 +00:00
resp, body, errs := gorequest.New().
Get(f.IngressController.HTTPURL).
2017-11-10 02:00:38 +00:00
Set("Host", host).
End()
2018-11-18 13:53:05 +00:00
Expect(errs).Should(BeEmpty())
2017-11-10 02:00:38 +00:00
Expect(resp.StatusCode).Should(Equal(http.StatusOK))
Expect(body).Should(ContainSubstring(fmt.Sprintf("host=%v", host)))
resp, body, errs = gorequest.New().
Get(f.IngressController.HTTPURL).
2017-11-10 02:00:38 +00:00
Set("Host", "bar").
End()
2018-11-18 13:53:05 +00:00
Expect(errs).Should(BeEmpty())
2017-11-10 02:00:38 +00:00
Expect(resp.StatusCode).Should(Equal(http.StatusNotFound))
Expect(body).Should(ContainSubstring("404 Not Found"))
2017-11-10 02:00:38 +00:00
})
It("should return status code 200 for host 'foo' and 'bar'", func() {
2017-11-12 16:52:55 +00:00
host := "foo"
annotations := map[string]string{
"nginx.ingress.kubernetes.io/server-alias": "bar",
}
ing := framework.NewSingleIngress(host, "/", host, f.IngressController.Namespace, "http-svc", 80, &annotations)
2018-10-29 21:39:04 +00:00
f.EnsureIngress(ing)
2017-11-10 02:00:38 +00:00
2018-10-29 21:39:04 +00:00
f.WaitForNginxServer(host,
2017-11-12 16:52:55 +00:00
func(server string) bool {
2017-11-22 13:54:44 +00:00
return Expect(server).Should(ContainSubstring("server_name foo")) &&
Expect(server).ShouldNot(ContainSubstring("return 503"))
2017-11-12 16:52:55 +00:00
})
2017-11-10 02:00:38 +00:00
hosts := []string{"foo", "bar"}
for _, host := range hosts {
resp, body, errs := gorequest.New().
Get(f.IngressController.HTTPURL).
2017-11-10 02:00:38 +00:00
Set("Host", host).
End()
2018-11-18 13:53:05 +00:00
Expect(errs).Should(BeEmpty())
2017-11-10 02:00:38 +00:00
Expect(resp.StatusCode).Should(Equal(http.StatusOK))
Expect(body).Should(ContainSubstring(fmt.Sprintf("host=%v", host)))
}
})
})