@Test
public void testGetBlobLength() throws Exception {
int blobLength = 100;
String blobId = createAndWriteBlob(blobLength);
GetBlobLengthCommandMongo command = new GetBlobLengthCommandMongo(mongoConnection, blobId);
long length = command.execute();
assertEquals(blobLength, length);
}