blob: 02e9f648153e0308f0aa18b2d15282c5fb829c32 [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 org.apache.camel.component.jgroups.springboot.cluster;
import org.apache.camel.component.jgroups.cluster.JGroupsLockClusterService;
import org.junit.jupiter.api.Test;
import org.springframework.boot.autoconfigure.AutoConfigurations;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.test.context.runner.ApplicationContextRunner;
import org.springframework.context.annotation.Configuration;
import static org.assertj.core.api.Assertions.assertThat;
public class JGroupsLockClusterServiceAutoConfigurationTest {
@Test
public void testDisable() {
new ApplicationContextRunner()
.withConfiguration(AutoConfigurations.of(JGroupsLockClusterServiceAutoConfiguration.class))
.withUserConfiguration(TestConfiguration.class)
.withPropertyValues(
"spring.main.banner-mode=off",
"camel.cluster.jgroups.enabled=false")
.run(
context -> {
assertThat(context).doesNotHaveBean(JGroupsLockClusterService.class);
});
}
/**
* Testing that the service can be enabled and configured completely.
*/
@Test
public void testPropertiesMapped() {
new ApplicationContextRunner()
.withConfiguration(AutoConfigurations.of(JGroupsLockClusterServiceAutoConfiguration.class))
.withUserConfiguration(TestConfiguration.class)
.withPropertyValues(
"spring.main.banner-mode=off",
"camel.cluster.jgroups.id=myid1")
.run(
context -> {
final JGroupsLockClusterService clusterService = context.getBean(JGroupsLockClusterService.class);
assertThat(clusterService.getId()).isEqualTo("myid1");
});
}
@EnableAutoConfiguration
@Configuration
public static class TestConfiguration {
}
}