2016-05-16 20:29:33 +00:00
|
|
|
/*
|
2016-11-10 22:56:29 +00:00
|
|
|
Copyright 2015 The Kubernetes Authors.
|
2016-05-16 20:29:33 +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 authtls
|
2016-05-16 20:29:33 +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"
|
2019-02-04 01:53:01 +00:00
|
|
|
"k8s.io/ingress-nginx/internal/ingress/annotations/parser"
|
|
|
|
"k8s.io/ingress-nginx/internal/ingress/errors"
|
|
|
|
"k8s.io/ingress-nginx/internal/ingress/resolver"
|
2016-05-16 20:29:33 +00:00
|
|
|
)
|
|
|
|
|
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-05-16 20:29:33 +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-05-16 20:29:33 +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-05-16 20:29:33 +00:00
|
|
|
},
|
2019-06-09 22:49:59 +00:00
|
|
|
Rules: []networking.IngressRule{
|
2016-05-16 20:29:33 +00:00
|
|
|
{
|
|
|
|
Host: "foo.bar.com",
|
2019-06-09 22:49:59 +00:00
|
|
|
IngressRuleValue: networking.IngressRuleValue{
|
|
|
|
HTTP: &networking.HTTPIngressRuleValue{
|
|
|
|
Paths: []networking.HTTPIngressPath{
|
2016-05-16 20:29:33 +00:00
|
|
|
{
|
|
|
|
Path: "/foo",
|
|
|
|
Backend: defaultBackend,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-04 01:53:01 +00:00
|
|
|
// mocks the resolver for authTLS
|
|
|
|
type mockSecret struct {
|
|
|
|
resolver.Mock
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetAuthCertificate from mockSecret mocks the GetAuthCertificate for authTLS
|
|
|
|
func (m mockSecret) GetAuthCertificate(name string) (*resolver.AuthSSLCert, error) {
|
|
|
|
if name != "default/demo-secret" {
|
|
|
|
return nil, errors.Errorf("there is no secret with name %v", name)
|
|
|
|
}
|
|
|
|
|
|
|
|
return &resolver.AuthSSLCert{
|
|
|
|
Secret: "default/demo-secret",
|
|
|
|
CAFileName: "/ssl/ca.crt",
|
2019-08-13 21:14:55 +00:00
|
|
|
CASHA: "abc",
|
2019-02-04 01:53:01 +00:00
|
|
|
}, nil
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-05-16 20:29:33 +00:00
|
|
|
func TestAnnotations(t *testing.T) {
|
|
|
|
ing := buildIngress()
|
|
|
|
data := map[string]string{}
|
2019-02-04 01:53:01 +00:00
|
|
|
|
2023-07-22 03:32:07 +00:00
|
|
|
data[parser.GetAnnotationWithPrefix(annotationAuthTLSSecret)] = "default/demo-secret"
|
2019-02-04 01:53:01 +00:00
|
|
|
|
2016-05-16 20:29:33 +00:00
|
|
|
ing.SetAnnotations(data)
|
2019-02-04 01:53:01 +00:00
|
|
|
|
|
|
|
fakeSecret := &mockSecret{}
|
|
|
|
i, err := NewParser(fakeSecret).Parse(ing)
|
|
|
|
if err != nil {
|
2020-11-27 17:26:53 +00:00
|
|
|
t.Errorf("Unexpected error with ingress: %v", err)
|
2019-02-04 01:53:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
u, ok := i.(*Config)
|
|
|
|
if !ok {
|
|
|
|
t.Errorf("expected *Config but got %v", u)
|
|
|
|
}
|
|
|
|
|
|
|
|
secret, err := fakeSecret.GetAuthCertificate("default/demo-secret")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("unexpected error getting secret %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if u.AuthSSLCert.Secret != secret.Secret {
|
|
|
|
t.Errorf("expected %v but got %v", secret.Secret, u.AuthSSLCert.Secret)
|
|
|
|
}
|
Additional AuthTLS assertions and doc change to demonstrate auth-tls-secret enables the other AuthTLS annotations (#7202)
* Fix indentation of nested list in AuthTLS annotations
Also, put `<annotation>`: <description text>` on a single line in
Markdown markup, which will match what gets rendered eventually.
On the other hand, for the line on auth-tls-secret (This annotation
expects the Secret name in the form "namespace/secretName"), its
Markdown markup suggests that the author wanted the line to start on its
own line, but currently this gets rendered on the same line. It's nice
for this to be on its own line, since it's kind of a "note" about the
annotation syntax. Format/indent the markup appropriately so that it
shows up on its line.
* Fix indentation of nested list in CORS annotations
Also, put `<annotation>`: <description text>` on a single line in
Markdown markup, which will match what gets rendered eventually.
On the other hand, for lines noting the allowed characters (This is a
multi-valued field...), its Markdown markup suggests that the author
wanted the line to start on its own line, but currently this gets
rendered on the same line. It's nice for this to be on its own line,
since it's kind of a "note" about the annotation syntax. Format/indent
the markup appropriately so that it shows up on its line.
* Replace f.HTTPTestClientWithTLSConfig() in AuthTLS E2E, the odd one out for requests without client certs
* Demonstrate and document that auth-tls-secret enables the other AuthTLS annotations like verify client, depth
* Split E2E for auth-tls-error-page and *-pass-certificate-to-upstream
2021-09-07 17:35:16 +00:00
|
|
|
if u.VerifyClient != "on" {
|
|
|
|
t.Errorf("expected %v but got %v", "on", u.VerifyClient)
|
2019-02-04 01:53:01 +00:00
|
|
|
}
|
|
|
|
if u.ValidationDepth != 1 {
|
|
|
|
t.Errorf("expected %v but got %v", 1, u.ValidationDepth)
|
|
|
|
}
|
Additional AuthTLS assertions and doc change to demonstrate auth-tls-secret enables the other AuthTLS annotations (#7202)
* Fix indentation of nested list in AuthTLS annotations
Also, put `<annotation>`: <description text>` on a single line in
Markdown markup, which will match what gets rendered eventually.
On the other hand, for the line on auth-tls-secret (This annotation
expects the Secret name in the form "namespace/secretName"), its
Markdown markup suggests that the author wanted the line to start on its
own line, but currently this gets rendered on the same line. It's nice
for this to be on its own line, since it's kind of a "note" about the
annotation syntax. Format/indent the markup appropriately so that it
shows up on its line.
* Fix indentation of nested list in CORS annotations
Also, put `<annotation>`: <description text>` on a single line in
Markdown markup, which will match what gets rendered eventually.
On the other hand, for lines noting the allowed characters (This is a
multi-valued field...), its Markdown markup suggests that the author
wanted the line to start on its own line, but currently this gets
rendered on the same line. It's nice for this to be on its own line,
since it's kind of a "note" about the annotation syntax. Format/indent
the markup appropriately so that it shows up on its line.
* Replace f.HTTPTestClientWithTLSConfig() in AuthTLS E2E, the odd one out for requests without client certs
* Demonstrate and document that auth-tls-secret enables the other AuthTLS annotations like verify client, depth
* Split E2E for auth-tls-error-page and *-pass-certificate-to-upstream
2021-09-07 17:35:16 +00:00
|
|
|
if u.ErrorPage != "" {
|
|
|
|
t.Errorf("expected %v but got %v", "", u.ErrorPage)
|
|
|
|
}
|
|
|
|
if u.PassCertToUpstream != false {
|
|
|
|
t.Errorf("expected %v but got %v", false, u.PassCertToUpstream)
|
|
|
|
}
|
2022-04-15 19:59:10 +00:00
|
|
|
if u.MatchCN != "" {
|
|
|
|
t.Errorf("expected empty string, but got %v", u.MatchCN)
|
|
|
|
}
|
Additional AuthTLS assertions and doc change to demonstrate auth-tls-secret enables the other AuthTLS annotations (#7202)
* Fix indentation of nested list in AuthTLS annotations
Also, put `<annotation>`: <description text>` on a single line in
Markdown markup, which will match what gets rendered eventually.
On the other hand, for the line on auth-tls-secret (This annotation
expects the Secret name in the form "namespace/secretName"), its
Markdown markup suggests that the author wanted the line to start on its
own line, but currently this gets rendered on the same line. It's nice
for this to be on its own line, since it's kind of a "note" about the
annotation syntax. Format/indent the markup appropriately so that it
shows up on its line.
* Fix indentation of nested list in CORS annotations
Also, put `<annotation>`: <description text>` on a single line in
Markdown markup, which will match what gets rendered eventually.
On the other hand, for lines noting the allowed characters (This is a
multi-valued field...), its Markdown markup suggests that the author
wanted the line to start on its own line, but currently this gets
rendered on the same line. It's nice for this to be on its own line,
since it's kind of a "note" about the annotation syntax. Format/indent
the markup appropriately so that it shows up on its line.
* Replace f.HTTPTestClientWithTLSConfig() in AuthTLS E2E, the odd one out for requests without client certs
* Demonstrate and document that auth-tls-secret enables the other AuthTLS annotations like verify client, depth
* Split E2E for auth-tls-error-page and *-pass-certificate-to-upstream
2021-09-07 17:35:16 +00:00
|
|
|
|
2023-07-22 03:32:07 +00:00
|
|
|
data[parser.GetAnnotationWithPrefix(annotationAuthTLSVerifyClient)] = "off"
|
|
|
|
data[parser.GetAnnotationWithPrefix(annotationAuthTLSVerifyDepth)] = "2"
|
|
|
|
data[parser.GetAnnotationWithPrefix(annotationAuthTLSErrorPage)] = "ok.com/error"
|
|
|
|
data[parser.GetAnnotationWithPrefix(annotationAuthTLSPassCertToUpstream)] = "true"
|
|
|
|
data[parser.GetAnnotationWithPrefix(annotationAuthTLSMatchCN)] = "CN=(hello-app|ok|goodbye)"
|
Additional AuthTLS assertions and doc change to demonstrate auth-tls-secret enables the other AuthTLS annotations (#7202)
* Fix indentation of nested list in AuthTLS annotations
Also, put `<annotation>`: <description text>` on a single line in
Markdown markup, which will match what gets rendered eventually.
On the other hand, for the line on auth-tls-secret (This annotation
expects the Secret name in the form "namespace/secretName"), its
Markdown markup suggests that the author wanted the line to start on its
own line, but currently this gets rendered on the same line. It's nice
for this to be on its own line, since it's kind of a "note" about the
annotation syntax. Format/indent the markup appropriately so that it
shows up on its line.
* Fix indentation of nested list in CORS annotations
Also, put `<annotation>`: <description text>` on a single line in
Markdown markup, which will match what gets rendered eventually.
On the other hand, for lines noting the allowed characters (This is a
multi-valued field...), its Markdown markup suggests that the author
wanted the line to start on its own line, but currently this gets
rendered on the same line. It's nice for this to be on its own line,
since it's kind of a "note" about the annotation syntax. Format/indent
the markup appropriately so that it shows up on its line.
* Replace f.HTTPTestClientWithTLSConfig() in AuthTLS E2E, the odd one out for requests without client certs
* Demonstrate and document that auth-tls-secret enables the other AuthTLS annotations like verify client, depth
* Split E2E for auth-tls-error-page and *-pass-certificate-to-upstream
2021-09-07 17:35:16 +00:00
|
|
|
|
|
|
|
ing.SetAnnotations(data)
|
|
|
|
|
|
|
|
i, err = NewParser(fakeSecret).Parse(ing)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error with ingress: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
u, ok = i.(*Config)
|
|
|
|
if !ok {
|
|
|
|
t.Errorf("expected *Config but got %v", u)
|
|
|
|
}
|
|
|
|
|
|
|
|
if u.AuthSSLCert.Secret != secret.Secret {
|
|
|
|
t.Errorf("expected %v but got %v", secret.Secret, u.AuthSSLCert.Secret)
|
|
|
|
}
|
|
|
|
if u.VerifyClient != "off" {
|
|
|
|
t.Errorf("expected %v but got %v", "off", u.VerifyClient)
|
|
|
|
}
|
|
|
|
if u.ValidationDepth != 2 {
|
|
|
|
t.Errorf("expected %v but got %v", 2, u.ValidationDepth)
|
|
|
|
}
|
2019-02-04 01:53:01 +00:00
|
|
|
if u.ErrorPage != "ok.com/error" {
|
|
|
|
t.Errorf("expected %v but got %v", "ok.com/error", u.ErrorPage)
|
|
|
|
}
|
|
|
|
if u.PassCertToUpstream != true {
|
|
|
|
t.Errorf("expected %v but got %v", true, u.PassCertToUpstream)
|
|
|
|
}
|
2023-07-22 03:32:07 +00:00
|
|
|
if u.MatchCN != "CN=(hello-app|ok|goodbye)" {
|
|
|
|
t.Errorf("expected %v but got %v", "CN=(hello-app|ok|goodbye)", u.MatchCN)
|
2022-04-15 19:59:10 +00:00
|
|
|
}
|
2016-05-16 20:29:33 +00:00
|
|
|
}
|
2019-06-21 17:46:07 +00:00
|
|
|
|
|
|
|
func TestInvalidAnnotations(t *testing.T) {
|
|
|
|
ing := buildIngress()
|
|
|
|
fakeSecret := &mockSecret{}
|
|
|
|
data := map[string]string{}
|
|
|
|
|
|
|
|
// No annotation
|
|
|
|
_, err := NewParser(fakeSecret).Parse(ing)
|
|
|
|
if err == nil {
|
|
|
|
t.Errorf("Expected error with ingress but got nil")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Invalid NameSpace
|
2023-07-22 03:32:07 +00:00
|
|
|
data[parser.GetAnnotationWithPrefix(annotationAuthTLSSecret)] = "demo-secret"
|
2019-06-21 17:46:07 +00:00
|
|
|
ing.SetAnnotations(data)
|
|
|
|
_, err = NewParser(fakeSecret).Parse(ing)
|
|
|
|
if err == nil {
|
|
|
|
t.Errorf("Expected error with ingress but got nil")
|
|
|
|
}
|
|
|
|
|
2023-07-22 03:32:07 +00:00
|
|
|
// Invalid Cross NameSpace
|
|
|
|
data[parser.GetAnnotationWithPrefix(annotationAuthTLSSecret)] = "nondefault/demo-secret"
|
|
|
|
ing.SetAnnotations(data)
|
|
|
|
_, err = NewParser(fakeSecret).Parse(ing)
|
|
|
|
expErr := errors.NewLocationDenied("cross namespace secrets are not supported")
|
|
|
|
if err.Error() != expErr.Error() {
|
|
|
|
t.Errorf("received error is different from cross namespace error: %s Expected %s", err, expErr)
|
|
|
|
}
|
|
|
|
|
2019-06-21 17:46:07 +00:00
|
|
|
// Invalid Auth Certificate
|
2023-07-22 03:32:07 +00:00
|
|
|
data[parser.GetAnnotationWithPrefix(annotationAuthTLSSecret)] = "default/invalid-demo-secret"
|
2019-06-21 17:46:07 +00:00
|
|
|
ing.SetAnnotations(data)
|
|
|
|
_, err = NewParser(fakeSecret).Parse(ing)
|
|
|
|
if err == nil {
|
|
|
|
t.Errorf("Expected error with ingress but got nil")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Invalid optional Annotations
|
2023-07-22 03:32:07 +00:00
|
|
|
data[parser.GetAnnotationWithPrefix(annotationAuthTLSSecret)] = "default/demo-secret"
|
|
|
|
|
|
|
|
data[parser.GetAnnotationWithPrefix(annotationAuthTLSVerifyClient)] = "w00t"
|
|
|
|
ing.SetAnnotations(data)
|
|
|
|
_, err = NewParser(fakeSecret).Parse(ing)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Error should be nil and verify client should be defaulted")
|
|
|
|
}
|
|
|
|
|
|
|
|
data[parser.GetAnnotationWithPrefix(annotationAuthTLSVerifyDepth)] = "abcd"
|
|
|
|
ing.SetAnnotations(data)
|
|
|
|
_, err = NewParser(fakeSecret).Parse(ing)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Error should be nil and verify depth should be defaulted")
|
|
|
|
}
|
|
|
|
|
|
|
|
data[parser.GetAnnotationWithPrefix(annotationAuthTLSPassCertToUpstream)] = "nahh"
|
|
|
|
ing.SetAnnotations(data)
|
|
|
|
_, err = NewParser(fakeSecret).Parse(ing)
|
|
|
|
if err == nil {
|
|
|
|
t.Errorf("Expected error with ingress but got nil")
|
|
|
|
}
|
|
|
|
delete(data, parser.GetAnnotationWithPrefix(annotationAuthTLSPassCertToUpstream))
|
|
|
|
|
|
|
|
data[parser.GetAnnotationWithPrefix(annotationAuthTLSMatchCN)] = "<script>nope</script>"
|
|
|
|
ing.SetAnnotations(data)
|
|
|
|
_, err = NewParser(fakeSecret).Parse(ing)
|
|
|
|
if err == nil {
|
|
|
|
t.Errorf("Expected error with ingress CN but got nil")
|
|
|
|
}
|
|
|
|
delete(data, parser.GetAnnotationWithPrefix(annotationAuthTLSMatchCN))
|
|
|
|
|
2019-06-21 17:46:07 +00:00
|
|
|
ing.SetAnnotations(data)
|
|
|
|
|
|
|
|
i, err := NewParser(fakeSecret).Parse(ing)
|
|
|
|
if err != nil {
|
2020-11-27 17:26:53 +00:00
|
|
|
t.Errorf("Unexpected error with ingress: %v", err)
|
2019-06-21 17:46:07 +00:00
|
|
|
}
|
|
|
|
u, ok := i.(*Config)
|
|
|
|
if !ok {
|
|
|
|
t.Errorf("expected *Config but got %v", u)
|
|
|
|
}
|
|
|
|
|
|
|
|
if u.VerifyClient != "on" {
|
|
|
|
t.Errorf("expected %v but got %v", "on", u.VerifyClient)
|
|
|
|
}
|
|
|
|
if u.ValidationDepth != 1 {
|
|
|
|
t.Errorf("expected %v but got %v", 1, u.ValidationDepth)
|
|
|
|
}
|
|
|
|
if u.PassCertToUpstream != false {
|
|
|
|
t.Errorf("expected %v but got %v", false, u.PassCertToUpstream)
|
|
|
|
}
|
2022-04-15 19:59:10 +00:00
|
|
|
if u.MatchCN != "" {
|
|
|
|
t.Errorf("expected empty string but got %v", u.MatchCN)
|
|
|
|
}
|
2019-06-21 17:46:07 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestEquals(t *testing.T) {
|
|
|
|
cfg1 := &Config{}
|
|
|
|
cfg2 := &Config{}
|
|
|
|
|
|
|
|
// Same config
|
|
|
|
result := cfg1.Equal(cfg1)
|
|
|
|
if result != true {
|
|
|
|
t.Errorf("Expected true")
|
|
|
|
}
|
|
|
|
|
|
|
|
// compare nil
|
|
|
|
result = cfg1.Equal(nil)
|
|
|
|
if result != false {
|
|
|
|
t.Errorf("Expected false")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Different Certs
|
|
|
|
sslCert1 := resolver.AuthSSLCert{
|
|
|
|
Secret: "default/demo-secret",
|
|
|
|
CAFileName: "/ssl/ca.crt",
|
2019-08-13 21:14:55 +00:00
|
|
|
CASHA: "abc",
|
2019-06-21 17:46:07 +00:00
|
|
|
}
|
|
|
|
sslCert2 := resolver.AuthSSLCert{
|
|
|
|
Secret: "default/other-demo-secret",
|
|
|
|
CAFileName: "/ssl/ca.crt",
|
2019-08-13 21:14:55 +00:00
|
|
|
CASHA: "abc",
|
2019-06-21 17:46:07 +00:00
|
|
|
}
|
|
|
|
cfg1.AuthSSLCert = sslCert1
|
|
|
|
cfg2.AuthSSLCert = sslCert2
|
|
|
|
result = cfg1.Equal(cfg2)
|
|
|
|
if result != false {
|
|
|
|
t.Errorf("Expected false")
|
|
|
|
}
|
|
|
|
cfg2.AuthSSLCert = sslCert1
|
|
|
|
|
|
|
|
// Different Verify Client
|
|
|
|
cfg1.VerifyClient = "on"
|
|
|
|
cfg2.VerifyClient = "off"
|
|
|
|
result = cfg1.Equal(cfg2)
|
|
|
|
if result != false {
|
|
|
|
t.Errorf("Expected false")
|
|
|
|
}
|
|
|
|
cfg2.VerifyClient = "on"
|
|
|
|
|
|
|
|
// Different Validation Depth
|
|
|
|
cfg1.ValidationDepth = 1
|
|
|
|
cfg2.ValidationDepth = 2
|
|
|
|
result = cfg1.Equal(cfg2)
|
|
|
|
if result != false {
|
|
|
|
t.Errorf("Expected false")
|
|
|
|
}
|
|
|
|
cfg2.ValidationDepth = 1
|
|
|
|
|
|
|
|
// Different Error Page
|
|
|
|
cfg1.ErrorPage = "error-1"
|
|
|
|
cfg2.ErrorPage = "error-2"
|
|
|
|
result = cfg1.Equal(cfg2)
|
|
|
|
if result != false {
|
|
|
|
t.Errorf("Expected false")
|
|
|
|
}
|
|
|
|
cfg2.ErrorPage = "error-1"
|
|
|
|
|
|
|
|
// Different Pass to Upstream
|
|
|
|
cfg1.PassCertToUpstream = true
|
|
|
|
cfg2.PassCertToUpstream = false
|
|
|
|
result = cfg1.Equal(cfg2)
|
|
|
|
if result != false {
|
|
|
|
t.Errorf("Expected false")
|
|
|
|
}
|
|
|
|
cfg2.PassCertToUpstream = true
|
|
|
|
|
|
|
|
// Equal Configs
|
|
|
|
result = cfg1.Equal(cfg2)
|
|
|
|
if result != true {
|
|
|
|
t.Errorf("Expected true")
|
|
|
|
}
|
|
|
|
}
|