linting issues
This commit is contained in:
parent
6f7930e34d
commit
c4b7a2bd97
|
@ -139,7 +139,7 @@ app.post('/delete/:id', (req, res) => {
|
||||||
|
|
||||||
app.post('/upload', (req, res, next) => {
|
app.post('/upload', (req, res, next) => {
|
||||||
const newId = crypto.randomBytes(5).toString('hex');
|
const newId = crypto.randomBytes(5).toString('hex');
|
||||||
let meta = JSON.parse(req.header('X-File-Metadata'));
|
const meta = JSON.parse(req.header('X-File-Metadata'));
|
||||||
meta.delete = crypto.randomBytes(10).toString('hex');
|
meta.delete = crypto.randomBytes(10).toString('hex');
|
||||||
log.info('meta', meta);
|
log.info('meta', meta);
|
||||||
req.pipe(req.busboy);
|
req.pipe(req.busboy);
|
||||||
|
@ -177,8 +177,4 @@ app.listen(conf.listen_port, () => {
|
||||||
|
|
||||||
const validateID = route_id => {
|
const validateID = route_id => {
|
||||||
return route_id.match(/^[0-9a-fA-F]{10}$/) !== null;
|
return route_id.match(/^[0-9a-fA-F]{10}$/) !== null;
|
||||||
};
|
};
|
||||||
|
|
||||||
const validateIV = route_id => {
|
|
||||||
return route_id.match(/^[0-9a-fA-F]{24}$/) !== null;
|
|
||||||
};
|
|
|
@ -4,7 +4,6 @@ const s3 = new AWS.S3();
|
||||||
const conf = require('./config.js');
|
const conf = require('./config.js');
|
||||||
const fs = require('fs');
|
const fs = require('fs');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
const crypto = require('crypto');
|
|
||||||
|
|
||||||
const mozlog = require('./log.js');
|
const mozlog = require('./log.js');
|
||||||
|
|
||||||
|
|
|
@ -112,11 +112,8 @@ describe('Testing Set using aws', function() {
|
||||||
sinon.stub(crypto, 'randomBytes').returns(buf);
|
sinon.stub(crypto, 'randomBytes').returns(buf);
|
||||||
s3Stub.upload.callsArgWith(1, null, {});
|
s3Stub.upload.callsArgWith(1, null, {});
|
||||||
return storage
|
return storage
|
||||||
.set('123', {}, 'Filename.moz', {})
|
.set('123', '123', {}, 'Filename.moz', {})
|
||||||
.then(([deleteKey, id]) => {
|
.then(() => {
|
||||||
assert.equal(deleteKey, buf.toString('hex'));
|
|
||||||
assert.notEqual(id, null);
|
|
||||||
assert.notEqual(deleteKey, null);
|
|
||||||
assert(expire.calledOnce);
|
assert(expire.calledOnce);
|
||||||
assert(expire.calledWith('123', 86400000));
|
assert(expire.calledWith('123', 86400000));
|
||||||
})
|
})
|
||||||
|
|
|
@ -122,9 +122,9 @@ describe('Testing Set to local filesystem', function() {
|
||||||
fsStub.createWriteStream.returns({ on: stub });
|
fsStub.createWriteStream.returns({ on: stub });
|
||||||
|
|
||||||
return storage
|
return storage
|
||||||
.set('test', { pipe: sinon.stub() }, 'Filename.moz', {})
|
.set('test', 'test', { pipe: sinon.stub() }, 'Filename.moz', {})
|
||||||
.then(deleteKey => {
|
.then(() => {
|
||||||
assert(deleteKey);
|
assert(1);
|
||||||
})
|
})
|
||||||
.catch(err => assert.fail());
|
.catch(err => assert.fail());
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue