/spring-data-mongodb/src/test/java/org/springframework/data/mongodb/core/CountQueryUnitTests.java

http://github.com/SpringSource/spring-data-mongodb · Java · 163 lines · 104 code · 38 blank · 21 comment · 0 complexity · f26bc68966925ba272d2d2b0cf5a5b5b MD5 · raw file

  1. /*
  2. * Copyright 2019-2021 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. * https://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.core;
  17. import static org.mockito.Mockito.*;
  18. import static org.springframework.data.mongodb.core.query.Criteria.*;
  19. import static org.springframework.data.mongodb.core.query.Query.*;
  20. import static org.springframework.data.mongodb.test.util.Assertions.*;
  21. import org.junit.jupiter.api.BeforeEach;
  22. import org.junit.jupiter.api.Test;
  23. import org.springframework.data.geo.Point;
  24. import org.springframework.data.mongodb.MongoDatabaseFactory;
  25. import org.springframework.data.mongodb.core.convert.DefaultDbRefResolver;
  26. import org.springframework.data.mongodb.core.convert.MappingMongoConverter;
  27. import org.springframework.data.mongodb.core.convert.NoOpDbRefResolver;
  28. import org.springframework.data.mongodb.core.convert.QueryMapper;
  29. import org.springframework.data.mongodb.core.mapping.MongoMappingContext;
  30. import org.springframework.data.mongodb.core.mapping.MongoPersistentEntity;
  31. import org.springframework.data.mongodb.core.query.Criteria;
  32. import org.springframework.data.mongodb.core.query.Query;
  33. /**
  34. * Unit tests for {@link CountQuery}.
  35. *
  36. * @author Mark Paluch
  37. * @author Christoph Strobl
  38. */
  39. class CountQueryUnitTests {
  40. private QueryMapper mapper;
  41. private MongoMappingContext context;
  42. private MappingMongoConverter converter;
  43. @BeforeEach
  44. void setUp() {
  45. this.context = new MongoMappingContext();
  46. this.converter = new MappingMongoConverter(NoOpDbRefResolver.INSTANCE, context);
  47. this.converter.afterPropertiesSet();
  48. this.mapper = new QueryMapper(converter);
  49. }
  50. @Test // DATAMONGO-2059
  51. void nearToGeoWithinWithoutDistance() {
  52. Query source = query(where("location").near(new Point(-73.99171, 40.738868)));
  53. org.bson.Document target = postProcessQueryForCount(source);
  54. assertThat(target).isEqualTo(org.bson.Document
  55. .parse("{\"location\": {\"$geoWithin\": {\"$center\": [[-73.99171, 40.738868], 1.7976931348623157E308]}}}"));
  56. }
  57. @Test // DATAMONGO-2059
  58. void nearAndExisting$and() {
  59. Query source = query(where("location").near(new Point(-73.99171, 40.738868)).minDistance(0.01))
  60. .addCriteria(new Criteria().andOperator(where("foo").is("bar")));
  61. org.bson.Document target = postProcessQueryForCount(source);
  62. assertThat(target).isEqualTo(org.bson.Document.parse("{\"$and\":[" //
  63. + "{\"foo\":\"bar\"}" //
  64. + "{\"$nor\":[{\"location\":{\"$geoWithin\":{\"$center\":[ [ -73.99171, 40.738868 ], 0.01]}}}]},"//
  65. + " {\"location\":{\"$geoWithin\":{\"$center\":[ [ -73.99171, 40.738868 ], 1.7976931348623157E308]}}},"//
  66. + "]}"));
  67. }
  68. @Test // DATAMONGO-2059
  69. void nearSphereToGeoWithinWithoutDistance() {
  70. Query source = query(where("location").nearSphere(new Point(-73.99171, 40.738868)));
  71. org.bson.Document target = postProcessQueryForCount(source);
  72. assertThat(target).isEqualTo(org.bson.Document.parse(
  73. "{\"location\": {\"$geoWithin\": {\"$centerSphere\": [[-73.99171, 40.738868], 1.7976931348623157E308]}}}"));
  74. }
  75. @Test // DATAMONGO-2059
  76. void nearToGeoWithinWithMaxDistance() {
  77. Query source = query(where("location").near(new Point(-73.99171, 40.738868)).maxDistance(10));
  78. org.bson.Document target = postProcessQueryForCount(source);
  79. assertThat(target).isEqualTo(
  80. org.bson.Document.parse("{\"location\": {\"$geoWithin\": {\"$center\": [[-73.99171, 40.738868], 10.0]}}}"));
  81. }
  82. @Test // DATAMONGO-2059
  83. void nearSphereToGeoWithinWithMaxDistance() {
  84. Query source = query(where("location").nearSphere(new Point(-73.99171, 40.738868)).maxDistance(10));
  85. org.bson.Document target = postProcessQueryForCount(source);
  86. assertThat(target).isEqualTo(org.bson.Document
  87. .parse("{\"location\": {\"$geoWithin\": {\"$centerSphere\": [[-73.99171, 40.738868], 10.0]}}}"));
  88. }
  89. @Test // DATAMONGO-2059
  90. void nearToGeoWithinWithMinDistance() {
  91. Query source = query(where("location").near(new Point(-73.99171, 40.738868)).minDistance(0.01));
  92. org.bson.Document target = postProcessQueryForCount(source);
  93. assertThat(target).isEqualTo(org.bson.Document.parse(
  94. "{\"$and\":[{\"$nor\":[{\"location\":{\"$geoWithin\":{\"$center\":[ [ -73.99171, 40.738868 ], 0.01]}}}]},"
  95. + " {\"location\":{\"$geoWithin\":{\"$center\":[ [ -73.99171, 40.738868 ], 1.7976931348623157E308]}}}]}"));
  96. }
  97. @Test // DATAMONGO-2059
  98. void nearToGeoWithinWithMaxDistanceAndCombinedWithOtherCriteria() {
  99. Query source = query(
  100. where("name").is("food").and("location").near(new Point(-73.99171, 40.738868)).maxDistance(10));
  101. org.bson.Document target = postProcessQueryForCount(source);
  102. assertThat(target).isEqualTo(org.bson.Document
  103. .parse("{\"name\": \"food\", \"location\": {\"$geoWithin\": {\"$center\": [[-73.99171, 40.738868], 10.0]}}}"));
  104. }
  105. @Test // DATAMONGO-2059
  106. void nearToGeoWithinWithMinDistanceOrCombinedWithOtherCriteria() {
  107. Query source = query(new Criteria().orOperator(where("name").is("food"),
  108. where("location").near(new Point(-73.99171, 40.738868)).minDistance(0.01)));
  109. org.bson.Document target = postProcessQueryForCount(source);
  110. assertThat(target).isEqualTo(org.bson.Document.parse(
  111. "{\"$or\" : [ { \"name\": \"food\" }, {\"$and\":[{\"$nor\":[{\"location\":{\"$geoWithin\":{\"$center\":[ [ -73.99171, 40.738868 ], 0.01]}}}]},{\"location\":{\"$geoWithin\":{\"$center\":[ [ -73.99171, 40.738868 ], 1.7976931348623157E308]}}}]} ]}"));
  112. }
  113. @Test // DATAMONGO-2059
  114. void nearToGeoWithinWithMaxDistanceOrCombinedWithOtherCriteria() {
  115. Query source = query(new Criteria().orOperator(where("name").is("food"),
  116. where("location").near(new Point(-73.99171, 40.738868)).maxDistance(10)));
  117. org.bson.Document target = postProcessQueryForCount(source);
  118. assertThat(target).isEqualTo(org.bson.Document.parse(
  119. "{\"$or\" : [ { \"name\": \"food\" }, {\"location\": {\"$geoWithin\": {\"$center\": [[-73.99171, 40.738868], 10.0]}}} ]}"));
  120. }
  121. private org.bson.Document postProcessQueryForCount(Query source) {
  122. org.bson.Document intermediate = mapper.getMappedObject(source.getQueryObject(), (MongoPersistentEntity<?>) null);
  123. return CountQuery.of(intermediate).toQueryDocument();
  124. }
  125. }