/spring-data-mongodb/src/test/java/org/springframework/data/mongodb/repository/config/MongoRepositoryConfigurationExtensionUnitTests.java

https://gitlab.com/javajamesb08/spring-data-mongodb · Java · 116 lines · 64 code · 22 blank · 30 comment · 4 complexity · 0d5fc4a9bb917cb71364f4e596baada9 MD5 · raw file

  1. /*
  2. * Copyright 2014 the original author or authors.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package org.springframework.data.mongodb.repository.config;
  17. import static org.junit.Assert.*;
  18. import java.util.Collection;
  19. import org.junit.Test;
  20. import org.springframework.core.env.Environment;
  21. import org.springframework.core.env.StandardEnvironment;
  22. import org.springframework.core.io.ResourceLoader;
  23. import org.springframework.core.io.support.PathMatchingResourcePatternResolver;
  24. import org.springframework.core.type.StandardAnnotationMetadata;
  25. import org.springframework.data.mongodb.core.mapping.Document;
  26. import org.springframework.data.mongodb.repository.MongoRepository;
  27. import org.springframework.data.repository.Repository;
  28. import org.springframework.data.repository.config.AnnotationRepositoryConfigurationSource;
  29. import org.springframework.data.repository.config.RepositoryConfiguration;
  30. import org.springframework.data.repository.config.RepositoryConfigurationSource;
  31. /**
  32. * Unit tests for {@link MongoRepositoryConfigurationExtension}.
  33. *
  34. * @author Oliver Gierke
  35. * @since 1.6
  36. */
  37. public class MongoRepositoryConfigurationExtensionUnitTests {
  38. StandardAnnotationMetadata metadata = new StandardAnnotationMetadata(Config.class, true);
  39. ResourceLoader loader = new PathMatchingResourcePatternResolver();
  40. Environment environment = new StandardEnvironment();
  41. RepositoryConfigurationSource configurationSource = new AnnotationRepositoryConfigurationSource(metadata,
  42. EnableMongoRepositories.class, loader, environment);
  43. /**
  44. * @see DATAMONGO-1009
  45. */
  46. @Test
  47. public void isStrictMatchIfDomainTypeIsAnnotatedWithDocument() {
  48. MongoRepositoryConfigurationExtension extension = new MongoRepositoryConfigurationExtension();
  49. assertHasRepo(SampleRepository.class, extension.getRepositoryConfigurations(configurationSource, loader, true));
  50. }
  51. /**
  52. * @see DATAMONGO-1009
  53. */
  54. @Test
  55. public void isStrictMatchIfRepositoryExtendsStoreSpecificBase() {
  56. MongoRepositoryConfigurationExtension extension = new MongoRepositoryConfigurationExtension();
  57. assertHasRepo(StoreRepository.class, extension.getRepositoryConfigurations(configurationSource, loader, true));
  58. }
  59. /**
  60. * @see DATAMONGO-1009
  61. */
  62. @Test
  63. public void isNotStrictMatchIfDomainTypeIsNotAnnotatedWithDocument() {
  64. MongoRepositoryConfigurationExtension extension = new MongoRepositoryConfigurationExtension();
  65. assertDoesNotHaveRepo(UnannotatedRepository.class,
  66. extension.getRepositoryConfigurations(configurationSource, loader, true));
  67. }
  68. private static void assertHasRepo(Class<?> repositoryInterface,
  69. Collection<RepositoryConfiguration<RepositoryConfigurationSource>> configs) {
  70. for (RepositoryConfiguration<?> config : configs) {
  71. if (config.getRepositoryInterface().equals(repositoryInterface.getName())) {
  72. return;
  73. }
  74. }
  75. fail("Expected to find config for repository interface ".concat(repositoryInterface.getName()).concat(" but got ")
  76. .concat(configs.toString()));
  77. }
  78. private static void assertDoesNotHaveRepo(Class<?> repositoryInterface,
  79. Collection<RepositoryConfiguration<RepositoryConfigurationSource>> configs) {
  80. for (RepositoryConfiguration<?> config : configs) {
  81. if (config.getRepositoryInterface().equals(repositoryInterface.getName())) {
  82. fail("Expected not to find config for repository interface ".concat(repositoryInterface.getName()));
  83. }
  84. }
  85. }
  86. @EnableMongoRepositories(considerNestedRepositories = true)
  87. static class Config {
  88. }
  89. @Document
  90. static class Sample {}
  91. interface SampleRepository extends Repository<Sample, Long> {}
  92. interface UnannotatedRepository extends Repository<Object, Long> {}
  93. interface StoreRepository extends MongoRepository<Object, Long> {}
  94. }