/src/test/com/mongodb/ReflectionTest.java

http://github.com/mongodb/mongo-java-driver · Java · 139 lines · 91 code · 33 blank · 15 comment · 0 complexity · c105302a98280910c2188ccc59b2dea2 MD5 · raw file

  1. /*
  2. * Copyright (c) 2008-2014 MongoDB, Inc.
  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 com.mongodb;
  17. import com.mongodb.util.TestCase;
  18. import org.junit.Test;
  19. import static org.junit.Assert.assertEquals;
  20. public class ReflectionTest extends TestCase {
  21. public static class Person extends ReflectionDBObject {
  22. public Person(){
  23. }
  24. public String getName(){
  25. return _name;
  26. }
  27. public void setName(String name){
  28. _name = name;
  29. }
  30. String _name;
  31. }
  32. @Test
  33. public void test1()
  34. throws MongoException {
  35. DBCollection c = collection;
  36. c.setObjectClass( Person.class );
  37. Person p = new Person();
  38. p.setName( "eliot" );
  39. c.save( p );
  40. DBObject out = c.findOne();
  41. assertEquals( "eliot" , out.get( "Name" ) );
  42. assertEquals(Person.class, out.getClass());
  43. }
  44. public static class Outer extends ReflectionDBObject {
  45. private Inner mInclude;
  46. private String mName;
  47. public void setName(final String pName) { mName = pName; }
  48. public String getName() { return mName; }
  49. public Inner getInner() { return mInclude; }
  50. public void setInner(final Inner pV) { mInclude = pV; }
  51. }
  52. public static class Inner extends ReflectionDBObject {
  53. public int mNumber;
  54. public Inner(){}
  55. public Inner( int n ){ mNumber = n; }
  56. public int getNumber() { return mNumber; }
  57. public void setNumber(final int pV) { mNumber = pV; }
  58. }
  59. @Test
  60. public void test2()
  61. throws MongoException {
  62. DBCollection c = collection;
  63. c.setObjectClass( Outer.class );
  64. Outer o = new Outer();
  65. o.setName( "eliot" );
  66. o.setInner( new Inner( 17 ) );
  67. c.save( o );
  68. DBObject out = c.findOne();
  69. assertEquals( "eliot" , out.get( "Name" ) );
  70. assertEquals(Outer.class, out.getClass());
  71. o = (Outer)out;
  72. assertEquals( "eliot" , o.getName() );
  73. assertEquals( 17 , o.getInner().getNumber() );
  74. }
  75. static class Process extends ReflectionDBObject {
  76. public Process() {}
  77. public String getName() {
  78. return name;
  79. }
  80. public void setName(String name) {
  81. this.name = name;
  82. }
  83. public int getStatus() {
  84. return status;
  85. }
  86. public void setStatus(int status) {
  87. this.status = status;
  88. }
  89. String name;
  90. int status;
  91. }
  92. @Test
  93. public void testFindAndModify() {
  94. DBCollection c = collection;
  95. c.setObjectClass( Process.class );
  96. Process p = new Process();
  97. p.setName("test");
  98. p.setStatus(0);
  99. c.save(p, WriteConcern.SAFE);
  100. DBObject obj = c.findAndModify(new BasicDBObject(), new BasicDBObject("$set", new BasicDBObject("status", 1)));
  101. assertEquals(Process.class, obj.getClass());
  102. Process pModified = (Process) obj;
  103. assertEquals(0, pModified.getStatus());
  104. assertEquals("test", pModified.getName());
  105. }
  106. }