2016-06-01 18:47:37 +00:00
|
|
|
/*
|
2016-09-08 11:02:39 +00:00
|
|
|
Copyright 2016 The Kubernetes Authors.
|
2016-06-01 18:47:37 +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.
|
|
|
|
*/
|
|
|
|
|
2016-11-10 22:56:29 +00:00
|
|
|
package proxy
|
2016-06-01 18:47:37 +00:00
|
|
|
|
|
|
|
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-11-10 22:56:29 +00:00
|
|
|
|
2017-10-06 20:33:32 +00:00
|
|
|
"k8s.io/ingress-nginx/pkg/ingress/defaults"
|
2016-06-01 18:47:37 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
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-06-01 18:47:37 +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 {
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m mockBackend) GetDefaultBackend() defaults.Backend {
|
2017-01-23 03:23:06 +00:00
|
|
|
return defaults.Backend{
|
|
|
|
UpstreamFailTimeout: 1,
|
|
|
|
ProxyConnectTimeout: 10,
|
|
|
|
ProxySendTimeout: 15,
|
|
|
|
ProxyReadTimeout: 20,
|
|
|
|
ProxyBufferSize: "10k",
|
|
|
|
ProxyBodySize: "3k",
|
2017-06-26 19:39:24 +00:00
|
|
|
ProxyNextUpstream: "error",
|
2017-08-31 13:09:23 +00:00
|
|
|
ProxyPassParams: "nocanon keepalive=On",
|
2017-09-01 15:43:11 +00:00
|
|
|
ProxyRequestBuffering: "on",
|
2017-01-23 03:23:06 +00:00
|
|
|
}
|
2016-12-29 20:02:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestProxy(t *testing.T) {
|
2016-06-01 18:47:37 +00:00
|
|
|
ing := buildIngress()
|
2016-11-10 22:56:29 +00:00
|
|
|
|
2016-06-01 18:47:37 +00:00
|
|
|
data := map[string]string{}
|
2016-11-10 22:56:29 +00:00
|
|
|
data[connect] = "1"
|
|
|
|
data[send] = "2"
|
|
|
|
data[read] = "3"
|
|
|
|
data[bufferSize] = "1k"
|
2017-01-23 03:23:06 +00:00
|
|
|
data[bodySize] = "2k"
|
2017-06-26 19:39:24 +00:00
|
|
|
data[nextUpstream] = "off"
|
2017-08-31 13:09:23 +00:00
|
|
|
data[passParams] = "smax=5 max=10"
|
2017-09-01 15:43:11 +00:00
|
|
|
data[requestBuffering] = "off"
|
2016-06-01 18:47:37 +00:00
|
|
|
ing.SetAnnotations(data)
|
|
|
|
|
2016-12-29 20:02:06 +00:00
|
|
|
i, err := NewParser(mockBackend{}).Parse(ing)
|
|
|
|
if err != nil {
|
2017-01-23 03:23:06 +00:00
|
|
|
t.Fatalf("unexpected error parsing a valid")
|
2016-12-29 20:02:06 +00:00
|
|
|
}
|
|
|
|
p, ok := i.(*Configuration)
|
|
|
|
if !ok {
|
2017-01-23 03:23:06 +00:00
|
|
|
t.Fatalf("expected a Configuration type")
|
2016-12-29 20:02:06 +00:00
|
|
|
}
|
2016-11-10 22:56:29 +00:00
|
|
|
if p.ConnectTimeout != 1 {
|
2016-12-29 20:02:06 +00:00
|
|
|
t.Errorf("expected 1 as connect-timeout but returned %v", p.ConnectTimeout)
|
2016-11-10 22:56:29 +00:00
|
|
|
}
|
|
|
|
if p.SendTimeout != 2 {
|
2016-12-29 20:02:06 +00:00
|
|
|
t.Errorf("expected 2 as send-timeout but returned %v", p.SendTimeout)
|
2016-11-10 22:56:29 +00:00
|
|
|
}
|
|
|
|
if p.ReadTimeout != 3 {
|
2016-12-29 20:02:06 +00:00
|
|
|
t.Errorf("expected 3 as read-timeout but returned %v", p.ReadTimeout)
|
2016-11-10 22:56:29 +00:00
|
|
|
}
|
|
|
|
if p.BufferSize != "1k" {
|
2016-12-29 20:02:06 +00:00
|
|
|
t.Errorf("expected 1k as buffer-size but returned %v", p.BufferSize)
|
2016-06-01 18:47:37 +00:00
|
|
|
}
|
2017-01-23 03:23:06 +00:00
|
|
|
if p.BodySize != "2k" {
|
|
|
|
t.Errorf("expected 2k as body-size but returned %v", p.BodySize)
|
|
|
|
}
|
2017-06-26 19:39:24 +00:00
|
|
|
if p.NextUpstream != "off" {
|
|
|
|
t.Errorf("expected off as next-upstream but returned %v", p.NextUpstream)
|
|
|
|
}
|
2017-08-31 13:09:23 +00:00
|
|
|
if p.PassParams != "smax=5 max=10" {
|
|
|
|
t.Errorf("expected \"smax=5 max=10\" as pass-params but returned \"%v\"", p.PassParams)
|
|
|
|
}
|
2017-09-01 15:43:11 +00:00
|
|
|
if p.RequestBuffering != "off" {
|
|
|
|
t.Errorf("expected off as request-buffering but returned %v", p.RequestBuffering)
|
|
|
|
}
|
2017-01-23 03:23:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestProxyWithNoAnnotation(t *testing.T) {
|
|
|
|
ing := buildIngress()
|
|
|
|
|
|
|
|
data := map[string]string{}
|
|
|
|
ing.SetAnnotations(data)
|
|
|
|
|
|
|
|
i, err := NewParser(mockBackend{}).Parse(ing)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("unexpected error parsing a valid")
|
|
|
|
}
|
|
|
|
p, ok := i.(*Configuration)
|
|
|
|
if !ok {
|
|
|
|
t.Fatalf("expected a Configuration type")
|
|
|
|
}
|
|
|
|
if p.ConnectTimeout != 10 {
|
|
|
|
t.Errorf("expected 10 as connect-timeout but returned %v", p.ConnectTimeout)
|
|
|
|
}
|
|
|
|
if p.SendTimeout != 15 {
|
|
|
|
t.Errorf("expected 15 as send-timeout but returned %v", p.SendTimeout)
|
|
|
|
}
|
|
|
|
if p.ReadTimeout != 20 {
|
|
|
|
t.Errorf("expected 20 as read-timeout but returned %v", p.ReadTimeout)
|
|
|
|
}
|
|
|
|
if p.BufferSize != "10k" {
|
|
|
|
t.Errorf("expected 10k as buffer-size but returned %v", p.BufferSize)
|
|
|
|
}
|
|
|
|
if p.BodySize != "3k" {
|
|
|
|
t.Errorf("expected 3k as body-size but returned %v", p.BodySize)
|
|
|
|
}
|
2017-06-26 19:39:24 +00:00
|
|
|
if p.NextUpstream != "error" {
|
|
|
|
t.Errorf("expected error as next-upstream but returned %v", p.NextUpstream)
|
|
|
|
}
|
2017-08-31 13:09:23 +00:00
|
|
|
if p.PassParams != "nocanon keepalive=On" {
|
|
|
|
t.Errorf("expected \"nocanon keepalive=On\" as pass-params but returned \"%v\"", p.PassParams)
|
|
|
|
}
|
2017-09-01 15:43:11 +00:00
|
|
|
if p.RequestBuffering != "on" {
|
|
|
|
t.Errorf("expected on as request-buffering but returned %v", p.RequestBuffering)
|
|
|
|
}
|
2016-06-01 18:47:37 +00:00
|
|
|
}
|