updated storage tests

This commit is contained in:
Danny Coates 2017-06-29 15:20:09 -07:00
parent 67f586b65c
commit a11b4b677c
No known key found for this signature in database
GPG key ID: 4C442633C62E00CB
2 changed files with 7 additions and 9 deletions

View file

@ -112,11 +112,10 @@ describe('Testing Set using aws', function() {
sinon.stub(crypto, 'randomBytes').returns(buf);
s3Stub.upload.callsArgWith(1, null, {});
return storage
.set('123', {}, 'Filename.moz', 'url.com')
.then(reply => {
assert.equal(reply.uuid, buf.toString('hex'));
assert.equal(reply.url, 'url.com');
assert.notEqual(reply.uuid, null);
.set('123', {}, 'Filename.moz', {})
.then(deleteKey => {
assert.equal(deleteKey, buf.toString('hex'));
assert.notEqual(deleteKey, null);
assert(expire.calledOnce);
assert(expire.calledWith('123', 86400000));
})