/src/test/java/org/jongo/GridFsTest.java

http://github.com/bguerout/jongo · Java · 90 lines · 61 code · 14 blank · 15 comment · 0 complexity · 8045c41013e6c8dfa39799ac7202ad9d MD5 · raw file

  1. /*
  2. * Copyright (C) 2011 Benoît GUÉROUT <bguerout at gmail dot com> and Yves AMSELLEM <amsellem dot yves at gmail dot com>
  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.jongo;
  17. import com.mongodb.BasicDBObject;
  18. import com.mongodb.gridfs.GridFS;
  19. import com.mongodb.gridfs.GridFSDBFile;
  20. import com.mongodb.gridfs.GridFSInputFile;
  21. import org.jongo.util.JongoTestBase;
  22. import org.junit.After;
  23. import org.junit.Before;
  24. import org.junit.Test;
  25. import static org.assertj.core.api.Assertions.assertThat;
  26. import static org.jongo.RawResultHandler.asRaw;
  27. public class GridFsTest extends JongoTestBase {
  28. GridFS gridFS;
  29. @Before
  30. public void setUp() throws Exception {
  31. gridFS = new GridFS(getDatabase());
  32. insertTestFileInGridFS();
  33. }
  34. @Test
  35. public void shouldAllowDualAccessToFilesCollection() throws Exception {
  36. queryWithJongoAndMapToCustomClass();
  37. queryWithJongoAndMapToGridFSDBFile();
  38. queryWithGridFS();
  39. }
  40. @After
  41. public void tearDown() throws Exception {
  42. dropGridFsCollections();
  43. }
  44. private void insertTestFileInGridFS() {
  45. GridFSInputFile gridFile = gridFS.createFile(new byte[]{
  46. (byte) 0xCA,
  47. (byte) 0xFE,
  48. (byte) 0xBA,
  49. (byte) 0xBE});
  50. gridFile.setFilename("test.txt");
  51. gridFile.save();
  52. }
  53. private void queryWithJongoAndMapToCustomClass() {
  54. CustomFileDescriptor descriptor = getJongo().getCollection("fs.files")
  55. .findOne()
  56. .as(CustomFileDescriptor.class);
  57. assertThat(descriptor.filename).isEqualTo("test.txt");
  58. }
  59. private void queryWithJongoAndMapToGridFSDBFile() {
  60. GridFSDBFile gridFile = getJongo().getCollection("fs.files")
  61. .findOne()
  62. .map(asRaw(GridFSDBFile.class));
  63. assertThat(gridFile.getFilename()).isEqualTo("test.txt");
  64. }
  65. private void queryWithGridFS() {
  66. GridFSDBFile gridFile = gridFS.findOne(new BasicDBObject());
  67. assertThat(gridFile.getFilename()).isEqualTo("test.txt");
  68. }
  69. private void dropGridFsCollections() throws Exception {
  70. getDatabase().getCollection("fs.files").drop();
  71. getDatabase().getCollection("fs.chunks").drop();
  72. }
  73. static class CustomFileDescriptor {
  74. String filename;
  75. }
  76. }