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

https://gitlab.com/javajamesb08/spring-data-mongodb · Java · 167 lines · 88 code · 35 blank · 44 comment · 0 complexity · 0f7e9ba2e39d1b8a04e2cf6ab3d68ce6 MD5 · raw file

  1. /*
  2. * Copyright 2010-2014 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. * http://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.query;
  17. import static org.hamcrest.CoreMatchers.*;
  18. import static org.junit.Assert.*;
  19. import org.junit.Test;
  20. import org.springframework.data.mongodb.InvalidMongoDbApiUsageException;
  21. import com.mongodb.BasicDBObject;
  22. import com.mongodb.BasicDBObjectBuilder;
  23. import com.mongodb.DBObject;
  24. /**
  25. * @author Oliver Gierke
  26. * @author Thomas Darimont
  27. * @author Christoph Strobl
  28. */
  29. public class CriteriaTests {
  30. @Test
  31. public void testSimpleCriteria() {
  32. Criteria c = new Criteria("name").is("Bubba");
  33. assertEquals("{ \"name\" : \"Bubba\"}", c.getCriteriaObject().toString());
  34. }
  35. @Test
  36. public void testNotEqualCriteria() {
  37. Criteria c = new Criteria("name").ne("Bubba");
  38. assertEquals("{ \"name\" : { \"$ne\" : \"Bubba\"}}", c.getCriteriaObject().toString());
  39. }
  40. @Test
  41. public void buildsIsNullCriteriaCorrectly() {
  42. DBObject reference = new BasicDBObject("name", null);
  43. Criteria criteria = new Criteria("name").is(null);
  44. assertThat(criteria.getCriteriaObject(), is(reference));
  45. }
  46. @Test
  47. public void testChainedCriteria() {
  48. Criteria c = new Criteria("name").is("Bubba").and("age").lt(21);
  49. assertEquals("{ \"name\" : \"Bubba\" , \"age\" : { \"$lt\" : 21}}", c.getCriteriaObject().toString());
  50. }
  51. @Test(expected = InvalidMongoDbApiUsageException.class)
  52. public void testCriteriaWithMultipleConditionsForSameKey() {
  53. Criteria c = new Criteria("name").gte("M").and("name").ne("A");
  54. c.getCriteriaObject();
  55. }
  56. @Test
  57. public void equalIfCriteriaMatches() {
  58. Criteria left = new Criteria("name").is("Foo").and("lastname").is("Bar");
  59. Criteria right = new Criteria("name").is("Bar").and("lastname").is("Bar");
  60. assertThat(left, is(not(right)));
  61. assertThat(right, is(not(left)));
  62. }
  63. /**
  64. * @see DATAMONGO-507
  65. */
  66. @Test(expected = IllegalArgumentException.class)
  67. public void shouldThrowExceptionWhenTryingToNegateAndOperation() {
  68. new Criteria() //
  69. .not() //
  70. .andOperator(Criteria.where("delete").is(true).and("_id").is(42)); //
  71. }
  72. /**
  73. * @see DATAMONGO-507
  74. */
  75. @Test(expected = IllegalArgumentException.class)
  76. public void shouldThrowExceptionWhenTryingToNegateOrOperation() {
  77. new Criteria() //
  78. .not() //
  79. .orOperator(Criteria.where("delete").is(true).and("_id").is(42)); //
  80. }
  81. /**
  82. * @see DATAMONGO-507
  83. */
  84. @Test(expected = IllegalArgumentException.class)
  85. public void shouldThrowExceptionWhenTryingToNegateNorOperation() {
  86. new Criteria() //
  87. .not() //
  88. .norOperator(Criteria.where("delete").is(true).and("_id").is(42)); //
  89. }
  90. /**
  91. * @see DATAMONGO-507
  92. */
  93. @Test
  94. public void shouldNegateFollowingSimpleExpression() {
  95. Criteria c = Criteria.where("age").not().gt(18).and("status").is("student");
  96. DBObject co = c.getCriteriaObject();
  97. assertThat(co, is(notNullValue()));
  98. assertThat(co.toString(), is("{ \"age\" : { \"$not\" : { \"$gt\" : 18}} , \"status\" : \"student\"}"));
  99. }
  100. /**
  101. * @see DATAMONGO-1068
  102. */
  103. @Test
  104. public void getCriteriaObjectShouldReturnEmptyDBOWhenNoCriteriaSpecified() {
  105. DBObject dbo = new Criteria().getCriteriaObject();
  106. assertThat(dbo, equalTo(new BasicDBObjectBuilder().get()));
  107. }
  108. /**
  109. * @see DATAMONGO-1068
  110. */
  111. @Test
  112. public void getCriteriaObjectShouldUseCritieraValuesWhenNoKeyIsPresent() {
  113. DBObject dbo = new Criteria().lt("foo").getCriteriaObject();
  114. assertThat(dbo, equalTo(new BasicDBObjectBuilder().add("$lt", "foo").get()));
  115. }
  116. /**
  117. * @see DATAMONGO-1068
  118. */
  119. @Test
  120. public void getCriteriaObjectShouldUseCritieraValuesWhenNoKeyIsPresentButMultipleCriteriasPresent() {
  121. DBObject dbo = new Criteria().lt("foo").gt("bar").getCriteriaObject();
  122. assertThat(dbo, equalTo(new BasicDBObjectBuilder().add("$lt", "foo").add("$gt", "bar").get()));
  123. }
  124. /**
  125. * @see DATAMONGO-1068
  126. */
  127. @Test
  128. public void getCriteriaObjectShouldRespectNotWhenNoKeyPresent() {
  129. DBObject dbo = new Criteria().lt("foo").not().getCriteriaObject();
  130. assertThat(dbo, equalTo(new BasicDBObjectBuilder().add("$not", new BasicDBObject("$lt", "foo")).get()));
  131. }
  132. }