305 lines
9.1 KiB
JavaScript
305 lines
9.1 KiB
JavaScript
// Copyright IBM Corp. 2014,2016. All Rights Reserved.
|
|
// Node module: loopback-component-storage
|
|
// This file is licensed under the Artistic License 2.0.
|
|
// License text available at https://opensource.org/licenses/Artistic-2.0
|
|
'use strict';
|
|
|
|
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', {}, {base: 'Model'});
|
|
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(0, function() {
|
|
done();
|
|
});
|
|
});
|
|
|
|
after(function() {
|
|
server.close();
|
|
});
|
|
|
|
it('should create a container', function(done) {
|
|
request('http://localhost:' + app.get('port'))
|
|
.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:' + app.get('port'))
|
|
.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:' + app.get('port'))
|
|
.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:' + app.get('port'))
|
|
.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:' + app.get('port'))
|
|
.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:' + app.get('port'))
|
|
.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:' + app.get('port'))
|
|
.post('/containers/album1/upload')
|
|
.attach('image', path.join(__dirname, './fixtures/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:' + app.get('port'))
|
|
.post('/imageContainers/album1/upload')
|
|
.attach('image', path.join(__dirname, './fixtures/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', 'originalFilename': 'test.jpg', 'type': 'image/jpeg', 'acl': 'public-read', 'size': 60475},
|
|
]}, 'fields': {}}});
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('uploads file wrong content type', function(done) {
|
|
request('http://localhost:' + app.get('port'))
|
|
.post('/imageContainers/album1/upload')
|
|
.attach('image', path.join(__dirname, './fixtures/app.js'))
|
|
.set('Accept', 'application/json')
|
|
.set('Connection', 'keep-alive')
|
|
.expect('Content-Type', /json/)
|
|
.expect(500, function(err, res) {
|
|
assert(res.body.error.message.indexOf('is not allowed') !== -1);
|
|
done(err);
|
|
});
|
|
});
|
|
|
|
it('uploads file too large', function(done) {
|
|
request('http://localhost:' + app.get('port'))
|
|
.post('/imageContainers/album1/upload')
|
|
.attach('image', path.join(__dirname, './fixtures/largeImage.jpg'))
|
|
.set('Accept', 'application/json')
|
|
.set('Connection', 'keep-alive')
|
|
.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:' + app.get('port'))
|
|
.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:' + app.get('port'))
|
|
.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:' + app.get('port'))
|
|
.get('/containers/album1/download/test.jpg')
|
|
.expect('Content-Type', 'image/jpeg')
|
|
.expect(200, function(err, res) {
|
|
if (err) done(err);
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('should run a function before a download is started by a client', function(done) {
|
|
var hookCalled = false;
|
|
|
|
var Container = app.models.Container;
|
|
|
|
Container.beforeRemote('download', function(ctx, unused, cb) {
|
|
hookCalled = true;
|
|
cb();
|
|
});
|
|
|
|
request('http://localhost:' + app.get('port'))
|
|
.get('/containers/album1/download/test.jpg')
|
|
.expect('Content-Type', 'image/jpeg')
|
|
.expect(200, function(err, res) {
|
|
if (err) done(err);
|
|
assert(hookCalled, 'beforeRemote hook was not called');
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('should run a function after a download is started by a client', function(done) {
|
|
var hookCalled = false;
|
|
|
|
var Container = app.models.Container;
|
|
|
|
Container.afterRemote('download', function(ctx, unused, cb) {
|
|
hookCalled = true;
|
|
cb();
|
|
});
|
|
|
|
request('http://localhost:' + app.get('port'))
|
|
.get('/containers/album1/download/test.jpg')
|
|
.expect('Content-Type', 'image/jpeg')
|
|
.expect(200, function(err, res) {
|
|
if (err) done(err);
|
|
assert(hookCalled, 'afterRemote hook was not called');
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('should delete a file', function(done) {
|
|
request('http://localhost:' + app.get('port'))
|
|
.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:' + app.get('port'))
|
|
.get('/containers/album1/download/test_not_exist.jpg')
|
|
.expect('Content-Type', /json/)
|
|
.expect(500, function(err, res) {
|
|
assert(res.body.error);
|
|
done();
|
|
});
|
|
});
|
|
});
|