From 815cab0f1d8ea5df90217feb0525f489bc582b6b Mon Sep 17 00:00:00 2001 From: John Blum Date: Tue, 16 Feb 2021 15:23:43 -0800 Subject: [PATCH] Rename GemfireRepositoriesRegistrarIntegrationTest to GemfireRepositoriesRegistrarIntegrationTests. Enable GemFire Mock Objects. --- ...eRepositoriesRegistrarIntegrationTest.java | 73 ------------------- ...RepositoriesRegistrarIntegrationTests.java | 66 +++++++++++++++++ 2 files changed, 66 insertions(+), 73 deletions(-) delete mode 100644 spring-data-geode/src/test/java/org/springframework/data/gemfire/repository/config/GemfireRepositoriesRegistrarIntegrationTest.java create mode 100644 spring-data-geode/src/test/java/org/springframework/data/gemfire/repository/config/GemfireRepositoriesRegistrarIntegrationTests.java diff --git a/spring-data-geode/src/test/java/org/springframework/data/gemfire/repository/config/GemfireRepositoriesRegistrarIntegrationTest.java b/spring-data-geode/src/test/java/org/springframework/data/gemfire/repository/config/GemfireRepositoriesRegistrarIntegrationTest.java deleted file mode 100644 index c34cd7b3..00000000 --- a/spring-data-geode/src/test/java/org/springframework/data/gemfire/repository/config/GemfireRepositoriesRegistrarIntegrationTest.java +++ /dev/null @@ -1,73 +0,0 @@ -/* - /* - * Copyright 2012-2021 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.data.gemfire.repository.config; - -import org.apache.geode.cache.GemFireCache; -import org.apache.geode.cache.Region; - -import org.junit.Test; -import org.junit.runner.RunWith; - -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.ComponentScan; -import org.springframework.context.annotation.FilterType; -import org.springframework.data.gemfire.LocalRegionFactoryBean; -import org.springframework.data.gemfire.config.annotation.PeerCacheApplication; -import org.springframework.data.gemfire.repository.sample.Person; -import org.springframework.data.gemfire.repository.sample.PersonRepository; -import org.springframework.data.gemfire.test.GemfireTestApplicationContextInitializer; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; - -/** - * Integration test for {@link GemfireRepositoriesRegistrar} (annotation based - * repository configuration). - * - * @author Oliver Gierke - * @author John Blum - */ -@RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration(initializers=GemfireTestApplicationContextInitializer.class) -public class GemfireRepositoriesRegistrarIntegrationTest { - - @PeerCacheApplication - @EnableGemfireRepositories(value = "org.springframework.data.gemfire.repository.sample", - includeFilters = @ComponentScan.Filter(type = FilterType.ASSIGNABLE_TYPE, - value = org.springframework.data.gemfire.repository.sample.PersonRepository.class)) - static class Config { - - @Bean - public Region simple(GemFireCache gemfireCache) throws Exception { - - LocalRegionFactoryBean factory = new LocalRegionFactoryBean<>(); - - factory.setCache(gemfireCache); - factory.setName("simple"); - factory.afterPropertiesSet(); - - return factory.getObject(); - } - } - - @Autowired - PersonRepository repository; - - @Test - public void bootstrapsRepositoriesCorrectly() { - } -} diff --git a/spring-data-geode/src/test/java/org/springframework/data/gemfire/repository/config/GemfireRepositoriesRegistrarIntegrationTests.java b/spring-data-geode/src/test/java/org/springframework/data/gemfire/repository/config/GemfireRepositoriesRegistrarIntegrationTests.java new file mode 100644 index 00000000..9f2add5f --- /dev/null +++ b/spring-data-geode/src/test/java/org/springframework/data/gemfire/repository/config/GemfireRepositoriesRegistrarIntegrationTests.java @@ -0,0 +1,66 @@ +/* + /* + * Copyright 2012-2021 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.data.gemfire.repository.config; + +import static org.assertj.core.api.Assertions.assertThat; + +import org.junit.Test; +import org.junit.runner.RunWith; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.data.gemfire.config.annotation.ClientCacheApplication; +import org.springframework.data.gemfire.config.annotation.EnableEntityDefinedRegions; +import org.springframework.data.gemfire.test.mock.annotation.EnableGemFireMockObjects; +import org.springframework.test.context.ContextConfiguration; +import org.springframework.test.context.junit4.SpringRunner; + +import example.app.model.User; +import example.app.repo.UserRepository; + +/** + * Integration Tests for {@link GemfireRepositoriesRegistrar} + * + * This Integration Tests class tests and assert annotation-based Apache Geode Repository configuration. + * + * @author Oliver Gierke + * @author John Blum + * @see org.junit.Test + * @see org.springframework.data.gemfire.repository.config.GemfireRepositoriesRegistrar + * @see org.springframework.data.gemfire.test.mock.annotation.EnableGemFireMockObjects + * @see org.springframework.test.context.ContextConfiguration + * @see org.springframework.test.context.junit4.SpringRunner + */ +@RunWith(SpringRunner.class) +@ContextConfiguration +@SuppressWarnings("unused") +public class GemfireRepositoriesRegistrarIntegrationTests { + + @Autowired + private UserRepository repository; + + @Test + public void registersAndBootstrapsGemfireRepositoriesCorrectly() { + assertThat(this.repository).isNotNull(); + } + + @ClientCacheApplication(name = "GemfireRepositoriesRegistrarIntegrationTests") + @EnableGemFireMockObjects + @EnableEntityDefinedRegions(basePackageClasses = User.class) + @EnableGemfireRepositories(basePackageClasses = UserRepository.class) + static class TestGeodeConfiguration { } + +}