/spring-data-mongodb/src/test/java/org/springframework/data/mongodb/repository/query/MongoParametersParameterAccessorUnitTests.java

https://gitlab.com/javajamesb08/spring-data-mongodb · Java · 107 lines · 59 code · 21 blank · 27 comment · 0 complexity · e86357569444fd0982b7eed181b3ab4d MD5 · raw file

  1. /*
  2. * Copyright 2011-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.query;
  17. import static org.hamcrest.CoreMatchers.*;
  18. import static org.junit.Assert.*;
  19. import java.lang.reflect.Method;
  20. import java.util.List;
  21. import org.hamcrest.core.IsNull;
  22. import org.junit.Test;
  23. import org.springframework.data.geo.Distance;
  24. import org.springframework.data.geo.Metrics;
  25. import org.springframework.data.geo.Point;
  26. import org.springframework.data.mongodb.core.mapping.MongoMappingContext;
  27. import org.springframework.data.mongodb.core.query.TextCriteria;
  28. import org.springframework.data.mongodb.repository.Person;
  29. import org.springframework.data.repository.Repository;
  30. import org.springframework.data.repository.core.RepositoryMetadata;
  31. import org.springframework.data.repository.core.support.DefaultRepositoryMetadata;
  32. /**
  33. * Unit tests for {@link MongoParametersParameterAccessor}.
  34. *
  35. * @author Oliver Gierke
  36. * @author Christoph Strobl
  37. */
  38. public class MongoParametersParameterAccessorUnitTests {
  39. private static final Distance DISTANCE = new Distance(2.5, Metrics.KILOMETERS);
  40. private static final RepositoryMetadata metadata = new DefaultRepositoryMetadata(PersonRepository.class);
  41. private static final MongoMappingContext context = new MongoMappingContext();
  42. @Test
  43. public void returnsNullForDistanceIfNoneAvailable() throws NoSuchMethodException, SecurityException {
  44. Method method = PersonRepository.class.getMethod("findByLocationNear", Point.class);
  45. MongoQueryMethod queryMethod = new MongoQueryMethod(method, metadata, context);
  46. MongoParameterAccessor accessor = new MongoParametersParameterAccessor(queryMethod,
  47. new Object[] { new Point(10, 20) });
  48. assertThat(accessor.getMaxDistance(), is(nullValue()));
  49. }
  50. @Test
  51. public void returnsDistanceIfAvailable() throws NoSuchMethodException, SecurityException {
  52. Method method = PersonRepository.class.getMethod("findByLocationNear", Point.class, Distance.class);
  53. MongoQueryMethod queryMethod = new MongoQueryMethod(method, metadata, context);
  54. MongoParameterAccessor accessor = new MongoParametersParameterAccessor(queryMethod, new Object[] {
  55. new Point(10, 20), DISTANCE });
  56. assertThat(accessor.getMaxDistance(), is(DISTANCE));
  57. }
  58. /**
  59. * @see DATAMONGO-973
  60. */
  61. @Test
  62. public void shouldReturnAsFullTextStringWhenNoneDefinedForMethod() throws NoSuchMethodException, SecurityException {
  63. Method method = PersonRepository.class.getMethod("findByLocationNear", Point.class, Distance.class);
  64. MongoQueryMethod queryMethod = new MongoQueryMethod(method, metadata, context);
  65. MongoParameterAccessor accessor = new MongoParametersParameterAccessor(queryMethod, new Object[] {
  66. new Point(10, 20), DISTANCE });
  67. assertThat(accessor.getFullText(), IsNull.nullValue());
  68. }
  69. /**
  70. * @see DATAMONGO-973
  71. */
  72. @Test
  73. public void shouldProperlyConvertTextCriteria() throws NoSuchMethodException, SecurityException {
  74. Method method = PersonRepository.class.getMethod("findByFirstname", String.class, TextCriteria.class);
  75. MongoQueryMethod queryMethod = new MongoQueryMethod(method, metadata, context);
  76. MongoParameterAccessor accessor = new MongoParametersParameterAccessor(queryMethod, new Object[] { "spring",
  77. TextCriteria.forDefaultLanguage().matching("data") });
  78. assertThat(accessor.getFullText().getCriteriaObject().toString(),
  79. equalTo("{ \"$text\" : { \"$search\" : \"data\"}}"));
  80. }
  81. interface PersonRepository extends Repository<Person, Long> {
  82. List<Person> findByLocationNear(Point point);
  83. List<Person> findByLocationNear(Point point, Distance distance);
  84. List<Person> findByFirstname(String firstname, TextCriteria fullText);
  85. }
  86. }