2016-05-25 21:04:34 +00:00
|
|
|
/*
|
2016-09-08 11:02:39 +00:00
|
|
|
Copyright 2015 The Kubernetes Authors.
|
2016-05-25 21:04:34 +00:00
|
|
|
|
|
|
|
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 rewrite
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2017-07-16 19:19:59 +00:00
|
|
|
api "k8s.io/api/core/v1"
|
|
|
|
extensions "k8s.io/api/extensions/v1beta1"
|
2017-04-01 14:39:42 +00:00
|
|
|
meta_v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
|
|
"k8s.io/apimachinery/pkg/util/intstr"
|
2016-06-05 13:36:00 +00:00
|
|
|
|
2017-10-06 20:33:32 +00:00
|
|
|
"k8s.io/ingress-nginx/pkg/ingress/defaults"
|
2016-05-25 21:04:34 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
defRoute = "/demo"
|
|
|
|
)
|
|
|
|
|
|
|
|
func buildIngress() *extensions.Ingress {
|
|
|
|
defaultBackend := extensions.IngressBackend{
|
|
|
|
ServiceName: "default-backend",
|
|
|
|
ServicePort: intstr.FromInt(80),
|
|
|
|
}
|
|
|
|
|
|
|
|
return &extensions.Ingress{
|
2017-04-01 14:39:42 +00:00
|
|
|
ObjectMeta: meta_v1.ObjectMeta{
|
2016-05-25 21:04:34 +00:00
|
|
|
Name: "foo",
|
|
|
|
Namespace: api.NamespaceDefault,
|
|
|
|
},
|
|
|
|
Spec: extensions.IngressSpec{
|
|
|
|
Backend: &extensions.IngressBackend{
|
|
|
|
ServiceName: "default-backend",
|
|
|
|
ServicePort: intstr.FromInt(80),
|
|
|
|
},
|
|
|
|
Rules: []extensions.IngressRule{
|
|
|
|
{
|
|
|
|
Host: "foo.bar.com",
|
|
|
|
IngressRuleValue: extensions.IngressRuleValue{
|
|
|
|
HTTP: &extensions.HTTPIngressRuleValue{
|
|
|
|
Paths: []extensions.HTTPIngressPath{
|
|
|
|
{
|
|
|
|
Path: "/foo",
|
|
|
|
Backend: defaultBackend,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-29 20:02:06 +00:00
|
|
|
type mockBackend struct {
|
|
|
|
redirect bool
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m mockBackend) GetDefaultBackend() defaults.Backend {
|
|
|
|
return defaults.Backend{SSLRedirect: m.redirect}
|
|
|
|
}
|
|
|
|
|
2016-05-25 21:04:34 +00:00
|
|
|
func TestWithoutAnnotations(t *testing.T) {
|
|
|
|
ing := buildIngress()
|
2016-12-29 20:02:06 +00:00
|
|
|
_, err := NewParser(mockBackend{}).Parse(ing)
|
2017-02-11 21:34:50 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("unexpected error with ingress without annotations: %v", err)
|
2016-05-25 21:04:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestRedirect(t *testing.T) {
|
|
|
|
ing := buildIngress()
|
|
|
|
|
|
|
|
data := map[string]string{}
|
2016-05-27 14:58:13 +00:00
|
|
|
data[rewriteTo] = defRoute
|
2016-05-25 21:04:34 +00:00
|
|
|
ing.SetAnnotations(data)
|
|
|
|
|
2016-12-29 20:02:06 +00:00
|
|
|
i, err := NewParser(mockBackend{}).Parse(ing)
|
2016-05-25 21:04:34 +00:00
|
|
|
if err != nil {
|
2016-12-29 20:02:06 +00:00
|
|
|
t.Errorf("Unexpected error with ingress: %v", err)
|
|
|
|
}
|
2017-11-07 16:36:51 +00:00
|
|
|
redirect, ok := i.(*Config)
|
2016-12-29 20:02:06 +00:00
|
|
|
if !ok {
|
|
|
|
t.Errorf("expected a Redirect type")
|
2016-05-25 21:04:34 +00:00
|
|
|
}
|
2016-05-27 14:58:13 +00:00
|
|
|
if redirect.Target != defRoute {
|
|
|
|
t.Errorf("Expected %v as redirect but returned %s", defRoute, redirect.Target)
|
2016-05-25 21:04:34 +00:00
|
|
|
}
|
|
|
|
}
|
2016-06-05 14:19:55 +00:00
|
|
|
|
|
|
|
func TestSSLRedirect(t *testing.T) {
|
|
|
|
ing := buildIngress()
|
|
|
|
|
|
|
|
data := map[string]string{}
|
2016-12-29 20:02:06 +00:00
|
|
|
data[rewriteTo] = defRoute
|
2016-06-05 14:19:55 +00:00
|
|
|
ing.SetAnnotations(data)
|
|
|
|
|
2016-12-29 20:02:06 +00:00
|
|
|
i, _ := NewParser(mockBackend{true}).Parse(ing)
|
2017-11-07 16:36:51 +00:00
|
|
|
redirect, ok := i.(*Config)
|
2016-12-29 20:02:06 +00:00
|
|
|
if !ok {
|
|
|
|
t.Errorf("expected a Redirect type")
|
|
|
|
}
|
|
|
|
if !redirect.SSLRedirect {
|
|
|
|
t.Errorf("Expected true but returned false")
|
|
|
|
}
|
2016-06-05 14:19:55 +00:00
|
|
|
|
|
|
|
data[sslRedirect] = "false"
|
|
|
|
ing.SetAnnotations(data)
|
|
|
|
|
2016-12-29 20:02:06 +00:00
|
|
|
i, _ = NewParser(mockBackend{false}).Parse(ing)
|
2017-11-07 16:36:51 +00:00
|
|
|
redirect, ok = i.(*Config)
|
2016-12-29 20:02:06 +00:00
|
|
|
if !ok {
|
|
|
|
t.Errorf("expected a Redirect type")
|
|
|
|
}
|
2016-06-05 14:19:55 +00:00
|
|
|
if redirect.SSLRedirect {
|
|
|
|
t.Errorf("Expected false but returned true")
|
|
|
|
}
|
|
|
|
}
|
2017-03-03 01:44:45 +00:00
|
|
|
|
|
|
|
func TestForceSSLRedirect(t *testing.T) {
|
|
|
|
ing := buildIngress()
|
|
|
|
|
|
|
|
data := map[string]string{}
|
|
|
|
data[rewriteTo] = defRoute
|
|
|
|
ing.SetAnnotations(data)
|
|
|
|
|
|
|
|
i, _ := NewParser(mockBackend{true}).Parse(ing)
|
2017-11-07 16:36:51 +00:00
|
|
|
redirect, ok := i.(*Config)
|
2017-03-03 01:44:45 +00:00
|
|
|
if !ok {
|
|
|
|
t.Errorf("expected a Redirect type")
|
|
|
|
}
|
|
|
|
if redirect.ForceSSLRedirect {
|
|
|
|
t.Errorf("Expected false but returned true")
|
|
|
|
}
|
|
|
|
|
|
|
|
data[forceSSLRedirect] = "true"
|
|
|
|
ing.SetAnnotations(data)
|
|
|
|
|
|
|
|
i, _ = NewParser(mockBackend{false}).Parse(ing)
|
2017-11-07 16:36:51 +00:00
|
|
|
redirect, ok = i.(*Config)
|
2017-03-03 01:44:45 +00:00
|
|
|
if !ok {
|
|
|
|
t.Errorf("expected a Redirect type")
|
|
|
|
}
|
|
|
|
if !redirect.ForceSSLRedirect {
|
|
|
|
t.Errorf("Expected true but returned false")
|
|
|
|
}
|
|
|
|
}
|
2017-03-12 22:06:10 +00:00
|
|
|
func TestAppRoot(t *testing.T) {
|
|
|
|
ing := buildIngress()
|
|
|
|
|
|
|
|
data := map[string]string{}
|
|
|
|
data[appRoot] = "/app1"
|
|
|
|
ing.SetAnnotations(data)
|
|
|
|
|
|
|
|
i, _ := NewParser(mockBackend{true}).Parse(ing)
|
2017-11-07 16:36:51 +00:00
|
|
|
redirect, ok := i.(*Config)
|
2017-03-12 22:06:10 +00:00
|
|
|
if !ok {
|
|
|
|
t.Errorf("expected a App Context")
|
|
|
|
}
|
|
|
|
if redirect.AppRoot != "/app1" {
|
|
|
|
t.Errorf("Unexpected value got in AppRoot")
|
|
|
|
}
|
|
|
|
}
|