Browse Source
Introduce Aggregation.stage which allows to use a plain JSON String or any valid Bson representation to be used within an aggregation pipeline stage, without having to implement AggregationOperation directly. The change allows to make use of driver native builder API for aggregates. Original pull request: #4059. Closes #4038pull/4093/head
15 changed files with 340 additions and 22 deletions
@ -0,0 +1,61 @@
@@ -0,0 +1,61 @@
|
||||
/* |
||||
* Copyright 2022 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 java.util.Map; |
||||
|
||||
import org.bson.Document; |
||||
import org.bson.conversions.Bson; |
||||
import org.springframework.data.mongodb.util.BsonUtils; |
||||
import org.springframework.util.ObjectUtils; |
||||
|
||||
/** |
||||
* {@link AggregationOperation} implementation that c |
||||
* |
||||
* @author Christoph Strobl |
||||
* @since 4.0 |
||||
*/ |
||||
class BasicAggregationOperation implements AggregationOperation { |
||||
|
||||
private final Object value; |
||||
|
||||
BasicAggregationOperation(Object value) { |
||||
this.value = value; |
||||
} |
||||
|
||||
@Override |
||||
public Document toDocument(AggregationOperationContext context) { |
||||
|
||||
if (value instanceof Document document) { |
||||
return document; |
||||
} |
||||
|
||||
if (value instanceof Bson bson) { |
||||
return BsonUtils.asDocument(bson, context.getCodecRegistry()); |
||||
} |
||||
|
||||
if (value instanceof Map map) { |
||||
return new Document(map); |
||||
} |
||||
|
||||
if (value instanceof String json && BsonUtils.isJsonDocument(json)) { |
||||
return BsonUtils.parse(json, context); |
||||
} |
||||
|
||||
throw new IllegalStateException( |
||||
String.format("%s cannot be converted to org.bson.Document.", ObjectUtils.nullSafeClassName(value))); |
||||
} |
||||
} |
||||
@ -0,0 +1,89 @@
@@ -0,0 +1,89 @@
|
||||
/* |
||||
* Copyright 2022 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.mockito.Mockito.*; |
||||
|
||||
import org.bson.Document; |
||||
import org.junit.jupiter.api.BeforeEach; |
||||
import org.junit.jupiter.api.Test; |
||||
import org.junit.jupiter.api.extension.ExtendWith; |
||||
import org.mockito.Mock; |
||||
import org.mockito.junit.jupiter.MockitoExtension; |
||||
import org.mockito.junit.jupiter.MockitoSettings; |
||||
import org.mockito.quality.Strictness; |
||||
import org.springframework.data.mongodb.core.convert.MongoConverter; |
||||
import org.springframework.data.mongodb.core.convert.QueryMapper; |
||||
import org.springframework.data.mongodb.core.mapping.Field; |
||||
import org.springframework.data.mongodb.core.mapping.MongoMappingContext; |
||||
|
||||
import com.mongodb.MongoClientSettings; |
||||
|
||||
/** |
||||
* @author Christoph Strobl |
||||
*/ |
||||
@ExtendWith(MockitoExtension.class) |
||||
@MockitoSettings(strictness = Strictness.LENIENT) |
||||
class BasicAggregationOperationUnitTests { |
||||
|
||||
@Mock QueryMapper queryMapper; |
||||
@Mock MongoConverter converter; |
||||
|
||||
TypeBasedAggregationOperationContext ctx; |
||||
|
||||
@BeforeEach |
||||
void beforeEach() { |
||||
|
||||
// no field mapping though having a type based context
|
||||
ctx = new TypeBasedAggregationOperationContext(Person.class, new MongoMappingContext(), queryMapper); |
||||
when(queryMapper.getConverter()).thenReturn(converter); |
||||
when(converter.getCodecRegistry()).thenReturn(MongoClientSettings.getDefaultCodecRegistry()); |
||||
} |
||||
|
||||
@Test // GH-4038
|
||||
void usesGivenDocumentAsIs() { |
||||
|
||||
Document source = new Document("value", 1); |
||||
assertThat(new BasicAggregationOperation(source).toDocument(ctx)).isSameAs(source); |
||||
} |
||||
|
||||
@Test // GH-4038
|
||||
void parsesJson() { |
||||
|
||||
Document source = new Document("value", 1); |
||||
assertThat(new BasicAggregationOperation(source.toJson()).toDocument(ctx)).isEqualTo(source); |
||||
} |
||||
|
||||
@Test // GH-4038
|
||||
void errorsOnInvalidValue() { |
||||
|
||||
BasicAggregationOperation agg = new BasicAggregationOperation(new Object()); |
||||
assertThatExceptionOfType(IllegalStateException.class).isThrownBy(() -> agg.toDocument(ctx)); |
||||
} |
||||
|
||||
@Test // GH-4038
|
||||
void errorsOnNonJsonSting() { |
||||
|
||||
BasicAggregationOperation agg = new BasicAggregationOperation("#005BBB #FFD500"); |
||||
assertThatExceptionOfType(IllegalStateException.class).isThrownBy(() -> agg.toDocument(ctx)); |
||||
} |
||||
|
||||
private static class Person { |
||||
|
||||
@Field("v-a-l-u-e") Object value; |
||||
} |
||||
} |
||||
Loading…
Reference in new issue