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

http://github.com/SpringSource/spring-data-mongodb · Java · 209 lines · 135 code · 54 blank · 20 comment · 0 complexity · 2ee44116bdfbf6b3bc95b0694f847a74 MD5 · raw file

  1. /*
  2. * Copyright 2016-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.aggregation;
  17. import static org.assertj.core.api.Assertions.*;
  18. import static org.springframework.data.mongodb.core.aggregation.Aggregation.*;
  19. import org.bson.Document;
  20. import org.junit.jupiter.api.Test;
  21. /**
  22. * Unit tests for {@link BucketOperation}.
  23. *
  24. * @author Mark Paluch
  25. */
  26. public class BucketOperationUnitTests {
  27. @Test // DATAMONGO-1552
  28. public void rejectsNullFields() {
  29. assertThatIllegalArgumentException().isThrownBy(() -> new BucketOperation((Field) null));
  30. }
  31. @Test // DATAMONGO-1552
  32. public void shouldRenderBucketOutputExpressions() {
  33. BucketOperation operation = Aggregation.bucket("field") //
  34. .andOutputExpression("(netPrice + surCharge) * taxrate * [0]", 2).as("grossSalesPrice") //
  35. .andOutput("title").push().as("titles");
  36. Document dbObject = operation.toDocument(Aggregation.DEFAULT_CONTEXT);
  37. assertThat(extractOutput(dbObject)).isEqualTo(Document.parse(
  38. "{ \"grossSalesPrice\" : { \"$multiply\" : [ { \"$add\" : [ \"$netPrice\" , \"$surCharge\"]} , \"$taxrate\" , 2]} , \"titles\" : { $push: \"$title\" } }}"));
  39. }
  40. @Test // DATAMONGO-1552
  41. public void shouldRenderEmptyAggregationExpression() {
  42. assertThatIllegalStateException().isThrownBy(() -> bucket("groupby").andOutput("field").as("alias"));
  43. }
  44. @Test // DATAMONGO-1552
  45. public void shouldRenderBucketOutputOperators() {
  46. BucketOperation operation = Aggregation.bucket("field") //
  47. .andOutputCount().as("titles");
  48. Document agg = operation.toDocument(Aggregation.DEFAULT_CONTEXT);
  49. assertThat(extractOutput(agg)).isEqualTo(Document.parse("{ titles : { $sum: 1 } }"));
  50. }
  51. @Test // DATAMONGO-1552
  52. public void shouldRenderSumAggregationExpression() {
  53. Document agg = bucket("field") //
  54. .andOutput(ArithmeticOperators.valueOf("quizzes").sum()).as("quizTotal") //
  55. .toDocument(Aggregation.DEFAULT_CONTEXT);
  56. assertThat(agg).isEqualTo(Document
  57. .parse("{ $bucket: { groupBy: \"$field\", boundaries: [], output : { quizTotal: { $sum: \"$quizzes\"} } } }"));
  58. }
  59. @Test // DATAMONGO-1552
  60. public void shouldRenderDefault() {
  61. Document agg = bucket("field").withDefaultBucket("default bucket").toDocument(Aggregation.DEFAULT_CONTEXT);
  62. assertThat(agg).isEqualTo(
  63. Document.parse("{ $bucket: { groupBy: \"$field\", boundaries: [], default: \"default bucket\" } }"));
  64. }
  65. @Test // DATAMONGO-1552
  66. public void shouldRenderBoundaries() {
  67. Document agg = bucket("field") //
  68. .withDefaultBucket("default bucket") //
  69. .withBoundaries(0) //
  70. .withBoundaries(10, 20).toDocument(Aggregation.DEFAULT_CONTEXT);
  71. assertThat(agg).isEqualTo(
  72. Document.parse("{ $bucket: { boundaries: [0, 10, 20], default: \"default bucket\", groupBy: \"$field\" } }"));
  73. }
  74. @Test // DATAMONGO-1552
  75. public void shouldRenderSumOperator() {
  76. BucketOperation operation = bucket("field") //
  77. .andOutput("score").sum().as("cummulated_score");
  78. Document agg = operation.toDocument(Aggregation.DEFAULT_CONTEXT);
  79. assertThat(extractOutput(agg)).isEqualTo(Document.parse("{ cummulated_score : { $sum: \"$score\" } }"));
  80. }
  81. @Test // DATAMONGO-1552
  82. public void shouldRenderSumWithValueOperator() {
  83. BucketOperation operation = bucket("field") //
  84. .andOutput("score").sum(4).as("cummulated_score");
  85. Document agg = operation.toDocument(Aggregation.DEFAULT_CONTEXT);
  86. assertThat(extractOutput(agg)).isEqualTo(Document.parse("{ cummulated_score : { $sum: 4 } }"));
  87. }
  88. @Test // DATAMONGO-1552
  89. public void shouldRenderAvgOperator() {
  90. BucketOperation operation = bucket("field") //
  91. .andOutput("score").avg().as("average");
  92. Document agg = operation.toDocument(Aggregation.DEFAULT_CONTEXT);
  93. assertThat(extractOutput(agg)).isEqualTo(Document.parse("{ average : { $avg: \"$score\" } }"));
  94. }
  95. @Test // DATAMONGO-1552
  96. public void shouldRenderFirstOperator() {
  97. BucketOperation operation = bucket("field") //
  98. .andOutput("title").first().as("first_title");
  99. Document agg = operation.toDocument(Aggregation.DEFAULT_CONTEXT);
  100. assertThat(extractOutput(agg)).isEqualTo(Document.parse("{ first_title : { $first: \"$title\" } }"));
  101. }
  102. @Test // DATAMONGO-1552
  103. public void shouldRenderLastOperator() {
  104. BucketOperation operation = bucket("field") //
  105. .andOutput("title").last().as("last_title");
  106. Document agg = operation.toDocument(Aggregation.DEFAULT_CONTEXT);
  107. assertThat(extractOutput(agg)).isEqualTo(Document.parse("{ last_title : { $last: \"$title\" } }"));
  108. }
  109. @Test // DATAMONGO-1552
  110. public void shouldRenderMinOperator() {
  111. BucketOperation operation = bucket("field") //
  112. .andOutput("score").min().as("min_score");
  113. Document agg = operation.toDocument(Aggregation.DEFAULT_CONTEXT);
  114. assertThat(extractOutput(agg)).isEqualTo(Document.parse("{ min_score : { $min: \"$score\" } }"));
  115. }
  116. @Test // DATAMONGO-1552
  117. public void shouldRenderPushOperator() {
  118. BucketOperation operation = bucket("field") //
  119. .andOutput("title").push().as("titles");
  120. Document agg = operation.toDocument(Aggregation.DEFAULT_CONTEXT);
  121. assertThat(extractOutput(agg)).isEqualTo(Document.parse("{ titles : { $push: \"$title\" } }"));
  122. }
  123. @Test // DATAMONGO-1552
  124. public void shouldRenderAddToSetOperator() {
  125. BucketOperation operation = bucket("field") //
  126. .andOutput("title").addToSet().as("titles");
  127. Document agg = operation.toDocument(Aggregation.DEFAULT_CONTEXT);
  128. assertThat(extractOutput(agg)).isEqualTo(Document.parse("{ titles : { $addToSet: \"$title\" } }"));
  129. }
  130. @Test // DATAMONGO-1552
  131. public void shouldRenderSumWithExpression() {
  132. BucketOperation operation = bucket("field") //
  133. .andOutputExpression("netPrice + tax").sum().as("total");
  134. Document agg = operation.toDocument(Aggregation.DEFAULT_CONTEXT);
  135. assertThat(extractOutput(agg))
  136. .isEqualTo(Document.parse("{ total : { $sum: { $add : [\"$netPrice\", \"$tax\"]} } }"));
  137. }
  138. @Test // DATAMONGO-1552
  139. public void shouldRenderSumWithOwnOutputExpression() {
  140. BucketOperation operation = bucket("field") //
  141. .andOutputExpression("netPrice + tax").apply("$multiply", 5).as("total");
  142. Document agg = operation.toDocument(Aggregation.DEFAULT_CONTEXT);
  143. assertThat(extractOutput(agg))
  144. .isEqualTo(Document.parse("{ total : { $multiply: [ {$add : [\"$netPrice\", \"$tax\"]}, 5] } }"));
  145. }
  146. @Test // DATAMONGO-1552
  147. public void shouldExposeDefaultCountField() {
  148. BucketOperation operation = bucket("field");
  149. assertThat(operation.getFields().exposesSingleFieldOnly()).isTrue();
  150. assertThat(operation.getFields().getField("count")).isNotNull();
  151. }
  152. private static Document extractOutput(Document fromBucketClause) {
  153. return (Document) ((Document) fromBucketClause.get("$bucket")).get("output");
  154. }
  155. }