blob: e1e86ca309e846aa48328f9bfcc3882c99324009 [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.ignite.springframework.boot.autoconfigure;
import org.apache.ignite.springdata22.repository.config.EnableIgniteRepositories;
import org.apache.ignite.springframework.boot.autoconfigure.misc.DefaultTestConfigutation;
import org.apache.ignite.springframework.boot.autoconfigure.misc.ObjectRepository;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.springframework.boot.autoconfigure.AutoConfigurationPackage;
import org.springframework.boot.autoconfigure.AutoConfigurations;
import org.springframework.boot.test.context.runner.ApplicationContextRunner;
import org.springframework.test.context.junit.jupiter.SpringExtension;
import static org.assertj.core.api.Assertions.assertThat;
/** Tests {@link IgniteRepositoryAutoConfiguration} feature. */
@ExtendWith(SpringExtension.class)
public class IgniteRepositoriesAutoconfigureTest {
/** Spring test application context. */
private final ApplicationContextRunner contextRunner = new ApplicationContextRunner()
.withUserConfiguration(DefaultTestConfigutation.class)
.withConfiguration(AutoConfigurations.of(IgniteAutoConfiguration.class, IgniteRepositoryAutoConfiguration.class));
/** Test default autoconfiguration */
@Test
public void testDefaultConfiguration() {
contextRunner.withUserConfiguration(TestConfiguration.class).run((context) -> {
assertThat(context).hasSingleBean(ObjectRepository.class);
});
}
/** Test configuration with @EnableIgniteRepositories */
@Test
public void testOverrideConfiguration() {
contextRunner.withUserConfiguration(OverrideConfiguration.class).run((context) -> {
assertThat(context).hasSingleBean(ObjectRepository.class);
});
}
/** Test configuration with @EnableIgniteRepositories and invalid base package */
@Test
public void testInvalidBasePackage() {
contextRunner.withUserConfiguration(InvalidConfiguration.class).run((context) -> {
assertThat(context).doesNotHaveBean(ObjectRepository.class);
});
}
/** */
@AutoConfigurationPackage
protected static class TestConfiguration {
}
/** */
@EnableIgniteRepositories
protected static class OverrideConfiguration {
}
/** */
@EnableIgniteRepositories(basePackages = "wrong.package")
protected static class InvalidConfiguration {
}
}