230 lines
8.5 KiB
Java
Raw Normal View History

2018-06-02 23:14:27 +03:00
package com.baeldung.gridfs;
2015-09-22 12:42:27 +03:00
2018-10-04 22:18:12 +03:00
import static org.hamcrest.CoreMatchers.is;
import static org.hamcrest.Matchers.nullValue;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertThat;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.List;
import org.bson.types.ObjectId;
2015-09-22 12:42:27 +03:00
import org.junit.After;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.mongodb.core.query.Criteria;
import org.springframework.data.mongodb.core.query.Query;
import org.springframework.data.mongodb.gridfs.GridFsResource;
import org.springframework.data.mongodb.gridfs.GridFsTemplate;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
2018-10-04 22:18:12 +03:00
import com.mongodb.BasicDBObject;
import com.mongodb.DBObject;
import com.mongodb.client.gridfs.model.GridFSFile;
2015-09-22 12:42:27 +03:00
2015-10-14 16:29:38 +02:00
@ContextConfiguration("file:src/main/resources/mongoConfig.xml")
2015-09-22 12:42:27 +03:00
@RunWith(SpringJUnit4ClassRunner.class)
2017-01-10 16:13:20 +02:00
public class GridFSLiveTest {
2015-09-22 12:46:12 +03:00
2015-09-22 12:42:27 +03:00
private final Logger logger = LoggerFactory.getLogger(getClass());
2015-09-22 12:46:12 +03:00
2015-09-22 12:42:27 +03:00
@Autowired
private GridFsTemplate gridFsTemplate;
2015-09-22 12:46:12 +03:00
2015-09-22 12:42:27 +03:00
@After
public void tearDown() {
2018-10-04 22:18:12 +03:00
List<GridFSFile> fileList = new ArrayList<GridFSFile>();
gridFsTemplate.find(new Query()).into(fileList);
for (GridFSFile file : fileList) {
2015-09-22 12:42:27 +03:00
gridFsTemplate.delete(new Query(Criteria.where("filename").is(file.getFilename())));
}
}
@Test
public void whenStoringFileWithMetadata_thenFileAndMetadataAreStored() {
DBObject metaData = new BasicDBObject();
2015-10-14 16:29:38 +02:00
metaData.put("user", "alex");
2015-09-22 12:42:27 +03:00
InputStream inputStream = null;
String id = "";
try {
inputStream = new FileInputStream("src/main/resources/test.png");
2018-10-04 22:18:12 +03:00
id = gridFsTemplate.store(inputStream, "test.png", "image/png", metaData).toString();
2015-09-22 12:42:27 +03:00
} catch (FileNotFoundException ex) {
2015-09-30 13:01:37 +03:00
logger.error("File not found", ex);
2015-09-22 12:42:27 +03:00
} finally {
if (inputStream != null) {
try {
inputStream.close();
} catch (IOException ex) {
2015-09-30 13:01:37 +03:00
logger.error("Failed to close", ex);
2015-09-22 12:42:27 +03:00
}
}
}
assertNotNull(id);
}
@Test
public void givenFileWithMetadataExist_whenFindingFileById_thenFileWithMetadataIsFound() {
DBObject metaData = new BasicDBObject();
2015-10-14 16:29:38 +02:00
metaData.put("user", "alex");
2015-09-22 12:42:27 +03:00
InputStream inputStream = null;
2018-10-04 22:18:12 +03:00
ObjectId id = null;
2015-09-22 12:42:27 +03:00
try {
inputStream = new FileInputStream("src/main/resources/test.png");
2018-10-04 22:18:12 +03:00
id = gridFsTemplate.store(inputStream, "test.png", "image/png", metaData);
2015-09-22 12:42:27 +03:00
} catch (FileNotFoundException ex) {
2015-09-30 13:01:37 +03:00
logger.error("File not found", ex);
2015-09-22 12:42:27 +03:00
} finally {
if (inputStream != null) {
try {
inputStream.close();
} catch (IOException ex) {
2015-09-30 13:01:37 +03:00
logger.error("Failed to close", ex);
2015-09-22 12:42:27 +03:00
}
}
}
2015-09-22 12:46:12 +03:00
2018-10-04 22:18:12 +03:00
GridFSFile gridFSFile = gridFsTemplate.findOne(new Query(Criteria.where("_id").is(id)));
assertNotNull(gridFSFile);
// assertNotNull(gridFSFile.getInputStream());
// assertThat(gridFSFile.numChunks(), is(1));
// assertThat(gridFSFile.containsField("filename"), is(true));
assertThat(gridFSFile.getFilename(), is("test.png"));
assertThat(gridFSFile.getObjectId(), is(id));
// assertThat(gridFSFile.keySet().size(), is(9));
// assertNotNull(gridFSFile.getMD5());
assertNotNull(gridFSFile.getUploadDate());
// assertNull(gridFSFile.getAliases());
assertNotNull(gridFSFile.getChunkSize());
assertThat(gridFSFile.getMetadata().get("_contentType"), is("image/png"));
assertThat(gridFSFile.getFilename(), is("test.png"));
assertThat(gridFSFile.getMetadata().get("user"), is("alex"));
2015-09-22 12:42:27 +03:00
}
@Test
public void givenMetadataAndFilesExist_whenFindingAllFiles_thenFilesWithMetadataAreFound() {
2015-10-14 16:29:38 +02:00
DBObject metaDataUser1 = new BasicDBObject();
metaDataUser1.put("user", "alex");
DBObject metaDataUser2 = new BasicDBObject();
metaDataUser2.put("user", "david");
2015-09-22 12:42:27 +03:00
InputStream inputStream = null;
try {
inputStream = new FileInputStream("src/main/resources/test.png");
2015-10-14 16:29:38 +02:00
gridFsTemplate.store(inputStream, "test.png", "image/png", metaDataUser1);
gridFsTemplate.store(inputStream, "test.png", "image/png", metaDataUser2);
2015-09-22 12:42:27 +03:00
} catch (FileNotFoundException ex) {
2015-09-30 13:01:37 +03:00
logger.error("File not found", ex);
2015-09-22 12:42:27 +03:00
} finally {
if (inputStream != null) {
try {
inputStream.close();
} catch (IOException ex) {
2015-09-30 13:01:37 +03:00
logger.error("Failed to close", ex);
2015-09-22 12:42:27 +03:00
}
}
}
2015-09-22 12:46:12 +03:00
2018-10-04 22:18:12 +03:00
List<GridFSFile> gridFSFiles = new ArrayList<GridFSFile>();
gridFsTemplate.find(new Query()).into(gridFSFiles);
2015-09-22 12:46:12 +03:00
2018-10-04 22:18:12 +03:00
assertNotNull(gridFSFiles);
assertThat(gridFSFiles.size(), is(2));
2015-09-22 12:42:27 +03:00
}
2016-10-12 08:02:05 +03:00
2015-10-14 16:29:38 +02:00
@Test
public void givenMetadataAndFilesExist_whenFindingAllFilesOnQuery_thenFilesWithMetadataAreFoundOnQuery() {
DBObject metaDataUser1 = new BasicDBObject();
metaDataUser1.put("user", "alex");
DBObject metaDataUser2 = new BasicDBObject();
metaDataUser2.put("user", "david");
InputStream inputStream = null;
try {
inputStream = new FileInputStream("src/main/resources/test.png");
gridFsTemplate.store(inputStream, "test.png", "image/png", metaDataUser1);
gridFsTemplate.store(inputStream, "test.png", "image/png", metaDataUser2);
} catch (FileNotFoundException ex) {
logger.error("File not found", ex);
} finally {
if (inputStream != null) {
try {
inputStream.close();
} catch (IOException ex) {
logger.error("Failed to close", ex);
}
}
}
2018-10-04 22:18:12 +03:00
List<GridFSFile> gridFSFiles = new ArrayList<GridFSFile>();
gridFsTemplate.find(new Query(Criteria.where("metadata.user").is("alex"))).into(gridFSFiles);
2015-10-14 16:29:38 +02:00
2018-10-04 22:18:12 +03:00
assertNotNull(gridFSFiles);
assertThat(gridFSFiles.size(), is(1));
2015-10-14 16:29:38 +02:00
}
2015-09-22 12:46:12 +03:00
2015-09-22 12:42:27 +03:00
@Test
public void givenFileWithMetadataExist_whenDeletingFileById_thenFileWithMetadataIsDeleted() {
DBObject metaData = new BasicDBObject();
2015-10-14 16:29:38 +02:00
metaData.put("user", "alex");
2015-09-22 12:42:27 +03:00
InputStream inputStream = null;
String id = "";
try {
inputStream = new FileInputStream("src/main/resources/test.png");
2018-10-04 22:18:12 +03:00
id = gridFsTemplate.store(inputStream, "test.png", "image/png", metaData).toString();
2015-09-22 12:42:27 +03:00
} catch (FileNotFoundException ex) {
2015-09-30 13:01:37 +03:00
logger.error("File not found", ex);
2015-09-22 12:42:27 +03:00
} finally {
if (inputStream != null) {
try {
inputStream.close();
} catch (IOException ex) {
2015-09-30 13:01:37 +03:00
logger.error("Failed to close", ex);
2015-09-22 12:42:27 +03:00
}
}
}
2015-09-22 12:46:12 +03:00
2015-09-22 12:42:27 +03:00
gridFsTemplate.delete(new Query(Criteria.where("_id").is(id)));
2015-09-22 12:46:12 +03:00
2015-09-22 12:42:27 +03:00
assertThat(gridFsTemplate.findOne(new Query(Criteria.where("_id").is(id))), is(nullValue()));
}
2015-09-22 12:46:12 +03:00
2015-09-22 12:42:27 +03:00
@Test
public void givenFileWithMetadataExist_whenGettingFileByResource_thenFileWithMetadataIsGotten() {
DBObject metaData = new BasicDBObject();
2015-10-14 16:29:38 +02:00
metaData.put("user", "alex");
2015-09-22 12:42:27 +03:00
InputStream inputStream = null;
try {
inputStream = new FileInputStream("src/main/resources/test.png");
2018-10-06 02:00:25 +03:00
gridFsTemplate.store(inputStream, "test.png", "image/png", metaData).toString();
2015-09-22 12:42:27 +03:00
} catch (FileNotFoundException ex) {
2015-09-30 13:01:37 +03:00
logger.error("File not found", ex);
2015-09-22 12:42:27 +03:00
} finally {
if (inputStream != null) {
try {
inputStream.close();
} catch (IOException ex) {
2015-09-30 13:01:37 +03:00
logger.error("Failed to close", ex);
2015-09-22 12:42:27 +03:00
}
}
}
2015-09-22 12:46:12 +03:00
2015-09-22 12:42:27 +03:00
GridFsResource[] gridFsResource = gridFsTemplate.getResources("test*");
2015-09-22 12:46:12 +03:00
2015-09-22 12:42:27 +03:00
assertNotNull(gridFsResource);
2015-09-22 12:46:12 +03:00
assertEquals(gridFsResource.length, 1);
2015-09-22 12:42:27 +03:00
assertThat(gridFsResource[0].getFilename(), is("test.png"));
}
}