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"
|
2021-08-21 20:42:00 +00:00
|
|
|
networking "k8s.io/api/networking/v1"
|
2017-04-01 14:39:42 +00:00
|
|
|
meta_v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
2016-11-10 22:56:29 +00:00
|
|
|
|
2017-11-23 16:46:23 +00:00
|
|
|
"k8s.io/ingress-nginx/internal/ingress/annotations/parser"
|
2017-11-07 22:02:12 +00:00
|
|
|
"k8s.io/ingress-nginx/internal/ingress/defaults"
|
2017-11-08 20:58:57 +00:00
|
|
|
"k8s.io/ingress-nginx/internal/ingress/resolver"
|
2016-06-01 18:47:37 +00:00
|
|
|
)
|
|
|
|
|
2023-08-31 07:36:48 +00:00
|
|
|
const (
|
|
|
|
off = "off"
|
|
|
|
proxyHTTPVersion = "1.0"
|
|
|
|
proxyMaxTempFileSize = "128k"
|
|
|
|
)
|
|
|
|
|
2019-06-09 22:49:59 +00:00
|
|
|
func buildIngress() *networking.Ingress {
|
|
|
|
defaultBackend := networking.IngressBackend{
|
2021-08-21 20:42:00 +00:00
|
|
|
Service: &networking.IngressServiceBackend{
|
|
|
|
Name: "default-backend",
|
|
|
|
Port: networking.ServiceBackendPort{
|
|
|
|
Number: 80,
|
|
|
|
},
|
|
|
|
},
|
2016-06-01 18:47:37 +00:00
|
|
|
}
|
|
|
|
|
2019-06-09 22:49:59 +00:00
|
|
|
return &networking.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,
|
|
|
|
},
|
2019-06-09 22:49:59 +00:00
|
|
|
Spec: networking.IngressSpec{
|
2021-08-21 20:42:00 +00:00
|
|
|
DefaultBackend: &networking.IngressBackend{
|
|
|
|
Service: &networking.IngressServiceBackend{
|
|
|
|
Name: "default-backend",
|
|
|
|
Port: networking.ServiceBackendPort{
|
|
|
|
Number: 80,
|
|
|
|
},
|
|
|
|
},
|
2016-06-01 18:47:37 +00:00
|
|
|
},
|
2019-06-09 22:49:59 +00:00
|
|
|
Rules: []networking.IngressRule{
|
2016-06-01 18:47:37 +00:00
|
|
|
{
|
|
|
|
Host: "foo.bar.com",
|
2019-06-09 22:49:59 +00:00
|
|
|
IngressRuleValue: networking.IngressRuleValue{
|
|
|
|
HTTP: &networking.HTTPIngressRuleValue{
|
|
|
|
Paths: []networking.HTTPIngressPath{
|
2016-06-01 18:47:37 +00:00
|
|
|
{
|
|
|
|
Path: "/foo",
|
|
|
|
Backend: defaultBackend,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-29 20:02:06 +00:00
|
|
|
type mockBackend struct {
|
2017-11-08 20:58:57 +00:00
|
|
|
resolver.Mock
|
2016-12-29 20:02:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m mockBackend) GetDefaultBackend() defaults.Backend {
|
2017-01-23 03:23:06 +00:00
|
|
|
return defaults.Backend{
|
2019-04-15 15:08:57 +00:00
|
|
|
ProxyConnectTimeout: 10,
|
|
|
|
ProxySendTimeout: 15,
|
|
|
|
ProxyReadTimeout: 20,
|
|
|
|
ProxyBuffersNumber: 4,
|
|
|
|
ProxyBufferSize: "10k",
|
|
|
|
ProxyBodySize: "3k",
|
|
|
|
ProxyNextUpstream: "error",
|
|
|
|
ProxyNextUpstreamTimeout: 0,
|
|
|
|
ProxyNextUpstreamTries: 3,
|
|
|
|
ProxyRequestBuffering: "on",
|
2023-08-31 07:36:48 +00:00
|
|
|
ProxyBuffering: off,
|
2019-07-08 18:32:00 +00:00
|
|
|
ProxyHTTPVersion: "1.1",
|
2019-08-12 17:27:05 +00:00
|
|
|
ProxyMaxTempFileSize: "1024m",
|
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{}
|
2017-11-23 16:46:23 +00:00
|
|
|
data[parser.GetAnnotationWithPrefix("proxy-connect-timeout")] = "1"
|
|
|
|
data[parser.GetAnnotationWithPrefix("proxy-send-timeout")] = "2"
|
|
|
|
data[parser.GetAnnotationWithPrefix("proxy-read-timeout")] = "3"
|
2019-02-22 02:21:17 +00:00
|
|
|
data[parser.GetAnnotationWithPrefix("proxy-buffers-number")] = "8"
|
2017-11-23 16:46:23 +00:00
|
|
|
data[parser.GetAnnotationWithPrefix("proxy-buffer-size")] = "1k"
|
|
|
|
data[parser.GetAnnotationWithPrefix("proxy-body-size")] = "2k"
|
2023-08-31 07:36:48 +00:00
|
|
|
data[parser.GetAnnotationWithPrefix("proxy-next-upstream")] = off
|
2019-04-15 15:08:57 +00:00
|
|
|
data[parser.GetAnnotationWithPrefix("proxy-next-upstream-timeout")] = "5"
|
2018-03-22 11:12:36 +00:00
|
|
|
data[parser.GetAnnotationWithPrefix("proxy-next-upstream-tries")] = "3"
|
2023-08-31 07:36:48 +00:00
|
|
|
data[parser.GetAnnotationWithPrefix("proxy-request-buffering")] = off
|
2018-01-29 14:43:55 +00:00
|
|
|
data[parser.GetAnnotationWithPrefix("proxy-buffering")] = "on"
|
2023-08-31 07:36:48 +00:00
|
|
|
data[parser.GetAnnotationWithPrefix("proxy-http-version")] = proxyHTTPVersion
|
|
|
|
data[parser.GetAnnotationWithPrefix("proxy-max-temp-file-size")] = proxyMaxTempFileSize
|
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
|
|
|
}
|
2017-11-07 16:36:51 +00:00
|
|
|
p, ok := i.(*Config)
|
2016-12-29 20:02:06 +00:00
|
|
|
if !ok {
|
2017-11-07 16:36:51 +00:00
|
|
|
t.Fatalf("expected a Config 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
|
|
|
}
|
2019-02-22 02:21:17 +00:00
|
|
|
if p.BuffersNumber != 8 {
|
|
|
|
t.Errorf("expected 8 as proxy-buffers-number but returned %v", p.BuffersNumber)
|
2019-02-20 10:05:09 +00:00
|
|
|
}
|
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)
|
|
|
|
}
|
2023-08-31 07:36:48 +00:00
|
|
|
if p.NextUpstream != off {
|
2017-06-26 19:39:24 +00:00
|
|
|
t.Errorf("expected off as next-upstream but returned %v", p.NextUpstream)
|
|
|
|
}
|
2019-04-15 15:08:57 +00:00
|
|
|
if p.NextUpstreamTimeout != 5 {
|
|
|
|
t.Errorf("expected 5 as next-upstream-timeout but returned %v", p.NextUpstreamTimeout)
|
|
|
|
}
|
2018-03-22 11:12:36 +00:00
|
|
|
if p.NextUpstreamTries != 3 {
|
|
|
|
t.Errorf("expected 3 as next-upstream-tries but returned %v", p.NextUpstreamTries)
|
|
|
|
}
|
2023-08-31 07:36:48 +00:00
|
|
|
if p.RequestBuffering != off {
|
2017-09-01 15:43:11 +00:00
|
|
|
t.Errorf("expected off as request-buffering but returned %v", p.RequestBuffering)
|
|
|
|
}
|
2023-07-22 03:32:07 +00:00
|
|
|
if p.ProxyBuffering != "on" {
|
|
|
|
t.Errorf("expected on as proxy-buffering but returned %v", p.ProxyBuffering)
|
|
|
|
}
|
2023-08-31 07:36:48 +00:00
|
|
|
if p.ProxyHTTPVersion != proxyHTTPVersion {
|
2023-07-22 03:32:07 +00:00
|
|
|
t.Errorf("expected 1.0 as proxy-http-version but returned %v", p.ProxyHTTPVersion)
|
|
|
|
}
|
2023-08-31 07:36:48 +00:00
|
|
|
if p.ProxyMaxTempFileSize != proxyMaxTempFileSize {
|
2023-07-22 03:32:07 +00:00
|
|
|
t.Errorf("expected 128k as proxy-max-temp-file-size but returned %v", p.ProxyMaxTempFileSize)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestProxyComplex(t *testing.T) {
|
|
|
|
ing := buildIngress()
|
|
|
|
|
|
|
|
data := map[string]string{}
|
|
|
|
data[parser.GetAnnotationWithPrefix("proxy-connect-timeout")] = "1"
|
|
|
|
data[parser.GetAnnotationWithPrefix("proxy-send-timeout")] = "2"
|
|
|
|
data[parser.GetAnnotationWithPrefix("proxy-read-timeout")] = "3"
|
|
|
|
data[parser.GetAnnotationWithPrefix("proxy-buffers-number")] = "8"
|
|
|
|
data[parser.GetAnnotationWithPrefix("proxy-buffer-size")] = "1k"
|
|
|
|
data[parser.GetAnnotationWithPrefix("proxy-body-size")] = "2k"
|
|
|
|
data[parser.GetAnnotationWithPrefix("proxy-next-upstream")] = "error http_502"
|
|
|
|
data[parser.GetAnnotationWithPrefix("proxy-next-upstream-timeout")] = "5"
|
|
|
|
data[parser.GetAnnotationWithPrefix("proxy-next-upstream-tries")] = "3"
|
|
|
|
data[parser.GetAnnotationWithPrefix("proxy-request-buffering")] = "off"
|
|
|
|
data[parser.GetAnnotationWithPrefix("proxy-buffering")] = "on"
|
2023-08-31 07:36:48 +00:00
|
|
|
data[parser.GetAnnotationWithPrefix("proxy-http-version")] = proxyHTTPVersion
|
|
|
|
data[parser.GetAnnotationWithPrefix("proxy-max-temp-file-size")] = proxyMaxTempFileSize
|
2023-07-22 03:32:07 +00:00
|
|
|
ing.SetAnnotations(data)
|
|
|
|
|
|
|
|
i, err := NewParser(mockBackend{}).Parse(ing)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("unexpected error parsing a valid")
|
|
|
|
}
|
|
|
|
p, ok := i.(*Config)
|
|
|
|
if !ok {
|
|
|
|
t.Fatalf("expected a Config type")
|
|
|
|
}
|
|
|
|
if p.ConnectTimeout != 1 {
|
|
|
|
t.Errorf("expected 1 as connect-timeout but returned %v", p.ConnectTimeout)
|
|
|
|
}
|
|
|
|
if p.SendTimeout != 2 {
|
|
|
|
t.Errorf("expected 2 as send-timeout but returned %v", p.SendTimeout)
|
|
|
|
}
|
|
|
|
if p.ReadTimeout != 3 {
|
|
|
|
t.Errorf("expected 3 as read-timeout but returned %v", p.ReadTimeout)
|
|
|
|
}
|
|
|
|
if p.BuffersNumber != 8 {
|
|
|
|
t.Errorf("expected 8 as proxy-buffers-number but returned %v", p.BuffersNumber)
|
|
|
|
}
|
|
|
|
if p.BufferSize != "1k" {
|
|
|
|
t.Errorf("expected 1k as buffer-size but returned %v", p.BufferSize)
|
|
|
|
}
|
|
|
|
if p.BodySize != "2k" {
|
|
|
|
t.Errorf("expected 2k as body-size but returned %v", p.BodySize)
|
|
|
|
}
|
|
|
|
if p.NextUpstream != "error http_502" {
|
|
|
|
t.Errorf("expected off as next-upstream but returned %v", p.NextUpstream)
|
|
|
|
}
|
|
|
|
if p.NextUpstreamTimeout != 5 {
|
|
|
|
t.Errorf("expected 5 as next-upstream-timeout but returned %v", p.NextUpstreamTimeout)
|
|
|
|
}
|
|
|
|
if p.NextUpstreamTries != 3 {
|
|
|
|
t.Errorf("expected 3 as next-upstream-tries but returned %v", p.NextUpstreamTries)
|
|
|
|
}
|
|
|
|
if p.RequestBuffering != "off" {
|
|
|
|
t.Errorf("expected off as request-buffering but returned %v", p.RequestBuffering)
|
|
|
|
}
|
2018-01-29 14:43:55 +00:00
|
|
|
if p.ProxyBuffering != "on" {
|
|
|
|
t.Errorf("expected on as proxy-buffering but returned %v", p.ProxyBuffering)
|
|
|
|
}
|
2023-08-31 07:36:48 +00:00
|
|
|
if p.ProxyHTTPVersion != proxyHTTPVersion {
|
2019-07-08 18:32:00 +00:00
|
|
|
t.Errorf("expected 1.0 as proxy-http-version but returned %v", p.ProxyHTTPVersion)
|
|
|
|
}
|
2023-08-31 07:36:48 +00:00
|
|
|
if p.ProxyMaxTempFileSize != proxyMaxTempFileSize {
|
2019-08-12 17:27:05 +00:00
|
|
|
t.Errorf("expected 128k as proxy-max-temp-file-size but returned %v", p.ProxyMaxTempFileSize)
|
|
|
|
}
|
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")
|
|
|
|
}
|
2017-11-07 16:36:51 +00:00
|
|
|
p, ok := i.(*Config)
|
2017-01-23 03:23:06 +00:00
|
|
|
if !ok {
|
2017-11-07 16:36:51 +00:00
|
|
|
t.Fatalf("expected a Config type")
|
2017-01-23 03:23:06 +00:00
|
|
|
}
|
|
|
|
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)
|
|
|
|
}
|
2019-02-22 02:21:17 +00:00
|
|
|
if p.BuffersNumber != 4 {
|
|
|
|
t.Errorf("expected 4 as buffer-number but returned %v", p.BuffersNumber)
|
2019-02-20 10:05:09 +00:00
|
|
|
}
|
2017-01-23 03:23:06 +00:00
|
|
|
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)
|
|
|
|
}
|
2019-04-15 15:08:57 +00:00
|
|
|
if p.NextUpstreamTimeout != 0 {
|
|
|
|
t.Errorf("expected 0 as next-upstream-timeout but returned %v", p.NextUpstreamTimeout)
|
|
|
|
}
|
2018-03-22 11:12:36 +00:00
|
|
|
if p.NextUpstreamTries != 3 {
|
|
|
|
t.Errorf("expected 3 as next-upstream-tries but returned %v", p.NextUpstreamTries)
|
|
|
|
}
|
2017-09-01 15:43:11 +00:00
|
|
|
if p.RequestBuffering != "on" {
|
|
|
|
t.Errorf("expected on as request-buffering but returned %v", p.RequestBuffering)
|
|
|
|
}
|
2019-07-08 18:32:00 +00:00
|
|
|
if p.ProxyHTTPVersion != "1.1" {
|
|
|
|
t.Errorf("expected 1.1 as proxy-http-version but returned %v", p.ProxyHTTPVersion)
|
|
|
|
}
|
2019-08-12 17:27:05 +00:00
|
|
|
if p.ProxyMaxTempFileSize != "1024m" {
|
|
|
|
t.Errorf("expected 1024m as proxy-max-temp-file-size but returned %v", p.ProxyMaxTempFileSize)
|
|
|
|
}
|
2016-06-01 18:47:37 +00:00
|
|
|
}
|