/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
- /*
- * Copyright 2016-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.mongodb.core.aggregation;
- import static org.assertj.core.api.Assertions.*;
- import static org.springframework.data.mongodb.core.aggregation.Aggregation.*;
- import org.bson.Document;
- import org.junit.jupiter.api.Test;
- /**
- * Unit tests for {@link BucketOperation}.
- *
- * @author Mark Paluch
- */
- public class BucketOperationUnitTests {
- @Test // DATAMONGO-1552
- public void rejectsNullFields() {
- assertThatIllegalArgumentException().isThrownBy(() -> new BucketOperation((Field) null));
- }
- @Test // DATAMONGO-1552
- public void shouldRenderBucketOutputExpressions() {
- BucketOperation operation = Aggregation.bucket("field") //
- .andOutputExpression("(netPrice + surCharge) * taxrate * [0]", 2).as("grossSalesPrice") //
- .andOutput("title").push().as("titles");
- Document dbObject = operation.toDocument(Aggregation.DEFAULT_CONTEXT);
- assertThat(extractOutput(dbObject)).isEqualTo(Document.parse(
- "{ \"grossSalesPrice\" : { \"$multiply\" : [ { \"$add\" : [ \"$netPrice\" , \"$surCharge\"]} , \"$taxrate\" , 2]} , \"titles\" : { $push: \"$title\" } }}"));
- }
- @Test // DATAMONGO-1552
- public void shouldRenderEmptyAggregationExpression() {
- assertThatIllegalStateException().isThrownBy(() -> bucket("groupby").andOutput("field").as("alias"));
- }
- @Test // DATAMONGO-1552
- public void shouldRenderBucketOutputOperators() {
- BucketOperation operation = Aggregation.bucket("field") //
- .andOutputCount().as("titles");
- Document agg = operation.toDocument(Aggregation.DEFAULT_CONTEXT);
- assertThat(extractOutput(agg)).isEqualTo(Document.parse("{ titles : { $sum: 1 } }"));
- }
- @Test // DATAMONGO-1552
- public void shouldRenderSumAggregationExpression() {
- Document agg = bucket("field") //
- .andOutput(ArithmeticOperators.valueOf("quizzes").sum()).as("quizTotal") //
- .toDocument(Aggregation.DEFAULT_CONTEXT);
- assertThat(agg).isEqualTo(Document
- .parse("{ $bucket: { groupBy: \"$field\", boundaries: [], output : { quizTotal: { $sum: \"$quizzes\"} } } }"));
- }
- @Test // DATAMONGO-1552
- public void shouldRenderDefault() {
- Document agg = bucket("field").withDefaultBucket("default bucket").toDocument(Aggregation.DEFAULT_CONTEXT);
- assertThat(agg).isEqualTo(
- Document.parse("{ $bucket: { groupBy: \"$field\", boundaries: [], default: \"default bucket\" } }"));
- }
- @Test // DATAMONGO-1552
- public void shouldRenderBoundaries() {
- Document agg = bucket("field") //
- .withDefaultBucket("default bucket") //
- .withBoundaries(0) //
- .withBoundaries(10, 20).toDocument(Aggregation.DEFAULT_CONTEXT);
- assertThat(agg).isEqualTo(
- Document.parse("{ $bucket: { boundaries: [0, 10, 20], default: \"default bucket\", groupBy: \"$field\" } }"));
- }
- @Test // DATAMONGO-1552
- public void shouldRenderSumOperator() {
- BucketOperation operation = bucket("field") //
- .andOutput("score").sum().as("cummulated_score");
- Document agg = operation.toDocument(Aggregation.DEFAULT_CONTEXT);
- assertThat(extractOutput(agg)).isEqualTo(Document.parse("{ cummulated_score : { $sum: \"$score\" } }"));
- }
- @Test // DATAMONGO-1552
- public void shouldRenderSumWithValueOperator() {
- BucketOperation operation = bucket("field") //
- .andOutput("score").sum(4).as("cummulated_score");
- Document agg = operation.toDocument(Aggregation.DEFAULT_CONTEXT);
- assertThat(extractOutput(agg)).isEqualTo(Document.parse("{ cummulated_score : { $sum: 4 } }"));
- }
- @Test // DATAMONGO-1552
- public void shouldRenderAvgOperator() {
- BucketOperation operation = bucket("field") //
- .andOutput("score").avg().as("average");
- Document agg = operation.toDocument(Aggregation.DEFAULT_CONTEXT);
- assertThat(extractOutput(agg)).isEqualTo(Document.parse("{ average : { $avg: \"$score\" } }"));
- }
- @Test // DATAMONGO-1552
- public void shouldRenderFirstOperator() {
- BucketOperation operation = bucket("field") //
- .andOutput("title").first().as("first_title");
- Document agg = operation.toDocument(Aggregation.DEFAULT_CONTEXT);
- assertThat(extractOutput(agg)).isEqualTo(Document.parse("{ first_title : { $first: \"$title\" } }"));
- }
- @Test // DATAMONGO-1552
- public void shouldRenderLastOperator() {
- BucketOperation operation = bucket("field") //
- .andOutput("title").last().as("last_title");
- Document agg = operation.toDocument(Aggregation.DEFAULT_CONTEXT);
- assertThat(extractOutput(agg)).isEqualTo(Document.parse("{ last_title : { $last: \"$title\" } }"));
- }
- @Test // DATAMONGO-1552
- public void shouldRenderMinOperator() {
- BucketOperation operation = bucket("field") //
- .andOutput("score").min().as("min_score");
- Document agg = operation.toDocument(Aggregation.DEFAULT_CONTEXT);
- assertThat(extractOutput(agg)).isEqualTo(Document.parse("{ min_score : { $min: \"$score\" } }"));
- }
- @Test // DATAMONGO-1552
- public void shouldRenderPushOperator() {
- BucketOperation operation = bucket("field") //
- .andOutput("title").push().as("titles");
- Document agg = operation.toDocument(Aggregation.DEFAULT_CONTEXT);
- assertThat(extractOutput(agg)).isEqualTo(Document.parse("{ titles : { $push: \"$title\" } }"));
- }
- @Test // DATAMONGO-1552
- public void shouldRenderAddToSetOperator() {
- BucketOperation operation = bucket("field") //
- .andOutput("title").addToSet().as("titles");
- Document agg = operation.toDocument(Aggregation.DEFAULT_CONTEXT);
- assertThat(extractOutput(agg)).isEqualTo(Document.parse("{ titles : { $addToSet: \"$title\" } }"));
- }
- @Test // DATAMONGO-1552
- public void shouldRenderSumWithExpression() {
- BucketOperation operation = bucket("field") //
- .andOutputExpression("netPrice + tax").sum().as("total");
- Document agg = operation.toDocument(Aggregation.DEFAULT_CONTEXT);
- assertThat(extractOutput(agg))
- .isEqualTo(Document.parse("{ total : { $sum: { $add : [\"$netPrice\", \"$tax\"]} } }"));
- }
- @Test // DATAMONGO-1552
- public void shouldRenderSumWithOwnOutputExpression() {
- BucketOperation operation = bucket("field") //
- .andOutputExpression("netPrice + tax").apply("$multiply", 5).as("total");
- Document agg = operation.toDocument(Aggregation.DEFAULT_CONTEXT);
- assertThat(extractOutput(agg))
- .isEqualTo(Document.parse("{ total : { $multiply: [ {$add : [\"$netPrice\", \"$tax\"]}, 5] } }"));
- }
- @Test // DATAMONGO-1552
- public void shouldExposeDefaultCountField() {
- BucketOperation operation = bucket("field");
- assertThat(operation.getFields().exposesSingleFieldOnly()).isTrue();
- assertThat(operation.getFields().getField("count")).isNotNull();
- }
- private static Document extractOutput(Document fromBucketClause) {
- return (Document) ((Document) fromBucketClause.get("$bucket")).get("output");
- }
- }