2017-09-15 18:56:04 +00:00
|
|
|
package configuration
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"testing"
|
2017-09-26 08:22:03 +00:00
|
|
|
"time"
|
2017-09-15 18:56:04 +00:00
|
|
|
|
2017-09-26 08:22:03 +00:00
|
|
|
"github.com/containous/flaeg"
|
2017-09-15 18:56:04 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
)
|
|
|
|
|
|
|
|
func Test_parseEntryPointsConfiguration(t *testing.T) {
|
|
|
|
testCases := []struct {
|
|
|
|
name string
|
|
|
|
value string
|
|
|
|
expectedResult map[string]string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "all parameters",
|
|
|
|
value: "Name:foo Address:bar TLS:goo TLS CA:car Redirect.EntryPoint:RedirectEntryPoint Redirect.Regex:RedirectRegex Redirect.Replacement:RedirectReplacement Compress:true WhiteListSourceRange:WhiteListSourceRange ProxyProtocol:true",
|
|
|
|
expectedResult: map[string]string{
|
|
|
|
"Name": "foo",
|
|
|
|
"Address": "bar",
|
|
|
|
"CA": "car",
|
|
|
|
"TLS": "goo",
|
|
|
|
"TLSACME": "TLS",
|
|
|
|
"RedirectEntryPoint": "RedirectEntryPoint",
|
|
|
|
"RedirectRegex": "RedirectRegex",
|
|
|
|
"RedirectReplacement": "RedirectReplacement",
|
|
|
|
"WhiteListSourceRange": "WhiteListSourceRange",
|
|
|
|
"ProxyProtocol": "true",
|
|
|
|
"Compress": "true",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "proxy protocol on",
|
|
|
|
value: "Name:foo ProxyProtocol:on",
|
|
|
|
expectedResult: map[string]string{
|
|
|
|
"Name": "foo",
|
|
|
|
"ProxyProtocol": "on",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "compress on",
|
|
|
|
value: "Name:foo Compress:on",
|
|
|
|
expectedResult: map[string]string{
|
|
|
|
"Name": "foo",
|
|
|
|
"Compress": "on",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "TLS",
|
|
|
|
value: "Name:foo TLS:goo TLS",
|
|
|
|
expectedResult: map[string]string{
|
|
|
|
"Name": "foo",
|
|
|
|
"TLS": "goo",
|
|
|
|
"TLSACME": "TLS",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range testCases {
|
|
|
|
test := test
|
|
|
|
t.Run(test.name, func(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
conf, err := parseEntryPointsConfiguration(test.value)
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
for key, value := range conf {
|
|
|
|
fmt.Println(key, value)
|
|
|
|
}
|
|
|
|
|
|
|
|
assert.Len(t, conf, len(test.expectedResult))
|
|
|
|
assert.Equal(t, test.expectedResult, conf)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func Test_toBool(t *testing.T) {
|
|
|
|
testCases := []struct {
|
|
|
|
name string
|
|
|
|
value string
|
|
|
|
key string
|
|
|
|
expectedBool bool
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "on",
|
|
|
|
value: "on",
|
|
|
|
key: "foo",
|
|
|
|
expectedBool: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "true",
|
|
|
|
value: "true",
|
|
|
|
key: "foo",
|
|
|
|
expectedBool: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "enable",
|
|
|
|
value: "enable",
|
|
|
|
key: "foo",
|
|
|
|
expectedBool: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "arbitrary string",
|
|
|
|
value: "bar",
|
|
|
|
key: "foo",
|
|
|
|
expectedBool: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "no existing entry",
|
|
|
|
value: "bar",
|
|
|
|
key: "fii",
|
|
|
|
expectedBool: false,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range testCases {
|
|
|
|
test := test
|
|
|
|
t.Run(test.name, func(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
conf := map[string]string{
|
|
|
|
"foo": test.value,
|
|
|
|
}
|
|
|
|
|
|
|
|
result := toBool(conf, test.key)
|
|
|
|
|
|
|
|
assert.Equal(t, test.expectedBool, result)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestEntryPoints_Set(t *testing.T) {
|
|
|
|
testCases := []struct {
|
|
|
|
name string
|
|
|
|
expression string
|
|
|
|
expectedEntryPointName string
|
|
|
|
expectedEntryPoint *EntryPoint
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "all parameters",
|
|
|
|
expression: "Name:foo Address:bar TLS:goo,gii TLS CA:car Redirect.EntryPoint:RedirectEntryPoint Redirect.Regex:RedirectRegex Redirect.Replacement:RedirectReplacement Compress:true WhiteListSourceRange:Range ProxyProtocol:true",
|
|
|
|
expectedEntryPointName: "foo",
|
|
|
|
expectedEntryPoint: &EntryPoint{
|
|
|
|
Address: "bar",
|
|
|
|
Redirect: &Redirect{
|
|
|
|
EntryPoint: "RedirectEntryPoint",
|
|
|
|
Regex: "RedirectRegex",
|
|
|
|
Replacement: "RedirectReplacement",
|
|
|
|
},
|
|
|
|
Compress: true,
|
|
|
|
ProxyProtocol: true,
|
|
|
|
WhitelistSourceRange: []string{"Range"},
|
|
|
|
TLS: &TLS{
|
|
|
|
ClientCAFiles: []string{"car"},
|
|
|
|
Certificates: Certificates{
|
|
|
|
{
|
|
|
|
CertFile: FileOrContent("goo"),
|
|
|
|
KeyFile: FileOrContent("gii"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "compress on",
|
|
|
|
expression: "Name:foo Compress:on",
|
|
|
|
expectedEntryPointName: "foo",
|
|
|
|
expectedEntryPoint: &EntryPoint{
|
|
|
|
Compress: true,
|
|
|
|
WhitelistSourceRange: []string{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "compress true",
|
|
|
|
expression: "Name:foo Compress:true",
|
|
|
|
expectedEntryPointName: "foo",
|
|
|
|
expectedEntryPoint: &EntryPoint{
|
|
|
|
Compress: true,
|
|
|
|
WhitelistSourceRange: []string{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range testCases {
|
|
|
|
test := test
|
|
|
|
t.Run(test.name, func(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
eps := EntryPoints{}
|
|
|
|
err := eps.Set(test.expression)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
ep := eps[test.expectedEntryPointName]
|
|
|
|
assert.EqualValues(t, test.expectedEntryPoint, ep)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
2017-09-26 08:22:03 +00:00
|
|
|
|
|
|
|
func TestSetEffecticeConfiguration(t *testing.T) {
|
|
|
|
tests := []struct {
|
|
|
|
desc string
|
|
|
|
legacyGraceTimeout time.Duration
|
|
|
|
lifeCycleGraceTimeout time.Duration
|
|
|
|
wantGraceTimeout time.Duration
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
desc: "legacy grace timeout given only",
|
|
|
|
legacyGraceTimeout: 5 * time.Second,
|
|
|
|
wantGraceTimeout: 5 * time.Second,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "legacy and life cycle grace timeouts given",
|
|
|
|
legacyGraceTimeout: 5 * time.Second,
|
|
|
|
lifeCycleGraceTimeout: 12 * time.Second,
|
|
|
|
wantGraceTimeout: 5 * time.Second,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "legacy grace timeout omitted",
|
|
|
|
legacyGraceTimeout: 0,
|
|
|
|
lifeCycleGraceTimeout: 12 * time.Second,
|
|
|
|
wantGraceTimeout: 12 * time.Second,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
|
|
|
test := test
|
|
|
|
t.Run(test.desc, func(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
gc := &GlobalConfiguration{
|
|
|
|
GraceTimeOut: flaeg.Duration(test.legacyGraceTimeout),
|
|
|
|
}
|
|
|
|
if test.lifeCycleGraceTimeout > 0 {
|
|
|
|
gc.LifeCycle = &LifeCycle{
|
|
|
|
GraceTimeOut: flaeg.Duration(test.lifeCycleGraceTimeout),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
gc.SetEffectiveConfiguration()
|
|
|
|
gotGraceTimeout := time.Duration(gc.LifeCycle.GraceTimeOut)
|
|
|
|
if gotGraceTimeout != test.wantGraceTimeout {
|
|
|
|
t.Fatalf("got effective grace timeout %d, want %d", gotGraceTimeout, test.wantGraceTimeout)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|