blob: 9c706e85bf897e1ecc403affa87aed0eadbb7c30 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 v1beta1
import (
"github.com/stretchr/testify/assert"
ctrl "sigs.k8s.io/controller-runtime"
"testing"
)
func TestDeprecatedAdditionalDomains(t *testing.T) {
ext := &ExternalAddressability{}
logger := ctrl.Log
assert.False(t, ext.withDefaults(false, logger), "withDefaults() returned true when nothing should have been changed (no additional domains in either field)")
ext.AdditionalDomainNames = []string{"t1", "t2"}
assert.False(t, ext.withDefaults(false, logger), "withDefaults() returned true when nothing should have been changed (no additional domains in the deprecated field)")
ext.AdditionalDomains = nil
assert.False(t, ext.withDefaults(false, logger), "withDefaults() returned true when nothing should have been changed (no additional domains in the deprecated field)")
ext.AdditionalDomains = []string{}
assert.True(t, ext.withDefaults(false, logger), "withDefaults() returned false when the additionalDomains field needs to be removed")
assert.ElementsMatch(t, []string{"t1", "t2"}, ext.AdditionalDomainNames, "There are no values from additionalDomains to append to additionalDomainNames")
assert.Nil(t, ext.AdditionalDomains, "The additionalDomains field was not set to nil")
ext.AdditionalDomains = []string{"t1", "t2"}
assert.True(t, ext.withDefaults(false, logger), "withDefaults() returned false when the additionalDomains field needs to be removed")
assert.ElementsMatch(t, []string{"t1", "t2"}, ext.AdditionalDomainNames, "The values are the same between additionalDomains and additionalDomainNames, so nothing should be changed in additionalDomainNames")
assert.Nil(t, ext.AdditionalDomains, "The additionalDomains field was not set to nil")
ext.AdditionalDomains = []string{"t1", "t2", "t3"}
assert.True(t, ext.withDefaults(false, logger), "withDefaults() returned false when the additionalDomains field needs to be removed")
assert.ElementsMatch(t, []string{"t1", "t2", "t3"}, ext.AdditionalDomainNames, "The unique values from additionalDomains were not appended to additionalDomainNames")
assert.Nil(t, ext.AdditionalDomains, "The additionalDomains field was not set to nil")
ext.AdditionalDomains = []string{"t1", "t3"}
assert.True(t, ext.withDefaults(false, logger), "withDefaults() returned false when the additionalDomains field needs to be removed")
assert.ElementsMatch(t, []string{"t1", "t2", "t3"}, ext.AdditionalDomainNames, "The unique values from additionalDomains were not appended to additionalDomainNames")
assert.Nil(t, ext.AdditionalDomains, "The additionalDomains field was not set to nil")
ext.AdditionalDomains = []string{"t3"}
assert.True(t, ext.withDefaults(false, logger), "withDefaults() returned false when the additionalDomains field needs to be removed")
assert.ElementsMatch(t, []string{"t1", "t2", "t3"}, ext.AdditionalDomainNames, "The unique values from additionalDomains were not appended to additionalDomainNames")
assert.Nil(t, ext.AdditionalDomains, "The additionalDomains field was not set to nil")
ext.AdditionalDomains = []string{"t4", "t1", "t2", "t3"}
assert.True(t, ext.withDefaults(false, logger), "withDefaults() returned false when the additionalDomains field needs to be removed")
assert.ElementsMatch(t, []string{"t1", "t2", "t4", "t3"}, ext.AdditionalDomainNames, "The unique values from additionalDomains were not appended to additionalDomainNames")
assert.Nil(t, ext.AdditionalDomains, "The additionalDomains field was not set to nil")
ext.AdditionalDomainNames = nil
ext.AdditionalDomains = []string{"t4", "t1", "t2", "t3"}
assert.True(t, ext.withDefaults(false, logger), "withDefaults() returned false when the additionalDomains field needs to be removed")
assert.ElementsMatch(t, []string{"t4", "t1", "t2", "t3"}, ext.AdditionalDomainNames, "The unique values from additionalDomains were not appended to additionalDomainNames")
assert.Nil(t, ext.AdditionalDomains, "The additionalDomains field was not set to nil")
ext.AdditionalDomainNames = []string{}
ext.AdditionalDomains = []string{"t4", "t1", "t2", "t3"}
assert.True(t, ext.withDefaults(false, logger), "withDefaults() returned false when the additionalDomains field needs to be removed")
assert.ElementsMatch(t, []string{"t4", "t1", "t2", "t3"}, ext.AdditionalDomainNames, "The unique values from additionalDomains were not appended to additionalDomainNames")
assert.Nil(t, ext.AdditionalDomains, "The additionalDomains field was not set to nil")
}
func TestDeprecatedIngressTerminationTLSSecret(t *testing.T) {
ext := &ExternalAddressability{
Method: Ingress,
NodePortOverride: 80,
}
logger := ctrl.Log
assert.False(t, ext.withDefaults(false, logger), "withDefaults() returned true when nothing should have been changed (no termination in either field)")
ext.IngressTLSTerminationSecret = ""
assert.False(t, ext.withDefaults(false, logger), "withDefaults() returned true when nothing should have been changed (no termination in the deprecated field)")
ext.IngressTLSTermination = &SolrIngressTLSTermination{
TLSSecret: "test",
}
assert.False(t, ext.withDefaults(false, logger), "withDefaults() returned true when nothing should have been changed (no termination in the deprecated field)")
ext.IngressTLSTermination = &SolrIngressTLSTermination{
UseDefaultTLSSecret: true,
}
assert.False(t, ext.withDefaults(false, logger), "withDefaults() returned true when nothing should have been changed (no termination in the deprecated field)")
ext.IngressTLSTermination = &SolrIngressTLSTermination{
UseDefaultTLSSecret: false,
}
assert.False(t, ext.withDefaults(false, logger), "withDefaults() returned true when nothing should have been changed (no termination in the deprecated field)")
ext.IngressTLSTerminationSecret = "test2"
assert.True(t, ext.withDefaults(false, logger), "withDefaults() returned false when the additionalDomains field needs to be removed")
assert.Equal(t, "test2", ext.IngressTLSTermination.TLSSecret, "The value from ingressTLSTerminationSecret should have populated ingressTLSTermination.tlsSecret")
assert.Empty(t, ext.IngressTLSTerminationSecret, "The ingressTLSTerminationSecret field was not set to nil")
ext.IngressTLSTerminationSecret = "test2"
ext.IngressTLSTermination = &SolrIngressTLSTermination{
UseDefaultTLSSecret: true,
}
assert.True(t, ext.withDefaults(false, logger), "withDefaults() returned false when the additionalDomains field needs to be removed")
assert.Empty(t, ext.IngressTLSTermination.TLSSecret, "The value from ingressTLSTerminationSecret should not have populated ingressTLSTermination.tlsSecret, since useDefaultTLSSecret is set to true")
assert.Empty(t, ext.IngressTLSTerminationSecret, "The ingressTLSTerminationSecret field was not set to nil")
ext.IngressTLSTerminationSecret = "test2"
ext.IngressTLSTermination = &SolrIngressTLSTermination{
TLSSecret: "test",
}
assert.True(t, ext.withDefaults(false, logger), "withDefaults() returned false when the additionalDomains field needs to be removed")
assert.Equal(t, "test", ext.IngressTLSTermination.TLSSecret, "The value from ingressTLSTerminationSecret should not have populated ingressTLSTermination.tlsSecret, since the field is already set")
assert.Empty(t, ext.IngressTLSTerminationSecret, "The ingressTLSTerminationSecret field was not set to nil")
}