Browse Source

Polishing.

Refine Javadoc and test member visibility.

See #5045
pull/5051/head
Mark Paluch 4 months ago
parent
commit
b4335d76d2
No known key found for this signature in database
GPG Key ID: 55BC6374BAA9D973
  1. 29
      spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/query/Update.java
  2. 110
      spring-data-mongodb/src/test/java/org/springframework/data/mongodb/core/query/UpdateTests.java

29
spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/query/Update.java

@ -107,7 +107,7 @@ public class Update implements UpdateDefinition {
} }
/** /**
* Update using the {@literal $set} update modifier * Update using the {@literal $set} update modifier.
* *
* @param key the field name. * @param key the field name.
* @param value can be {@literal null}. In this case the property remains in the db with a {@literal null} value. To * @param value can be {@literal null}. In this case the property remains in the db with a {@literal null} value. To
@ -122,7 +122,7 @@ public class Update implements UpdateDefinition {
} }
/** /**
* Update using the {@literal $setOnInsert} update modifier * Update using the {@literal $setOnInsert} update modifier.
* *
* @param key the field name. * @param key the field name.
* @param value can be {@literal null}. * @param value can be {@literal null}.
@ -137,7 +137,7 @@ public class Update implements UpdateDefinition {
} }
/** /**
* Update using the {@literal $unset} update modifier * Update using the {@literal $unset} update modifier.
* *
* @param key the field name. * @param key the field name.
* @return this. * @return this.
@ -191,9 +191,8 @@ public class Update implements UpdateDefinition {
} }
/** /**
* Update using {@code $push} modifier. <br/> * Update using {@code $push} modifier. Allows creation of {@code $push} command for single or multiple (using
* Allows creation of {@code $push} command for single or multiple (using {@code $each}) values as well as using * {@code $each}) values as well as using {@code $position}.
* {@code $position}.
* *
* @param key the field name. * @param key the field name.
* @return {@link PushOperatorBuilder} for given key * @return {@link PushOperatorBuilder} for given key
@ -214,8 +213,8 @@ public class Update implements UpdateDefinition {
} }
/** /**
* Update using {@code $addToSet} modifier. <br/> * Update using {@code $addToSet} modifier. Allows creation of {@code $push} command for single or multiple (using
* Allows creation of {@code $push} command for single or multiple (using {@code $each}) values * {@code $each}) values
* *
* @param key the field name. * @param key the field name.
* @return new instance of {@link AddToSetBuilder}. * @return new instance of {@link AddToSetBuilder}.
@ -227,7 +226,7 @@ public class Update implements UpdateDefinition {
} }
/** /**
* Update using the {@literal $addToSet} update modifier * Update using the {@literal $addToSet} update modifier.
* *
* @param key the field name. * @param key the field name.
* @param value can be {@literal null}. * @param value can be {@literal null}.
@ -242,7 +241,7 @@ public class Update implements UpdateDefinition {
} }
/** /**
* Update using the {@literal $pop} update modifier * Update using the {@literal $pop} update modifier.
* *
* @param key the field name. * @param key the field name.
* @param pos must not be {@literal null}. * @param pos must not be {@literal null}.
@ -256,7 +255,7 @@ public class Update implements UpdateDefinition {
} }
/** /**
* Update using the {@literal $pull} update modifier * Update using the {@literal $pull} update modifier.
* *
* @param key the field name. * @param key the field name.
* @param value can be {@literal null}. * @param value can be {@literal null}.
@ -270,7 +269,7 @@ public class Update implements UpdateDefinition {
} }
/** /**
* Update using the {@literal $pullAll} update modifier * Update using the {@literal $pullAll} update modifier.
* *
* @param key the field name. * @param key the field name.
* @param values must not be {@literal null}. * @param values must not be {@literal null}.
@ -285,7 +284,7 @@ public class Update implements UpdateDefinition {
} }
/** /**
* Update using the {@literal $rename} update modifier * Update using the {@literal $rename} update modifier.
* *
* @param oldName must not be {@literal null}. * @param oldName must not be {@literal null}.
* @param newName must not be {@literal null}. * @param newName must not be {@literal null}.
@ -398,8 +397,8 @@ public class Update implements UpdateDefinition {
/** /**
* Prevents a write operation that affects <strong>multiple</strong> documents from yielding to other reads or writes * Prevents a write operation that affects <strong>multiple</strong> documents from yielding to other reads or writes
* once the first document is written. <br /> * once the first document is written. Use with
* Use with {@link org.springframework.data.mongodb.core.MongoOperations#updateMulti(Query, UpdateDefinition, Class)}. * {@link org.springframework.data.mongodb.core.MongoOperations#updateMulti(Query, UpdateDefinition, Class)}.
* *
* @return this. * @return this.
* @since 2.0 * @since 2.0

110
spring-data-mongodb/src/test/java/org/springframework/data/mongodb/core/query/UpdateTests.java

@ -37,10 +37,10 @@ import org.springframework.data.mongodb.core.query.Update.Position;
* @author Alexey Plotnik * @author Alexey Plotnik
* @author Mark Paluch * @author Mark Paluch
*/ */
public class UpdateTests { class UpdateTests {
@Test @Test
public void testSet() { void testSet() {
Update u = new Update().set("directory", "/Users/Test/Desktop"); Update u = new Update().set("directory", "/Users/Test/Desktop");
assertThat(u.getUpdateObject()) assertThat(u.getUpdateObject())
@ -48,7 +48,7 @@ public class UpdateTests {
} }
@Test @Test
public void testSetSet() { void testSetSet() {
Update u = new Update().set("directory", "/Users/Test/Desktop").set("size", 0); Update u = new Update().set("directory", "/Users/Test/Desktop").set("size", 0);
assertThat(u.getUpdateObject()) assertThat(u.getUpdateObject())
@ -56,14 +56,14 @@ public class UpdateTests {
} }
@Test @Test
public void testInc() { void testInc() {
Update u = new Update().inc("size", 1); Update u = new Update().inc("size", 1);
assertThat(u.getUpdateObject()).isEqualTo(Document.parse("{ \"$inc\" : { \"size\" : 1}}")); assertThat(u.getUpdateObject()).isEqualTo(Document.parse("{ \"$inc\" : { \"size\" : 1}}"));
} }
@Test @Test
public void testIncInc() { void testIncInc() {
Update u = new Update().inc("size").inc("count", 1); Update u = new Update().inc("size").inc("count", 1);
assertThat(u.getUpdateObject()) assertThat(u.getUpdateObject())
@ -71,7 +71,7 @@ public class UpdateTests {
} }
@Test @Test
public void testIncAndSet() { void testIncAndSet() {
Update u = new Update().inc("size", 1).set("directory", "/Users/Test/Desktop"); Update u = new Update().inc("size", 1).set("directory", "/Users/Test/Desktop");
assertThat(u.getUpdateObject()).isEqualTo( assertThat(u.getUpdateObject()).isEqualTo(
@ -79,21 +79,21 @@ public class UpdateTests {
} }
@Test @Test
public void testUnset() { void testUnset() {
Update u = new Update().unset("directory"); Update u = new Update().unset("directory");
assertThat(u.getUpdateObject()).isEqualTo(Document.parse("{ \"$unset\" : { \"directory\" : 1}}")); assertThat(u.getUpdateObject()).isEqualTo(Document.parse("{ \"$unset\" : { \"directory\" : 1}}"));
} }
@Test @Test
public void testPush() { void testPush() {
Update u = new Update().push("authors", Collections.singletonMap("name", "Sven")); Update u = new Update().push("authors", Collections.singletonMap("name", "Sven"));
assertThat(u.getUpdateObject()).isEqualTo(Document.parse("{ \"$push\" : { \"authors\" : { \"name\" : \"Sven\"}}}")); assertThat(u.getUpdateObject()).isEqualTo(Document.parse("{ \"$push\" : { \"authors\" : { \"name\" : \"Sven\"}}}"));
} }
@Test @Test
public void testAddToSet() { void testAddToSet() {
Update u = new Update().addToSet("authors", Collections.singletonMap("name", "Sven")); Update u = new Update().addToSet("authors", Collections.singletonMap("name", "Sven"));
assertThat(u.getUpdateObject()) assertThat(u.getUpdateObject())
@ -101,7 +101,7 @@ public class UpdateTests {
} }
@Test @Test
public void testPop() { void testPop() {
Update u = new Update().pop("authors", Update.Position.FIRST); Update u = new Update().pop("authors", Update.Position.FIRST);
assertThat(u.getUpdateObject()).isEqualTo(Document.parse("{ \"$pop\" : { \"authors\" : -1}}")); assertThat(u.getUpdateObject()).isEqualTo(Document.parse("{ \"$pop\" : { \"authors\" : -1}}"));
@ -111,14 +111,14 @@ public class UpdateTests {
} }
@Test @Test
public void testPull() { void testPull() {
Update u = new Update().pull("authors", Collections.singletonMap("name", "Sven")); Update u = new Update().pull("authors", Collections.singletonMap("name", "Sven"));
assertThat(u.getUpdateObject()).isEqualTo(Document.parse("{ \"$pull\" : { \"authors\" : { \"name\" : \"Sven\"}}}")); assertThat(u.getUpdateObject()).isEqualTo(Document.parse("{ \"$pull\" : { \"authors\" : { \"name\" : \"Sven\"}}}"));
} }
@Test @Test
public void testPullAll() { void testPullAll() {
Map<String, String> m1 = Collections.singletonMap("name", "Sven"); Map<String, String> m1 = Collections.singletonMap("name", "Sven");
Map<String, String> m2 = Collections.singletonMap("name", "Maria"); Map<String, String> m2 = Collections.singletonMap("name", "Maria");
@ -129,21 +129,21 @@ public class UpdateTests {
} }
@Test @Test
public void testRename() { void testRename() {
Update u = new Update().rename("directory", "folder"); Update u = new Update().rename("directory", "folder");
assertThat(u.getUpdateObject()).isEqualTo(Document.parse("{ \"$rename\" : { \"directory\" : \"folder\"}}")); assertThat(u.getUpdateObject()).isEqualTo(Document.parse("{ \"$rename\" : { \"directory\" : \"folder\"}}"));
} }
@Test @Test
public void testBasicUpdateInc() { void testBasicUpdateInc() {
Update u = new Update().inc("size", 1); Update u = new Update().inc("size", 1);
assertThat(u.getUpdateObject()).isEqualTo(Document.parse("{ \"$inc\" : { \"size\" : 1}}")); assertThat(u.getUpdateObject()).isEqualTo(Document.parse("{ \"$inc\" : { \"size\" : 1}}"));
} }
@Test @Test
public void testBasicUpdateIncAndSet() { void testBasicUpdateIncAndSet() {
Update u = new BasicUpdate("{ \"$inc\" : { \"size\" : 1}}").set("directory", "/Users/Test/Desktop"); Update u = new BasicUpdate("{ \"$inc\" : { \"size\" : 1}}").set("directory", "/Users/Test/Desktop");
assertThat(u.getUpdateObject()).isEqualTo( assertThat(u.getUpdateObject()).isEqualTo(
@ -151,54 +151,54 @@ public class UpdateTests {
} }
@Test // DATAMONGO-630 @Test // DATAMONGO-630
public void testSetOnInsert() { void testSetOnInsert() {
Update u = new Update().setOnInsert("size", 1); Update u = new Update().setOnInsert("size", 1);
assertThat(u.getUpdateObject()).isEqualTo(Document.parse("{ \"$setOnInsert\" : { \"size\" : 1}}")); assertThat(u.getUpdateObject()).isEqualTo(Document.parse("{ \"$setOnInsert\" : { \"size\" : 1}}"));
} }
@Test // DATAMONGO-630 @Test // DATAMONGO-630
public void testSetOnInsertSetOnInsert() { void testSetOnInsertSetOnInsert() {
Update u = new Update().setOnInsert("size", 1).setOnInsert("count", 1); Update u = new Update().setOnInsert("size", 1).setOnInsert("count", 1);
assertThat(u.getUpdateObject()).isEqualTo(Document.parse("{ \"$setOnInsert\" : { \"size\" : 1 , \"count\" : 1}}")); assertThat(u.getUpdateObject()).isEqualTo(Document.parse("{ \"$setOnInsert\" : { \"size\" : 1 , \"count\" : 1}}"));
} }
@Test // DATAMONGO-852 @Test // DATAMONGO-852
public void testUpdateAffectsFieldShouldReturnTrueWhenMultiFieldOperationAddedForField() { void testUpdateAffectsFieldShouldReturnTrueWhenMultiFieldOperationAddedForField() {
Update update = new Update().set("foo", "bar"); Update update = new Update().set("foo", "bar");
assertThat(update.modifies("foo")).isTrue(); assertThat(update.modifies("foo")).isTrue();
} }
@Test // DATAMONGO-852 @Test // DATAMONGO-852
public void testUpdateAffectsFieldShouldReturnFalseWhenMultiFieldOperationAddedForField() { void testUpdateAffectsFieldShouldReturnFalseWhenMultiFieldOperationAddedForField() {
Update update = new Update().set("foo", "bar"); Update update = new Update().set("foo", "bar");
assertThat(update.modifies("oof")).isFalse(); assertThat(update.modifies("oof")).isFalse();
} }
@Test // DATAMONGO-852 @Test // DATAMONGO-852
public void testUpdateAffectsFieldShouldReturnTrueWhenSingleFieldOperationAddedForField() { void testUpdateAffectsFieldShouldReturnTrueWhenSingleFieldOperationAddedForField() {
Update update = new Update().pullAll("foo", new Object[] { "bar" }); Update update = new Update().pullAll("foo", new Object[] { "bar" });
assertThat(update.modifies("foo")).isTrue(); assertThat(update.modifies("foo")).isTrue();
} }
@Test // DATAMONGO-852 @Test // DATAMONGO-852
public void testUpdateAffectsFieldShouldReturnFalseWhenSingleFieldOperationAddedForField() { void testUpdateAffectsFieldShouldReturnFalseWhenSingleFieldOperationAddedForField() {
Update update = new Update().pullAll("foo", new Object[] { "bar" }); Update update = new Update().pullAll("foo", new Object[] { "bar" });
assertThat(update.modifies("oof")).isFalse(); assertThat(update.modifies("oof")).isFalse();
} }
@Test // DATAMONGO-852 @Test // DATAMONGO-852
public void testUpdateAffectsFieldShouldReturnFalseWhenCalledOnEmptyUpdate() { void testUpdateAffectsFieldShouldReturnFalseWhenCalledOnEmptyUpdate() {
assertThat(new Update().modifies("foo")).isFalse(); assertThat(new Update().modifies("foo")).isFalse();
} }
@Test // DATAMONGO-852 @Test // DATAMONGO-852
public void testUpdateAffectsFieldShouldReturnTrueWhenUpdateWithKeyCreatedFromDocument() { void testUpdateAffectsFieldShouldReturnTrueWhenUpdateWithKeyCreatedFromDocument() {
Update update = new Update().set("foo", "bar"); Update update = new Update().set("foo", "bar");
Update clone = Update.fromDocument(update.getUpdateObject()); Update clone = Update.fromDocument(update.getUpdateObject());
@ -207,7 +207,7 @@ public class UpdateTests {
} }
@Test // DATAMONGO-852 @Test // DATAMONGO-852
public void testUpdateAffectsFieldShouldReturnFalseWhenUpdateWithoutKeyCreatedFromDocument() { void testUpdateAffectsFieldShouldReturnFalseWhenUpdateWithoutKeyCreatedFromDocument() {
Update update = new Update().set("foo", "bar"); Update update = new Update().set("foo", "bar");
Update clone = Update.fromDocument(update.getUpdateObject()); Update clone = Update.fromDocument(update.getUpdateObject());
@ -216,24 +216,24 @@ public class UpdateTests {
} }
@Test // DATAMONGO-853 @Test // DATAMONGO-853
public void testAddingMultiFieldOperationThrowsExceptionWhenCalledWithNullKey() { void testAddingMultiFieldOperationThrowsExceptionWhenCalledWithNullKey() {
assertThatIllegalArgumentException().isThrownBy( assertThatIllegalArgumentException().isThrownBy(
() -> new Update().addMultiFieldOperation("$op", null, "exprected to throw IllegalArgumentException.")); () -> new Update().addMultiFieldOperation("$op", null, "exprected to throw IllegalArgumentException."));
} }
@Test // DATAMONGO-853 @Test // DATAMONGO-853
public void testAddingSingleFieldOperationThrowsExceptionWhenCalledWithNullKey() { void testAddingSingleFieldOperationThrowsExceptionWhenCalledWithNullKey() {
assertThatIllegalArgumentException().isThrownBy( assertThatIllegalArgumentException().isThrownBy(
() -> new Update().addMultiFieldOperation("$op", null, "exprected to throw IllegalArgumentException.")); () -> new Update().addMultiFieldOperation("$op", null, "exprected to throw IllegalArgumentException."));
} }
@Test // DATAMONGO-853 @Test // DATAMONGO-853
public void testCreatingUpdateWithNullKeyThrowsException() { void testCreatingUpdateWithNullKeyThrowsException() {
assertThatIllegalArgumentException().isThrownBy(() -> Update.update(null, "value")); assertThatIllegalArgumentException().isThrownBy(() -> Update.update(null, "value"));
} }
@Test // DATAMONGO-953 @Test // DATAMONGO-953
public void testEquality() { void testEquality() {
Update actualUpdate = new Update() // Update actualUpdate = new Update() //
.inc("size", 1) // .inc("size", 1) //
.set("nl", null) // .set("nl", null) //
@ -257,7 +257,7 @@ public class UpdateTests {
} }
@Test // DATAMONGO-953 @Test // DATAMONGO-953
public void testToString() { void testToString() {
Update actualUpdate = new Update() // Update actualUpdate = new Update() //
.inc("size", 1) // .inc("size", 1) //
@ -283,14 +283,14 @@ public class UpdateTests {
} }
@Test // DATAMONGO-944 @Test // DATAMONGO-944
public void getUpdateObjectShouldReturnCurrentDateCorrectlyForSingleFieldWhenUsingDate() { void getUpdateObjectShouldReturnCurrentDateCorrectlyForSingleFieldWhenUsingDate() {
Update update = new Update().currentDate("foo"); Update update = new Update().currentDate("foo");
assertThat(update.getUpdateObject()).isEqualTo(new Document().append("$currentDate", new Document("foo", true))); assertThat(update.getUpdateObject()).isEqualTo(new Document().append("$currentDate", new Document("foo", true)));
} }
@Test // DATAMONGO-944 @Test // DATAMONGO-944
public void getUpdateObjectShouldReturnCurrentDateCorrectlyForMultipleFieldsWhenUsingDate() { void getUpdateObjectShouldReturnCurrentDateCorrectlyForMultipleFieldsWhenUsingDate() {
Update update = new Update().currentDate("foo").currentDate("bar"); Update update = new Update().currentDate("foo").currentDate("bar");
assertThat(update.getUpdateObject()) assertThat(update.getUpdateObject())
@ -298,7 +298,7 @@ public class UpdateTests {
} }
@Test // DATAMONGO-944 @Test // DATAMONGO-944
public void getUpdateObjectShouldReturnCurrentDateCorrectlyForSingleFieldWhenUsingTimestamp() { void getUpdateObjectShouldReturnCurrentDateCorrectlyForSingleFieldWhenUsingTimestamp() {
Update update = new Update().currentTimestamp("foo"); Update update = new Update().currentTimestamp("foo");
assertThat(update.getUpdateObject()) assertThat(update.getUpdateObject())
@ -306,7 +306,7 @@ public class UpdateTests {
} }
@Test // DATAMONGO-944 @Test // DATAMONGO-944
public void getUpdateObjectShouldReturnCurrentDateCorrectlyForMultipleFieldsWhenUsingTimestamp() { void getUpdateObjectShouldReturnCurrentDateCorrectlyForMultipleFieldsWhenUsingTimestamp() {
Update update = new Update().currentTimestamp("foo").currentTimestamp("bar"); Update update = new Update().currentTimestamp("foo").currentTimestamp("bar");
assertThat(update.getUpdateObject()).isEqualTo(new Document().append("$currentDate", assertThat(update.getUpdateObject()).isEqualTo(new Document().append("$currentDate",
@ -314,7 +314,7 @@ public class UpdateTests {
} }
@Test // DATAMONGO-944 @Test // DATAMONGO-944
public void getUpdateObjectShouldReturnCurrentDateCorrectlyWhenUsingMixedDateAndTimestamp() { void getUpdateObjectShouldReturnCurrentDateCorrectlyWhenUsingMixedDateAndTimestamp() {
Update update = new Update().currentDate("foo").currentTimestamp("bar"); Update update = new Update().currentDate("foo").currentTimestamp("bar");
assertThat(update.getUpdateObject()).isEqualTo(new Document().append("$currentDate", assertThat(update.getUpdateObject()).isEqualTo(new Document().append("$currentDate",
@ -322,19 +322,19 @@ public class UpdateTests {
} }
@Test // DATAMONGO-1002 @Test // DATAMONGO-1002
public void toStringWorksForUpdateWithComplexObject() { void toStringWorksForUpdateWithComplexObject() {
Update update = new Update().addToSet("key", new Date()); Update update = new Update().addToSet("key", new Date());
assertThat(update.toString()).isNotNull(); assertThat(update.toString()).isNotNull();
} }
@Test // DATAMONGO-1097 @Test // DATAMONGO-1097
public void multiplyShouldThrowExceptionForNullMultiplier() { void multiplyShouldThrowExceptionForNullMultiplier() {
assertThatIllegalArgumentException().isThrownBy(() -> new Update().multiply("key", null)); assertThatIllegalArgumentException().isThrownBy(() -> new Update().multiply("key", null));
} }
@Test // DATAMONGO-1097 @Test // DATAMONGO-1097
public void multiplyShouldAddMultiplierAsItsDoubleValue() { void multiplyShouldAddMultiplierAsItsDoubleValue() {
Update update = new Update().multiply("key", 10); Update update = new Update().multiply("key", 10);
@ -342,7 +342,7 @@ public class UpdateTests {
} }
@Test // DATAMONGO-1101 @Test // DATAMONGO-1101
public void getUpdateObjectShouldReturnCorrectRepresentationForBitwiseAnd() { void getUpdateObjectShouldReturnCorrectRepresentationForBitwiseAnd() {
Update update = new Update().bitwise("key").and(10L); Update update = new Update().bitwise("key").and(10L);
@ -351,7 +351,7 @@ public class UpdateTests {
} }
@Test // DATAMONGO-1101 @Test // DATAMONGO-1101
public void getUpdateObjectShouldReturnCorrectRepresentationForBitwiseOr() { void getUpdateObjectShouldReturnCorrectRepresentationForBitwiseOr() {
Update update = new Update().bitwise("key").or(10L); Update update = new Update().bitwise("key").or(10L);
@ -360,7 +360,7 @@ public class UpdateTests {
} }
@Test // DATAMONGO-1101 @Test // DATAMONGO-1101
public void getUpdateObjectShouldReturnCorrectRepresentationForBitwiseXor() { void getUpdateObjectShouldReturnCorrectRepresentationForBitwiseXor() {
Update update = new Update().bitwise("key").xor(10L); Update update = new Update().bitwise("key").xor(10L);
@ -369,7 +369,7 @@ public class UpdateTests {
} }
@Test // DATAMONGO-1346 @Test // DATAMONGO-1346
public void registersMultiplePullAllClauses() { void registersMultiplePullAllClauses() {
Update update = new Update(); Update update = new Update();
update.pullAll("field1", new String[] { "foo" }); update.pullAll("field1", new String[] { "foo" });
@ -384,17 +384,17 @@ public class UpdateTests {
} }
@Test // DATAMONGO-1404 @Test // DATAMONGO-1404
public void maxShouldThrowExceptionForNullMultiplier() { void maxShouldThrowExceptionForNullMultiplier() {
assertThatIllegalArgumentException().isThrownBy(() -> new Update().max("key", null)); assertThatIllegalArgumentException().isThrownBy(() -> new Update().max("key", null));
} }
@Test // DATAMONGO-1404 @Test // DATAMONGO-1404
public void minShouldThrowExceptionForNullMultiplier() { void minShouldThrowExceptionForNullMultiplier() {
assertThatIllegalArgumentException().isThrownBy(() -> new Update().min("key", null)); assertThatIllegalArgumentException().isThrownBy(() -> new Update().min("key", null));
} }
@Test // DATAMONGO-1404 @Test // DATAMONGO-1404
public void getUpdateObjectShouldReturnCorrectRepresentationForMax() { void getUpdateObjectShouldReturnCorrectRepresentationForMax() {
Update update = new Update().max("key", 10); Update update = new Update().max("key", 10);
@ -402,7 +402,7 @@ public class UpdateTests {
} }
@Test // DATAMONGO-1404 @Test // DATAMONGO-1404
public void getUpdateObjectShouldReturnCorrectRepresentationForMin() { void getUpdateObjectShouldReturnCorrectRepresentationForMin() {
Update update = new Update().min("key", 10); Update update = new Update().min("key", 10);
@ -410,7 +410,7 @@ public class UpdateTests {
} }
@Test // DATAMONGO-1404 @Test // DATAMONGO-1404
public void shouldSuppressPreviousValueForMax() { void shouldSuppressPreviousValueForMax() {
Update update = new Update().max("key", 10); Update update = new Update().max("key", 10);
update.max("key", 99); update.max("key", 99);
@ -419,7 +419,7 @@ public class UpdateTests {
} }
@Test // DATAMONGO-1404 @Test // DATAMONGO-1404
public void shouldSuppressPreviousValueForMin() { void shouldSuppressPreviousValueForMin() {
Update update = new Update().min("key", 10); Update update = new Update().min("key", 10);
update.min("key", 99); update.min("key", 99);
@ -428,7 +428,7 @@ public class UpdateTests {
} }
@Test // DATAMONGO-1404 @Test // DATAMONGO-1404
public void getUpdateObjectShouldReturnCorrectDateRepresentationForMax() { void getUpdateObjectShouldReturnCorrectDateRepresentationForMax() {
Date date = new Date(); Date date = new Date();
Update update = new Update().max("key", date); Update update = new Update().max("key", date);
@ -437,7 +437,7 @@ public class UpdateTests {
} }
@Test // DATAMONGO-1404 @Test // DATAMONGO-1404
public void getUpdateObjectShouldReturnCorrectDateRepresentationForMin() { void getUpdateObjectShouldReturnCorrectDateRepresentationForMin() {
Date date = new Date(); Date date = new Date();
Update update = new Update().min("key", date); Update update = new Update().min("key", date);
@ -446,20 +446,20 @@ public class UpdateTests {
} }
@Test // DATAMONGO-1777, DATAMONGO-2199 @Test // DATAMONGO-1777, DATAMONGO-2199
public void toStringShouldPrettyPrintModifiers() { void toStringShouldPrettyPrintModifiers() {
assertThat(new Update().push("key").atPosition(Position.FIRST).value("Arya").toString()).isEqualTo( assertThat(new Update().push("key").atPosition(Position.FIRST).value("Arya").toString()).isEqualTo(
"{ \"$push\" : { \"key\" : { \"$java\" : { \"$position\" : { \"$java\" : { \"$position\" : 0} }, \"$each\" : { \"$java\" : { \"$each\" : [ \"Arya\" ] } } } } } }"); "{ \"$push\" : { \"key\" : { \"$java\" : { \"$position\" : { \"$java\" : { \"$position\" : 0} }, \"$each\" : { \"$java\" : { \"$each\" : [ \"Arya\" ] } } } } } }");
} }
@Test // DATAMONGO-1777, DATAMONGO-2198 @Test // DATAMONGO-1777, DATAMONGO-2198
public void toStringConsidersIsolated() { void toStringConsidersIsolated() {
assertThat(new Update().set("key", "value").isolated().toString()).contains("\"$isolated\""); assertThat(new Update().set("key", "value").isolated().toString()).contains("\"$isolated\"");
} }
@Test // DATAMONGO-1778 @Test // DATAMONGO-1778
public void equalsShouldConsiderModifiers() { void equalsShouldConsiderModifiers() {
Update update1 = new Update().inc("version", 1).push("someField").slice(-10).each("test"); Update update1 = new Update().inc("version", 1).push("someField").slice(-10).each("test");
Update update2 = new Update().inc("version", 1).push("someField").slice(-10).each("test"); Update update2 = new Update().inc("version", 1).push("someField").slice(-10).each("test");
@ -470,7 +470,7 @@ public class UpdateTests {
} }
@Test // DATAMONGO-1778 @Test // DATAMONGO-1778
public void equalsShouldConsiderIsolated() { void equalsShouldConsiderIsolated() {
Update update1 = new Update().inc("version", 1).isolated(); Update update1 = new Update().inc("version", 1).isolated();
Update update2 = new Update().inc("version", 1).isolated(); Update update2 = new Update().inc("version", 1).isolated();
@ -479,7 +479,7 @@ public class UpdateTests {
} }
@Test // DATAMONGO-1778 @Test // DATAMONGO-1778
public void hashCodeShouldConsiderModifiers() { void hashCodeShouldConsiderModifiers() {
Update update1 = new Update().inc("version", 1).push("someField").slice(-10).each("test"); Update update1 = new Update().inc("version", 1).push("someField").slice(-10).each("test");
Update update2 = new Update().inc("version", 1).push("someField").slice(-10).each("test"); Update update2 = new Update().inc("version", 1).push("someField").slice(-10).each("test");
@ -490,7 +490,7 @@ public class UpdateTests {
} }
@Test // DATAMONGO-1778 @Test // DATAMONGO-1778
public void hashCodeShouldConsiderIsolated() { void hashCodeShouldConsiderIsolated() {
Update update1 = new Update().inc("version", 1).isolated(); Update update1 = new Update().inc("version", 1).isolated();
Update update2 = new Update().inc("version", 1).isolated(); Update update2 = new Update().inc("version", 1).isolated();

Loading…
Cancel
Save