2018-02-17 09:55:30 -05:00
|
|
|
const MongoClient = require("mongodb").MongoClient;
|
|
|
|
|
const GridStore = require("mongodb").GridStore;
|
2016-06-27 06:40:43 +02:00
|
|
|
|
2018-07-02 23:30:14 -04:00
|
|
|
const GridStoreAdapter = require("../lib/Adapters/Files/GridStoreAdapter").GridStoreAdapter;
|
|
|
|
|
const Config = require("../lib/Config");
|
|
|
|
|
const FilesController = require('../lib/Controllers/FilesController').default;
|
2016-06-27 06:40:43 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
// Small additional tests to improve overall coverage
|
2016-08-15 16:48:39 -04:00
|
|
|
describe_only_db('mongo')("GridStoreAdapter",() =>{
|
2016-06-27 06:40:43 +02:00
|
|
|
it("should properly instanciate the GridStore when deleting a file", (done) => {
|
|
|
|
|
|
2018-02-17 09:55:30 -05:00
|
|
|
const databaseURI = 'mongodb://localhost:27017/parse';
|
|
|
|
|
const config = Config.get(Parse.applicationId);
|
|
|
|
|
const gridStoreAdapter = new GridStoreAdapter(databaseURI);
|
|
|
|
|
const filesController = new FilesController(gridStoreAdapter);
|
2016-06-27 06:40:43 +02:00
|
|
|
|
|
|
|
|
// save original unlink before redefinition
|
2018-02-17 09:55:30 -05:00
|
|
|
const originalUnlink = GridStore.prototype.unlink;
|
2016-06-27 06:40:43 +02:00
|
|
|
|
2018-02-17 09:55:30 -05:00
|
|
|
let gridStoreMode;
|
2016-06-27 06:40:43 +02:00
|
|
|
|
|
|
|
|
// new unlink method that will capture the mode in which GridStore was opened
|
|
|
|
|
GridStore.prototype.unlink = function() {
|
|
|
|
|
|
|
|
|
|
// restore original unlink during first call
|
|
|
|
|
GridStore.prototype.unlink = originalUnlink;
|
|
|
|
|
|
|
|
|
|
gridStoreMode = this.mode;
|
|
|
|
|
|
|
|
|
|
return originalUnlink.call(this);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
filesController.createFile(config, 'myFilename.txt', 'my file content', 'text/plain')
|
|
|
|
|
.then(myFile => {
|
|
|
|
|
|
|
|
|
|
return MongoClient.connect(databaseURI)
|
|
|
|
|
.then(database => {
|
|
|
|
|
|
|
|
|
|
// Verify the existance of the fs.files document
|
|
|
|
|
return database.collection('fs.files').count().then(count => {
|
|
|
|
|
expect(count).toEqual(1);
|
|
|
|
|
return database;
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
.then(database => {
|
|
|
|
|
|
|
|
|
|
// Verify the existance of the fs.files document
|
|
|
|
|
return database.collection('fs.chunks').count().then(count => {
|
|
|
|
|
expect(count).toEqual(1);
|
|
|
|
|
return database.close();
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
.then(() => {
|
|
|
|
|
return filesController.deleteFile(config, myFile.name);
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
.then(() => {
|
|
|
|
|
return MongoClient.connect(databaseURI)
|
|
|
|
|
.then(database => {
|
|
|
|
|
|
|
|
|
|
// Verify the existance of the fs.files document
|
|
|
|
|
return database.collection('fs.files').count().then(count => {
|
|
|
|
|
expect(count).toEqual(0);
|
|
|
|
|
return database;
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
.then(database => {
|
|
|
|
|
|
|
|
|
|
// Verify the existance of the fs.files document
|
|
|
|
|
return database.collection('fs.chunks').count().then(count => {
|
|
|
|
|
expect(count).toEqual(0);
|
|
|
|
|
return database.close();
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
.then(() => {
|
|
|
|
|
// Verify that gridStore was opened in read only mode
|
|
|
|
|
expect(gridStoreMode).toEqual('r');
|
|
|
|
|
|
|
|
|
|
done();
|
|
|
|
|
})
|
|
|
|
|
.catch(fail);
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
});
|