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

http://github.com/SpringSource/spring-data-mongodb · Java · 115 lines · 71 code · 24 blank · 20 comment · 2 complexity · a7fdab3ee542260e7fa4d6a3f5b65d6f 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.aggregation;
  17. import static org.assertj.core.api.Assertions.*;
  18. import java.util.Arrays;
  19. import java.util.Collection;
  20. import java.util.Collections;
  21. import org.bson.Document;
  22. import org.junit.jupiter.api.Test;
  23. import org.springframework.data.annotation.Id;
  24. import org.springframework.data.mongodb.core.convert.MappingMongoConverter;
  25. import org.springframework.data.mongodb.core.convert.NoOpDbRefResolver;
  26. import org.springframework.data.mongodb.core.convert.QueryMapper;
  27. import org.springframework.data.mongodb.core.mapping.Field;
  28. import org.springframework.data.mongodb.core.mapping.MongoMappingContext;
  29. import org.springframework.lang.Nullable;
  30. /**
  31. * Unit tests for {@link UnsetOperation}.
  32. *
  33. * @author Christoph Strobl
  34. */
  35. public class UnsetOperationUnitTests {
  36. @Test // DATAMONGO-2331
  37. public void raisesErrorOnNullField() {
  38. assertThatExceptionOfType(IllegalArgumentException.class).isThrownBy(() -> new UnsetOperation(null));
  39. }
  40. @Test // DATAMONGO-2331
  41. public void rendersSingleFieldReferenceCorrectly() {
  42. assertThat(new UnsetOperation(Collections.singletonList("title")).toPipelineStages(contextFor(Book.class)))
  43. .containsExactly(Document.parse("{\"$unset\" : \"title\" }"));
  44. }
  45. @Test // DATAMONGO-2331
  46. public void rendersSingleMappedFieldReferenceCorrectly() {
  47. assertThat(new UnsetOperation(Collections.singletonList("stock")).toPipelineStages(contextFor(Book.class)))
  48. .containsExactly(Document.parse("{\"$unset\" : \"copies\" }"));
  49. }
  50. @Test // DATAMONGO-2331
  51. public void rendersSingleNestedMappedFieldReferenceCorrectly() {
  52. assertThat(
  53. new UnsetOperation(Collections.singletonList("author.firstname")).toPipelineStages(contextFor(Book.class)))
  54. .containsExactly(Document.parse("{\"$unset\" : \"author.first\"}"));
  55. }
  56. @Test // DATAMONGO-2331
  57. public void rendersMultipleFieldReferencesCorrectly() {
  58. assertThat(new UnsetOperation(Arrays.asList("title", "author.firstname", "stock.location"))
  59. .toPipelineStages(contextFor(Book.class)))
  60. .containsExactly(Document.parse("{\"$unset\" : [\"title\", \"author.first\", \"copies.warehouse\"] }"));
  61. }
  62. @Test // DATAMONGO-2331
  63. public void exposesFieldsCorrectly() {
  64. assertThat(UnsetOperation.unset("title").and("isbn").getFields()).isEqualTo(ExposedFields.from());
  65. }
  66. private static AggregationOperationContext contextFor(@Nullable Class<?> type) {
  67. if (type == null) {
  68. return Aggregation.DEFAULT_CONTEXT;
  69. }
  70. MappingMongoConverter mongoConverter = new MappingMongoConverter(NoOpDbRefResolver.INSTANCE,
  71. new MongoMappingContext());
  72. mongoConverter.afterPropertiesSet();
  73. return new TypeBasedAggregationOperationContext(type, mongoConverter.getMappingContext(),
  74. new QueryMapper(mongoConverter));
  75. }
  76. static class Book {
  77. @Id Integer id;
  78. String title;
  79. String isbn;
  80. Author author;
  81. @Field("copies") Collection<Warehouse> stock;
  82. }
  83. static class Author {
  84. @Field("first") String firstname;
  85. @Field("last") String lastname;
  86. }
  87. static class Warehouse {
  88. @Field("warehouse") String location;
  89. Integer qty;
  90. }
  91. }