Skip to content

Commit

Permalink
Merge branch '3.0.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanjbaxter committed Dec 29, 2023
2 parents eda567b + 883ef63 commit 3fded03
Show file tree
Hide file tree
Showing 2 changed files with 69 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
/*
* Copyright 2013-2023 the original author or 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
*
* https://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 org.springframework.cloud.kubernetes.commons.loadbalancer;

import org.junit.jupiter.api.Test;

import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.boot.test.context.runner.ApplicationContextRunner;
import org.springframework.context.annotation.Configuration;

import static org.assertj.core.api.Assertions.assertThat;

/**
* @author wind57
*/
class KubernetesLoadBalancerPropertiesTests {

@Test
void testBindingWhenNoPropertiesProvided() {
new ApplicationContextRunner().withUserConfiguration(KubernetesLoadBalancerPropertiesTests.Config.class)
.run(context -> {
KubernetesLoadBalancerProperties props = context.getBean(KubernetesLoadBalancerProperties.class);
assertThat(props).isNotNull();
assertThat(props.getEnabled()).isTrue();
assertThat(props.getMode()).isEqualTo(KubernetesLoadBalancerMode.POD);
assertThat(props.getClusterDomain()).isEqualTo("cluster.local");
assertThat(props.getPortName()).isEqualTo("http");
});
}

@Test
void testBindingWhenSomePropertiesProvided() {
new ApplicationContextRunner().withUserConfiguration(KubernetesLoadBalancerPropertiesTests.Config.class)
.withPropertyValues("spring.cloud.kubernetes.loadbalancer.enabled=false",
"spring.cloud.kubernetes.loadbalancer.mode=SERVICE",
"spring.cloud.kubernetes.loadbalancer.clusterDomain=clusterDomain",
"spring.cloud.kubernetes.loadbalancer.portName=portName")
.run(context -> {
KubernetesLoadBalancerProperties props = context.getBean(KubernetesLoadBalancerProperties.class);
assertThat(props).isNotNull();
assertThat(props.getEnabled()).isFalse();
assertThat(props.getMode()).isEqualTo(KubernetesLoadBalancerMode.SERVICE);
assertThat(props.getClusterDomain()).isEqualTo("clusterDomain");
assertThat(props.getPortName()).isEqualTo("portName");
});
}

@Configuration
@EnableConfigurationProperties(KubernetesLoadBalancerProperties.class)
static class Config {

}

}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2013-2020 the original author or authors.
* Copyright 2013-2023 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down

0 comments on commit 3fded03

Please sign in to comment.