Merge pull request #172 from chentao1596/prefect-util-test
add some unit test cases for some packages under folder "core.pkg.ingress"
This commit is contained in:
commit
800d680413
3 changed files with 579 additions and 0 deletions
|
@ -27,6 +27,13 @@ import (
|
|||
"k8s.io/ingress/core/pkg/ingress/resolver"
|
||||
)
|
||||
|
||||
const (
|
||||
annotation_secureUpstream = "ingress.kubernetes.io/secure-backends"
|
||||
annotation_upsMaxFails = "ingress.kubernetes.io/upstream-max-fails"
|
||||
annotation_upsFailTimeout = "ingress.kubernetes.io/upstream-fail-timeout"
|
||||
annotation_passthrough = "ingress.kubernetes.io/ssl-passthrough"
|
||||
)
|
||||
|
||||
type mockCfg struct {
|
||||
}
|
||||
|
||||
|
@ -90,3 +97,85 @@ func buildIngress() *extensions.Ingress {
|
|||
},
|
||||
}
|
||||
}
|
||||
|
||||
func TestSecureUpstream(t *testing.T) {
|
||||
ec := newAnnotationExtractor(mockCfg{})
|
||||
ing := buildIngress()
|
||||
|
||||
fooAnns := []struct {
|
||||
annotations map[string]string
|
||||
er bool
|
||||
}{
|
||||
{map[string]string{annotation_secureUpstream: "true"}, true},
|
||||
{map[string]string{annotation_secureUpstream: "false"}, false},
|
||||
{map[string]string{annotation_secureUpstream + "_no": "true"}, false},
|
||||
{map[string]string{}, false},
|
||||
{nil, false},
|
||||
}
|
||||
|
||||
for _, foo := range fooAnns {
|
||||
ing.SetAnnotations(foo.annotations)
|
||||
r := ec.SecureUpstream(ing)
|
||||
if r != foo.er {
|
||||
t.Errorf("Returned %v but expected %v", r, foo.er)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func TestHealthCheck(t *testing.T) {
|
||||
ec := newAnnotationExtractor(mockCfg{})
|
||||
ing := buildIngress()
|
||||
|
||||
fooAnns := []struct {
|
||||
annotations map[string]string
|
||||
eumf int
|
||||
euft int
|
||||
}{
|
||||
{map[string]string{annotation_upsMaxFails: "3", annotation_upsFailTimeout: "10"}, 3, 10},
|
||||
{map[string]string{annotation_upsMaxFails: "3"}, 3, 0},
|
||||
{map[string]string{annotation_upsFailTimeout: "10"}, 0, 10},
|
||||
{map[string]string{}, 0, 0},
|
||||
{nil, 0, 0},
|
||||
}
|
||||
|
||||
for _, foo := range fooAnns {
|
||||
ing.SetAnnotations(foo.annotations)
|
||||
r := ec.HealthCheck(ing)
|
||||
if r == nil {
|
||||
t.Errorf("Returned nil but expected a healthcheck.Upstream")
|
||||
continue
|
||||
}
|
||||
|
||||
if r.FailTimeout != foo.euft {
|
||||
t.Errorf("Returned %d but expected %d for FailTimeout", r.FailTimeout, foo.euft)
|
||||
}
|
||||
|
||||
if r.MaxFails != foo.eumf {
|
||||
t.Errorf("Returned %d but expected %d for MaxFails", r.MaxFails, foo.eumf)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func TestSSLPassthrough(t *testing.T) {
|
||||
ec := newAnnotationExtractor(mockCfg{})
|
||||
ing := buildIngress()
|
||||
|
||||
fooAnns := []struct {
|
||||
annotations map[string]string
|
||||
er bool
|
||||
}{
|
||||
{map[string]string{annotation_passthrough: "true"}, true},
|
||||
{map[string]string{annotation_passthrough: "false"}, false},
|
||||
{map[string]string{annotation_passthrough + "_no": "true"}, false},
|
||||
{map[string]string{}, false},
|
||||
{nil, false},
|
||||
}
|
||||
|
||||
for _, foo := range fooAnns {
|
||||
ing.SetAnnotations(foo.annotations)
|
||||
r := ec.SSLPassthrough(ing)
|
||||
if r != foo.er {
|
||||
t.Errorf("Returned %v but expected %v", r, foo.er)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -19,10 +19,25 @@ package controller
|
|||
import (
|
||||
"testing"
|
||||
|
||||
"k8s.io/ingress/core/pkg/ingress"
|
||||
"k8s.io/ingress/core/pkg/ingress/annotations/auth"
|
||||
"k8s.io/ingress/core/pkg/ingress/annotations/authreq"
|
||||
"k8s.io/ingress/core/pkg/ingress/annotations/ipwhitelist"
|
||||
"k8s.io/ingress/core/pkg/ingress/annotations/proxy"
|
||||
"k8s.io/ingress/core/pkg/ingress/annotations/ratelimit"
|
||||
"k8s.io/ingress/core/pkg/ingress/annotations/rewrite"
|
||||
"k8s.io/ingress/core/pkg/ingress/resolver"
|
||||
"k8s.io/kubernetes/pkg/api"
|
||||
"k8s.io/kubernetes/pkg/apis/extensions"
|
||||
"reflect"
|
||||
)
|
||||
|
||||
type fakeError struct{}
|
||||
|
||||
func (fe *fakeError) Error() string {
|
||||
return "fakeError"
|
||||
}
|
||||
|
||||
func TestIsValidClass(t *testing.T) {
|
||||
ing := &extensions.Ingress{
|
||||
ObjectMeta: api.ObjectMeta{
|
||||
|
@ -48,3 +63,99 @@ func TestIsValidClass(t *testing.T) {
|
|||
t.Errorf("Expected invalid class but %v returned", b)
|
||||
}
|
||||
}
|
||||
|
||||
func TestIsHostValid(t *testing.T) {
|
||||
fkCert := &ingress.SSLCert{
|
||||
CAFileName: "foo",
|
||||
PemFileName: "foo.cr",
|
||||
PemSHA: "perha",
|
||||
CN: []string{
|
||||
"*.cluster.local", "default.local",
|
||||
},
|
||||
}
|
||||
|
||||
fooTests := []struct {
|
||||
cr *ingress.SSLCert
|
||||
host string
|
||||
er bool
|
||||
}{
|
||||
{nil, "foo1.cluster.local", false},
|
||||
{fkCert, "foo1.cluster.local", true},
|
||||
{fkCert, "default.local", true},
|
||||
{fkCert, "foo2.cluster.local.t", false},
|
||||
{fkCert, "", false},
|
||||
}
|
||||
|
||||
for _, foo := range fooTests {
|
||||
r := isHostValid(foo.host, foo.cr)
|
||||
if r != foo.er {
|
||||
t.Errorf("Returned %v but expected %v for foo=%v", r, foo.er, foo)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func TestMatchHostnames(t *testing.T) {
|
||||
fooTests := []struct {
|
||||
pattern string
|
||||
host string
|
||||
er bool
|
||||
}{
|
||||
{"*.cluster.local.", "foo1.cluster.local.", true},
|
||||
{"foo1.cluster.local.", "foo2.cluster.local.", false},
|
||||
{"cluster.local.", "foo1.cluster.local.", false},
|
||||
{".", "foo1.cluster.local.", false},
|
||||
{"cluster.local.", ".", false},
|
||||
}
|
||||
|
||||
for _, foo := range fooTests {
|
||||
r := matchHostnames(foo.pattern, foo.host)
|
||||
if r != foo.er {
|
||||
t.Errorf("Returned %v but expected %v for foo=%v", r, foo.er, foo)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func TestMergeLocationAnnotations(t *testing.T) {
|
||||
// initial parameters
|
||||
loc := ingress.Location{}
|
||||
annotations := map[string]interface{}{
|
||||
"Path": "/checkpath",
|
||||
"IsDefBackend": true,
|
||||
"Backend": "foo_backend",
|
||||
"BasicDigestAuth": auth.BasicDigest{},
|
||||
DeniedKeyName: &fakeError{},
|
||||
"EnableCORS": true,
|
||||
"ExternalAuth": authreq.External{},
|
||||
"RateLimit": ratelimit.RateLimit{},
|
||||
"Redirect": rewrite.Redirect{},
|
||||
"Whitelist": ipwhitelist.SourceRange{},
|
||||
"Proxy": proxy.Configuration{},
|
||||
"CertificateAuth": resolver.AuthSSLCert{},
|
||||
"UsePortInRedirects": true,
|
||||
}
|
||||
|
||||
// create test table
|
||||
type fooMergeLocationAnnotationsStruct struct {
|
||||
fName string
|
||||
er interface{}
|
||||
}
|
||||
fooTests := []fooMergeLocationAnnotationsStruct{}
|
||||
for name, value := range annotations {
|
||||
fva := fooMergeLocationAnnotationsStruct{name, value}
|
||||
fooTests = append(fooTests, fva)
|
||||
}
|
||||
|
||||
// execute test
|
||||
mergeLocationAnnotations(&loc, annotations)
|
||||
|
||||
// check result
|
||||
for _, foo := range fooTests {
|
||||
fv := reflect.ValueOf(loc).FieldByName(foo.fName).Interface()
|
||||
if !reflect.DeepEqual(fv, foo.er) {
|
||||
t.Errorf("Returned %v but expected %v for the field %s", fv, foo.er, foo.fName)
|
||||
}
|
||||
}
|
||||
if _, ok := annotations[DeniedKeyName]; ok {
|
||||
t.Errorf("%s should be removed after mergeLocationAnnotations", DeniedKeyName)
|
||||
}
|
||||
}
|
||||
|
|
379
core/pkg/ingress/sort_ingress_test.go
Normal file
379
core/pkg/ingress/sort_ingress_test.go
Normal file
|
@ -0,0 +1,379 @@
|
|||
/*
|
||||
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 ingress
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"k8s.io/kubernetes/pkg/api"
|
||||
)
|
||||
|
||||
func buildBackendByNameServers() BackendByNameServers {
|
||||
return []*Backend{
|
||||
{
|
||||
Name: "foo1",
|
||||
Secure: true,
|
||||
Endpoints: []Endpoint{},
|
||||
},
|
||||
{
|
||||
Name: "foo2",
|
||||
Secure: false,
|
||||
Endpoints: []Endpoint{},
|
||||
},
|
||||
{
|
||||
Name: "foo3",
|
||||
Secure: true,
|
||||
Endpoints: []Endpoint{},
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
func TestBackendByNameServersLen(t *testing.T) {
|
||||
fooTests := []struct {
|
||||
backends BackendByNameServers
|
||||
el int
|
||||
}{
|
||||
{[]*Backend{}, 0},
|
||||
{buildBackendByNameServers(), 3},
|
||||
{nil, 0},
|
||||
}
|
||||
|
||||
for _, fooTest := range fooTests {
|
||||
r := fooTest.backends.Len()
|
||||
if r != fooTest.el {
|
||||
t.Errorf("returned %v but expected %v for the len of BackendByNameServers: %v", r, fooTest.el, fooTest.backends)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func TestBackendByNameServersSwap(t *testing.T) {
|
||||
fooTests := []struct {
|
||||
backends BackendByNameServers
|
||||
i int
|
||||
j int
|
||||
}{
|
||||
{buildBackendByNameServers(), 0, 1},
|
||||
{buildBackendByNameServers(), 2, 1},
|
||||
}
|
||||
|
||||
for _, fooTest := range fooTests {
|
||||
fooi := fooTest.backends[fooTest.i]
|
||||
fooj := fooTest.backends[fooTest.j]
|
||||
fooTest.backends.Swap(fooTest.i, fooTest.j)
|
||||
if fooi.Name != fooTest.backends[fooTest.j].Name || fooj.Name != fooTest.backends[fooTest.i].Name {
|
||||
t.Errorf("failed to swap for ByNameServers, foo: %v", fooTest)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func TestBackendByNameServersLess(t *testing.T) {
|
||||
fooTests := []struct {
|
||||
backends BackendByNameServers
|
||||
i int
|
||||
j int
|
||||
er bool
|
||||
}{
|
||||
// order by name
|
||||
{buildBackendByNameServers(), 0, 2, true},
|
||||
{buildBackendByNameServers(), 1, 0, false},
|
||||
}
|
||||
|
||||
for _, fooTest := range fooTests {
|
||||
r := fooTest.backends.Less(fooTest.i, fooTest.j)
|
||||
if r != fooTest.er {
|
||||
t.Errorf("returned %v but expected %v for the foo: %v", r, fooTest.er, fooTest)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func buildEndpointByAddrPort() EndpointByAddrPort {
|
||||
return []Endpoint{
|
||||
{
|
||||
Address: "127.0.0.1",
|
||||
Port: "8080",
|
||||
MaxFails: 3,
|
||||
FailTimeout: 10,
|
||||
},
|
||||
{
|
||||
Address: "127.0.0.1",
|
||||
Port: "8081",
|
||||
MaxFails: 3,
|
||||
FailTimeout: 10,
|
||||
},
|
||||
{
|
||||
Address: "127.0.0.1",
|
||||
Port: "8082",
|
||||
MaxFails: 3,
|
||||
FailTimeout: 10,
|
||||
},
|
||||
{
|
||||
Address: "127.0.0.2",
|
||||
Port: "8082",
|
||||
MaxFails: 3,
|
||||
FailTimeout: 10,
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
func TestEndpointByAddrPortLen(t *testing.T) {
|
||||
fooTests := []struct {
|
||||
endpoints EndpointByAddrPort
|
||||
el int
|
||||
}{
|
||||
{[]Endpoint{}, 0},
|
||||
{buildEndpointByAddrPort(), 4},
|
||||
{nil, 0},
|
||||
}
|
||||
|
||||
for _, fooTest := range fooTests {
|
||||
r := fooTest.endpoints.Len()
|
||||
if r != fooTest.el {
|
||||
t.Errorf("returned %v but expected %v for the len of EndpointByAddrPort: %v", r, fooTest.el, fooTest.endpoints)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func TestEndpointByAddrPortSwap(t *testing.T) {
|
||||
fooTests := []struct {
|
||||
endpoints EndpointByAddrPort
|
||||
i int
|
||||
j int
|
||||
}{
|
||||
{buildEndpointByAddrPort(), 0, 1},
|
||||
{buildEndpointByAddrPort(), 2, 1},
|
||||
}
|
||||
|
||||
for _, fooTest := range fooTests {
|
||||
fooi := fooTest.endpoints[fooTest.i]
|
||||
fooj := fooTest.endpoints[fooTest.j]
|
||||
fooTest.endpoints.Swap(fooTest.i, fooTest.j)
|
||||
if fooi.Port != fooTest.endpoints[fooTest.j].Port ||
|
||||
fooi.Address != fooTest.endpoints[fooTest.j].Address ||
|
||||
fooj.Port != fooTest.endpoints[fooTest.i].Port ||
|
||||
fooj.Address != fooTest.endpoints[fooTest.i].Address {
|
||||
t.Errorf("failed to swap for EndpointByAddrPort, foo: %v", fooTest)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func TestEndpointByAddrPortLess(t *testing.T) {
|
||||
fooTests := []struct {
|
||||
endpoints EndpointByAddrPort
|
||||
i int
|
||||
j int
|
||||
er bool
|
||||
}{
|
||||
// 1) order by name
|
||||
// 2) order by port(if the name is the same one)
|
||||
{buildEndpointByAddrPort(), 0, 1, true},
|
||||
{buildEndpointByAddrPort(), 2, 1, false},
|
||||
{buildEndpointByAddrPort(), 2, 3, true},
|
||||
}
|
||||
|
||||
for _, fooTest := range fooTests {
|
||||
r := fooTest.endpoints.Less(fooTest.i, fooTest.j)
|
||||
if r != fooTest.er {
|
||||
t.Errorf("returned %v but expected %v for the foo: %v", r, fooTest.er, fooTest)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func buildServerByName() ServerByName {
|
||||
return []*Server{
|
||||
{
|
||||
Hostname: "foo1",
|
||||
SSLPassthrough: true,
|
||||
SSLCertificate: "foo1_cert",
|
||||
SSLPemChecksum: "foo1_pem",
|
||||
Locations: []*Location{},
|
||||
},
|
||||
{
|
||||
Hostname: "foo2",
|
||||
SSLPassthrough: true,
|
||||
SSLCertificate: "foo2_cert",
|
||||
SSLPemChecksum: "foo2_pem",
|
||||
Locations: []*Location{},
|
||||
},
|
||||
{
|
||||
Hostname: "foo3",
|
||||
SSLPassthrough: false,
|
||||
SSLCertificate: "foo3_cert",
|
||||
SSLPemChecksum: "foo3_pem",
|
||||
Locations: []*Location{},
|
||||
},
|
||||
{
|
||||
Hostname: "_",
|
||||
SSLPassthrough: false,
|
||||
SSLCertificate: "foo4_cert",
|
||||
SSLPemChecksum: "foo4_pem",
|
||||
Locations: []*Location{},
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
func TestServerByNameLen(t *testing.T) {
|
||||
fooTests := []struct {
|
||||
servers ServerByName
|
||||
el int
|
||||
}{
|
||||
{[]*Server{}, 0},
|
||||
{buildServerByName(), 4},
|
||||
{nil, 0},
|
||||
}
|
||||
|
||||
for _, fooTest := range fooTests {
|
||||
r := fooTest.servers.Len()
|
||||
if r != fooTest.el {
|
||||
t.Errorf("returned %v but expected %v for the len of ServerByName: %v", r, fooTest.el, fooTest.servers)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func TestServerByNameSwap(t *testing.T) {
|
||||
fooTests := []struct {
|
||||
servers ServerByName
|
||||
i int
|
||||
j int
|
||||
}{
|
||||
{buildServerByName(), 0, 1},
|
||||
{buildServerByName(), 2, 1},
|
||||
}
|
||||
|
||||
for _, fooTest := range fooTests {
|
||||
fooi := fooTest.servers[fooTest.i]
|
||||
fooj := fooTest.servers[fooTest.j]
|
||||
fooTest.servers.Swap(fooTest.i, fooTest.j)
|
||||
if fooi.Hostname != fooTest.servers[fooTest.j].Hostname ||
|
||||
fooj.Hostname != fooTest.servers[fooTest.i].Hostname {
|
||||
t.Errorf("failed to swap for ServerByName, foo: %v", fooTest)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func TestServerByNameLess(t *testing.T) {
|
||||
fooTests := []struct {
|
||||
servers ServerByName
|
||||
i int
|
||||
j int
|
||||
er bool
|
||||
}{
|
||||
{buildServerByName(), 0, 1, true},
|
||||
{buildServerByName(), 2, 1, false},
|
||||
{buildServerByName(), 2, 3, false},
|
||||
}
|
||||
|
||||
for _, fooTest := range fooTests {
|
||||
r := fooTest.servers.Less(fooTest.i, fooTest.j)
|
||||
if r != fooTest.er {
|
||||
t.Errorf("returned %v but expected %v for the foo: %v", r, fooTest.er, fooTest)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func buildLocationByPath() LocationByPath {
|
||||
return []*Location{
|
||||
{
|
||||
Path: "a",
|
||||
IsDefBackend: true,
|
||||
Backend: "a_back",
|
||||
},
|
||||
{
|
||||
Path: "b",
|
||||
IsDefBackend: true,
|
||||
Backend: "b_back",
|
||||
},
|
||||
{
|
||||
Path: "c",
|
||||
IsDefBackend: true,
|
||||
Backend: "c_back",
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
func TestLocationByPath(t *testing.T) {
|
||||
fooTests := []struct {
|
||||
locations LocationByPath
|
||||
el int
|
||||
}{
|
||||
{[]*Location{}, 0},
|
||||
{buildLocationByPath(), 3},
|
||||
{nil, 0},
|
||||
}
|
||||
|
||||
for _, fooTest := range fooTests {
|
||||
r := fooTest.locations.Len()
|
||||
if r != fooTest.el {
|
||||
t.Errorf("returned %v but expected %v for the len of LocationByPath: %v", r, fooTest.el, fooTest.locations)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func TestLocationByPathSwap(t *testing.T) {
|
||||
fooTests := []struct {
|
||||
locations LocationByPath
|
||||
i int
|
||||
j int
|
||||
}{
|
||||
{buildLocationByPath(), 0, 1},
|
||||
{buildLocationByPath(), 2, 1},
|
||||
}
|
||||
|
||||
for _, fooTest := range fooTests {
|
||||
fooi := fooTest.locations[fooTest.i]
|
||||
fooj := fooTest.locations[fooTest.j]
|
||||
fooTest.locations.Swap(fooTest.i, fooTest.j)
|
||||
if fooi.Path != fooTest.locations[fooTest.j].Path ||
|
||||
fooj.Path != fooTest.locations[fooTest.i].Path {
|
||||
t.Errorf("failed to swap for LocationByPath, foo: %v", fooTest)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func TestLocationByPathLess(t *testing.T) {
|
||||
fooTests := []struct {
|
||||
locations LocationByPath
|
||||
i int
|
||||
j int
|
||||
er bool
|
||||
}{
|
||||
// sorts location by path in descending order
|
||||
{buildLocationByPath(), 0, 1, false},
|
||||
{buildLocationByPath(), 2, 1, true},
|
||||
}
|
||||
|
||||
for _, fooTest := range fooTests {
|
||||
r := fooTest.locations.Less(fooTest.i, fooTest.j)
|
||||
if r != fooTest.er {
|
||||
t.Errorf("returned %v but expected %v for the foo: %v", r, fooTest.er, fooTest)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func TestGetObjectKindForSSLCert(t *testing.T) {
|
||||
fk := &SSLCert{
|
||||
ObjectMeta: api.ObjectMeta{},
|
||||
CAFileName: "ca_file",
|
||||
PemFileName: "pemfile",
|
||||
PemSHA: "pem_sha",
|
||||
CN: []string{},
|
||||
}
|
||||
|
||||
r := fk.GetObjectKind()
|
||||
if r == nil {
|
||||
t.Errorf("Returned nil but expected a valid ObjectKind")
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue