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

http://github.com/SpringSource/spring-data-mongodb · Java · 95 lines · 52 code · 23 blank · 20 comment · 0 complexity · b110ed4ce2a6525e6f8a946509510e39 MD5 · raw file

  1. /*
  2. * Copyright 2013 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;
  17. import static org.hamcrest.CoreMatchers.*;
  18. import static org.junit.Assert.*;
  19. import org.junit.Before;
  20. import org.junit.Test;
  21. import org.junit.runner.RunWith;
  22. import org.mockito.Mock;
  23. import org.mockito.runners.MockitoJUnitRunner;
  24. import org.springframework.data.mongodb.MongoDbFactory;
  25. import org.springframework.data.mongodb.core.MongoTemplate.UnwrapAndReadDbObjectCallback;
  26. import org.springframework.data.mongodb.core.convert.MappingMongoConverter;
  27. import org.springframework.data.mongodb.core.mapping.MongoMappingContext;
  28. import com.mongodb.BasicDBObject;
  29. /**
  30. * Unit tests for {@link UnwrapAndReadDbObjectCallback}.
  31. *
  32. * @author Oliver Gierke
  33. */
  34. @RunWith(MockitoJUnitRunner.class)
  35. public class UnwrapAndReadDbObjectCallbackUnitTests {
  36. @Mock MongoDbFactory factory;
  37. UnwrapAndReadDbObjectCallback<Target> callback;
  38. @Before
  39. public void setUp() {
  40. MongoTemplate template = new MongoTemplate(factory);
  41. MappingMongoConverter converter = new MappingMongoConverter(factory, new MongoMappingContext());
  42. this.callback = template.new UnwrapAndReadDbObjectCallback<Target>(converter, Target.class);
  43. }
  44. @Test
  45. public void usesFirstLevelValues() {
  46. Target target = callback.doWith(new BasicDBObject("foo", "bar"));
  47. assertThat(target.id, is(nullValue()));
  48. assertThat(target.foo, is("bar"));
  49. }
  50. @Test
  51. public void unwrapsUnderscoreIdIfBasicDBObject() {
  52. Target target = callback.doWith(new BasicDBObject("_id", new BasicDBObject("foo", "bar")));
  53. assertThat(target.id, is(nullValue()));
  54. assertThat(target.foo, is("bar"));
  55. }
  56. @Test
  57. public void firstLevelPropertiesTrumpNestedOnes() {
  58. Target target = callback.doWith(new BasicDBObject("_id", new BasicDBObject("foo", "bar")).append("foo", "foobar"));
  59. assertThat(target.id, is(nullValue()));
  60. assertThat(target.foo, is("foobar"));
  61. }
  62. @Test
  63. public void keepsUnderscoreIdIfScalarValue() {
  64. Target target = callback.doWith(new BasicDBObject("_id", "bar").append("foo", "foo"));
  65. assertThat(target.id, is("bar"));
  66. assertThat(target.foo, is("foo"));
  67. }
  68. static class Target {
  69. String id;
  70. String foo;
  71. }
  72. }