272 lines
7.5 KiB
JavaScript
272 lines
7.5 KiB
JavaScript
var request = require('supertest');
|
|
var loopback = require('loopback');
|
|
var assert = require('assert');
|
|
|
|
var app = loopback();
|
|
var path = require('path');
|
|
|
|
// expose a rest api
|
|
app.use(loopback.rest());
|
|
|
|
var dsImage = loopback.createDataSource({
|
|
connector: require('../lib/storage-connector'),
|
|
provider: 'filesystem',
|
|
root: path.join(__dirname, 'images'),
|
|
|
|
getFilename: function(fileInfo) {
|
|
return 'image-' + fileInfo.name;
|
|
},
|
|
acl: 'public-read',
|
|
allowedContentTypes: ['image/png', 'image/jpeg'],
|
|
maxFileSize: 5 * 1024 * 1024
|
|
});
|
|
|
|
var ImageContainer = dsImage.createModel('imageContainer');
|
|
app.model(ImageContainer);
|
|
|
|
var ds = loopback.createDataSource({
|
|
connector: require('../lib/storage-connector'),
|
|
provider: 'filesystem',
|
|
root: path.join(__dirname, 'images')
|
|
});
|
|
|
|
var Container = ds.createModel('container');
|
|
app.model(Container);
|
|
|
|
/*!
|
|
* Verify that the JSON response has the correct metadata properties.
|
|
* Please note the metadata vary by storage providers. This test assumes
|
|
* the 'filesystem' provider.
|
|
*
|
|
* @param {String} containerOrFile The container/file object
|
|
* @param {String} [name] The name to be checked if not undefined
|
|
*/
|
|
function verifyMetadata(containerOrFile, name) {
|
|
assert(containerOrFile);
|
|
|
|
// Name
|
|
if (name) {
|
|
assert.equal(containerOrFile.name, name);
|
|
}
|
|
// No sensitive information
|
|
assert(containerOrFile.uid === undefined);
|
|
assert(containerOrFile.gid === undefined);
|
|
|
|
// Timestamps
|
|
assert(containerOrFile.atime);
|
|
assert(containerOrFile.ctime);
|
|
assert(containerOrFile.mtime);
|
|
|
|
// Size
|
|
assert.equal(typeof containerOrFile.size, 'number');
|
|
}
|
|
|
|
describe('storage service', function () {
|
|
var server = null;
|
|
before(function (done) {
|
|
server = app.listen(3000, function () {
|
|
done();
|
|
});
|
|
});
|
|
|
|
after(function () {
|
|
server.close();
|
|
});
|
|
|
|
it('should create a container', function (done) {
|
|
|
|
request('http://localhost:3000')
|
|
.post('/containers')
|
|
.send({name: 'test-container'})
|
|
.set('Accept', 'application/json')
|
|
.set('Content-Type', 'application/json')
|
|
.expect('Content-Type', /json/)
|
|
.expect(200, function (err, res) {
|
|
verifyMetadata(res.body, 'test-container');
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('should get a container', function (done) {
|
|
|
|
request('http://localhost:3000')
|
|
.get('/containers/test-container')
|
|
.set('Accept', 'application/json')
|
|
.expect('Content-Type', /json/)
|
|
.expect(200, function (err, res) {
|
|
verifyMetadata(res.body, 'test-container');
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('should list containers', function (done) {
|
|
|
|
request('http://localhost:3000')
|
|
.get('/containers')
|
|
.set('Accept', 'application/json')
|
|
.expect('Content-Type', /json/)
|
|
.expect(200, function (err, res) {
|
|
assert(Array.isArray(res.body));
|
|
assert.equal(res.body.length, 2);
|
|
res.body.forEach(function(c) {
|
|
verifyMetadata(c);
|
|
});
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('should delete a container', function (done) {
|
|
|
|
request('http://localhost:3000')
|
|
.del('/containers/test-container')
|
|
.set('Accept', 'application/json')
|
|
.expect('Content-Type', /json/)
|
|
.expect(200, function (err, res) {
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('should list containers after delete', function (done) {
|
|
|
|
request('http://localhost:3000')
|
|
.get('/containers')
|
|
.set('Accept', 'application/json')
|
|
.expect('Content-Type', /json/)
|
|
.expect(200, function (err, res) {
|
|
assert(Array.isArray(res.body));
|
|
assert.equal(res.body.length, 1);
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('should list files', function (done) {
|
|
|
|
request('http://localhost:3000')
|
|
.get('/containers/album1/files')
|
|
.set('Accept', 'application/json')
|
|
.expect('Content-Type', /json/)
|
|
.expect(200, function (err, res) {
|
|
assert(Array.isArray(res.body));
|
|
res.body.forEach(function(f) {
|
|
verifyMetadata(f);
|
|
});
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('uploads files', function (done) {
|
|
|
|
request('http://localhost:3000')
|
|
.post('/containers/album1/upload')
|
|
.attach('image', path.join(__dirname, '../example/test.jpg'))
|
|
.set('Accept', 'application/json')
|
|
.expect('Content-Type', /json/)
|
|
.expect(200, function (err, res) {
|
|
assert.deepEqual(res.body, {"result": {"files": {"image": [
|
|
{"container": "album1", "name": "test.jpg", "type": "image/jpeg",
|
|
"size": 60475}
|
|
]}, "fields": {}}});
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('uploads files with renamer', function (done) {
|
|
|
|
request('http://localhost:3000')
|
|
.post('/imageContainers/album1/upload')
|
|
.attach('image', path.join(__dirname, '../example/test.jpg'))
|
|
.set('Accept', 'application/json')
|
|
.expect('Content-Type', /json/)
|
|
.expect(200, function (err, res) {
|
|
assert.deepEqual(res.body, {"result": {"files": {"image": [
|
|
{"container": "album1", "name": "image-test.jpg", "type": "image/jpeg", "acl":"public-read", "size": 60475}
|
|
]}, "fields": {}}});
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('uploads file wrong content type', function (done) {
|
|
|
|
request('http://localhost:3000')
|
|
.post('/imageContainers/album1/upload')
|
|
.attach('image', path.join(__dirname, '../example/app.js'))
|
|
.set('Accept', 'application/json')
|
|
.expect('Content-Type', /json/)
|
|
.expect(200, function (err, res) {
|
|
assert(err);
|
|
assert(res.body.error.message.indexOf('is not allowed') !== -1);
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('uploads file too large', function (done) {
|
|
|
|
request('http://localhost:3000')
|
|
.post('/imageContainers/album1/upload')
|
|
.attach('image', path.join(__dirname, '../example/largeImage.jpg'))
|
|
.set('Accept', 'application/json')
|
|
.expect('Content-Type', /json/)
|
|
.expect(200, function (err, res) {
|
|
assert(err);
|
|
assert(res.body.error.message.indexOf('maxFileSize exceeded') !== -1);
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('should get file by name', function (done) {
|
|
|
|
request('http://localhost:3000')
|
|
.get('/containers/album1/files/test.jpg')
|
|
.set('Accept', 'application/json')
|
|
.expect('Content-Type', /json/)
|
|
.expect(200, function (err, res) {
|
|
verifyMetadata(res.body, 'test.jpg');
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('should get file by renamed file name', function (done) {
|
|
|
|
request('http://localhost:3000')
|
|
.get('/imageContainers/album1/files/image-test.jpg')
|
|
.set('Accept', 'application/json')
|
|
.expect('Content-Type', /json/)
|
|
.expect(200, function (err, res) {
|
|
verifyMetadata(res.body, 'image-test.jpg');
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('downloads files', function (done) {
|
|
|
|
request('http://localhost:3000')
|
|
.get('/containers/album1/download/test.jpg')
|
|
.expect('Content-Type', 'image/jpeg')
|
|
.expect(200, function (err, res) {
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('should delete a file', function (done) {
|
|
|
|
request('http://localhost:3000')
|
|
.del('/containers/album1/files/test.jpg')
|
|
.set('Accept', 'application/json')
|
|
.expect('Content-Type', /json/)
|
|
.expect(200, function (err, res) {
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('reports errors if it fails to find the file to download', function (done) {
|
|
|
|
request('http://localhost:3000')
|
|
.get('/containers/album1/download/test_not_exist.jpg')
|
|
.expect('Content-Type', /json/)
|
|
.expect(500, function (err, res) {
|
|
assert(res.body.error);
|
|
done();
|
|
});
|
|
});
|
|
});
|