|
68 | 68 | * @author Mark Paluch
|
69 | 69 | * @author Pavel Vodrazka
|
70 | 70 | * @author David Julia
|
| 71 | + * @author Divya Srivastava |
71 | 72 | */
|
72 | 73 | @ExtendWith(MockitoExtension.class)
|
73 | 74 | class UpdateMapperUnitTests {
|
@@ -1200,6 +1201,56 @@ void mapsObjectClassPropertyFieldInMapValueTypeAsKey() {
|
1200 | 1201 | assertThat(mappedUpdate).isEqualTo("{\"$set\": {\"map.class\": \"value\"}}");
|
1201 | 1202 | }
|
1202 | 1203 |
|
| 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 | + |
1203 | 1254 | static class DomainTypeWrappingConcreteyTypeHavingListOfInterfaceTypeAttributes {
|
1204 | 1255 | ListModelWrapper concreteTypeWithListAttributeOfInterfaceType;
|
1205 | 1256 | }
|
@@ -1566,4 +1617,8 @@ static class UnwrappableType {
|
1566 | 1617 | String transientValue;
|
1567 | 1618 | }
|
1568 | 1619 |
|
| 1620 | + static class EntityWithNestedMap { |
| 1621 | + Map<String, Map<String, Map<String, Object>>> levelOne; |
| 1622 | + } |
| 1623 | + |
1569 | 1624 | }
|
0 commit comments