added missing tests

Added 2 tests to validate the error responses when a file is not found
This commit is contained in:
Cory Gottschalk 2018-06-12 20:31:30 -07:00
parent 970ecc7901
commit db669b1543
2 changed files with 19 additions and 1 deletions

View File

@ -196,6 +196,15 @@ describe('FileSystem based storage provider', function() {
});
});
it('should not get a file from a container', function(done) {
client.getFile('c1', 'f2.txt', function(err, f) {
assert(err);
assert.equal('ENOENT', err.code);
assert(!f);
done();
});
});
it('should destroy a container c1', function(done) {
client.destroyContainer('c1', function(err, container) {
// console.error(err);

View File

@ -133,6 +133,16 @@ describe('Storage service', function() {
});
});
it('should not get a file from a container', function(done) {
storageService.getFile('c1', 'f1.txt', function(err, f) {
assert(err);
assert.equal('ENOENT', err.code);
assert.equal(404, err.status);
assert(!f);
done();
});
});
it('should destroy a container c1', function(done) {
storageService.destroyContainer('c1', function(err, container) {
// console.error(err);
@ -142,4 +152,3 @@ describe('Storage service', function() {
});
});
});