Skip to content

Commit eda1c79

Browse files
Move and add tests to UpdateMapper.
Also update author information. Original Pull Request: #3815
1 parent e7150f5 commit eda1c79

File tree

2 files changed

+55
-24
lines changed

2 files changed

+55
-24
lines changed

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

-24
Original file line numberDiff line numberDiff line change
@@ -1355,25 +1355,6 @@ void mapStringIdFieldProjection() {
13551355
org.bson.Document mappedFields = mapper.getMappedFields(new org.bson.Document("id", 1), context.getPersistentEntity(WithStringId.class));
13561356
assertThat(mappedFields).containsEntry("_id", 1);
13571357
}
1358-
1359-
@Test
1360-
void mapNestedStringFieldCorrectly() {
1361-
Update update = new Update();
1362-
update.set("levelOne.a.b.d", "e");
1363-
org.bson.Document document = mapper.getMappedObject(update.getUpdateObject(),
1364-
context.getPersistentEntity(EntityWithNestedMap.class));
1365-
assertThat(document).isEqualTo(new org.bson.Document("$set",new org.bson.Document("levelOne.a.b.d","e")));
1366-
}
1367-
1368-
@Test
1369-
void mapNestedIntegerFieldCorrectly() {
1370-
Update update = new Update();
1371-
update.set("levelOne.0.1.3", "4");
1372-
org.bson.Document document = mapper.getMappedObject(update.getUpdateObject(),
1373-
context.getPersistentEntity(EntityWithNestedMap.class));
1374-
assertThat(document).isEqualTo(new org.bson.Document("$set",new org.bson.Document("levelOne.0.1.3","4")));
1375-
}
1376-
13771358

13781359
@Test // GH-3783
13791360
void retainsId$InWithStringArray() {
@@ -1562,11 +1543,6 @@ static class EntityWithIntKeyedMapOfMap{
15621543
static class EntityWithComplexValueTypeList {
15631544
List<SimpleEntityWithoutId> list;
15641545
}
1565-
1566-
static class EntityWithNestedMap {
1567-
Map<String, Map<String, Map<String, Object>>> levelOne;
1568-
}
1569-
15701546

15711547
static class WithExplicitTargetTypes {
15721548

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

+55
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@
6868
* @author Mark Paluch
6969
* @author Pavel Vodrazka
7070
* @author David Julia
71+
* @author Divya Srivastava
7172
*/
7273
@ExtendWith(MockitoExtension.class)
7374
class UpdateMapperUnitTests {
@@ -1200,6 +1201,56 @@ void mapsObjectClassPropertyFieldInMapValueTypeAsKey() {
12001201
assertThat(mappedUpdate).isEqualTo("{\"$set\": {\"map.class\": \"value\"}}");
12011202
}
12021203

1204+
@Test // GH-3775
1205+
void mapNestedStringFieldCorrectly() {
1206+
1207+
Update update = new Update().set("levelOne.a.b.d", "e");
1208+
Document mappedUpdate = mapper.getMappedObject(update.getUpdateObject(),
1209+
context.getPersistentEntity(EntityWithNestedMap.class));
1210+
1211+
assertThat(mappedUpdate).isEqualTo(new org.bson.Document("$set",new org.bson.Document("levelOne.a.b.d","e")));
1212+
}
1213+
1214+
@Test // GH-3775
1215+
void mapNestedIntegerFieldCorrectly() {
1216+
1217+
Update update = new Update().set("levelOne.0.1.3", "4");
1218+
Document mappedUpdate = mapper.getMappedObject(update.getUpdateObject(),
1219+
context.getPersistentEntity(EntityWithNestedMap.class));
1220+
1221+
assertThat(mappedUpdate).isEqualTo(new org.bson.Document("$set",new org.bson.Document("levelOne.0.1.3","4")));
1222+
}
1223+
1224+
@Test // GH-3775
1225+
void mapNestedMixedStringIntegerFieldCorrectly() {
1226+
1227+
Update update = new Update().set("levelOne.0.1.c", "4");
1228+
Document mappedUpdate = mapper.getMappedObject(update.getUpdateObject(),
1229+
context.getPersistentEntity(EntityWithNestedMap.class));
1230+
1231+
assertThat(mappedUpdate).isEqualTo(new org.bson.Document("$set",new org.bson.Document("levelOne.0.1.c","4")));
1232+
}
1233+
1234+
@Test // GH-3775
1235+
void mapNestedMixedStringIntegerWithStartNumberFieldCorrectly() {
1236+
1237+
Update update = new Update().set("levelOne.0a.1b.3c", "4");
1238+
Document mappedUpdate = mapper.getMappedObject(update.getUpdateObject(),
1239+
context.getPersistentEntity(EntityWithNestedMap.class));
1240+
1241+
assertThat(mappedUpdate).isEqualTo(new org.bson.Document("$set",new org.bson.Document("levelOne.0a.1b.3c","4")));
1242+
}
1243+
1244+
@Test // GH-3688
1245+
void multipleKeysStartingWithANumberInNestedPath() {
1246+
1247+
Update update = new Update().set("intKeyedMap.1a.map.0b", "testing");
1248+
Document mappedUpdate = mapper.getMappedObject(update.getUpdateObject(),
1249+
context.getPersistentEntity(EntityWithIntKeyedMap.class));
1250+
1251+
assertThat(mappedUpdate).isEqualTo("{\"$set\": {\"intKeyedMap.1a.map.0b\": \"testing\"}}");
1252+
}
1253+
12031254
static class DomainTypeWrappingConcreteyTypeHavingListOfInterfaceTypeAttributes {
12041255
ListModelWrapper concreteTypeWithListAttributeOfInterfaceType;
12051256
}
@@ -1566,4 +1617,8 @@ static class UnwrappableType {
15661617
String transientValue;
15671618
}
15681619

1620+
static class EntityWithNestedMap {
1621+
Map<String, Map<String, Map<String, Object>>> levelOne;
1622+
}
1623+
15691624
}

0 commit comments

Comments
 (0)