Commit 45402dc1 authored by preetwinder's avatar preetwinder

Add test for nocapacitystorage

parent d863e2d0
/*
* Copyright 2019, Nexedi SA
*
* This program is free software: you can Use, Study, Modify and Redistribute
* it under the terms of the GNU General Public License version 3, or (at your
* option) any later version, as published by the Free Software Foundation.
*
* You can also Link and Combine this program with other software covered by
* the terms of any of the Free Software licenses or any of the Open Source
* Initiative approved licenses and Convey the resulting work. Corresponding
* source of such a combination shall include the source code for all other
* software used.
*
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* See COPYING file for full licensing terms.
* See https://www.nexedi.com/licensing for rationale and options.
*/
/*jslint nomen: true */
/*global Blob*/
(function (jIO, QUnit) {
"use strict";
var test = QUnit.test,
stop = QUnit.stop,
expect = QUnit.expect,
deepEqual = QUnit.deepEqual,
ok = QUnit.ok,
start = QUnit.start,
equal = QUnit.equal,
module = QUnit.module,
throws = QUnit.throws;
/////////////////////////////////////////////////////////////////
// Custom test substorage definition
/////////////////////////////////////////////////////////////////
function DummyStorage() {
return this;
}
jIO.addStorage('dummystorage', DummyStorage);
/////////////////////////////////////////////////////////////////
// NoCapacityStorage constructor
/////////////////////////////////////////////////////////////////
module("NoCapacityStorage.constructor");
test("create storage", function () {
var jio = jIO.createJIO({
type: "nocapacity",
sub_storage: {
type: "dummystorage"
}
});
equal(jio.__type, "nocapacity");
equal(jio.__storage._sub_storage.__type, "dummystorage");
});
/////////////////////////////////////////////////////////////////
// NoCapacityStorage.get
/////////////////////////////////////////////////////////////////
module("NoCapacityStorage.get");
test("get called substorage get", function () {
stop();
expect(2);
var jio = jIO.createJIO({
type: "nocapacity",
sub_storage: {
type: "dummystorage"
}
});
DummyStorage.prototype.get = function (id) {
equal(id, "1");
return {"name": "test_name"};
};
jio.get("1")
.then(function (result) {
deepEqual(result, {
"name": "test_name"
});
})
.fail(function (error) {
ok(false, error);
})
.always(function () {
start();
});
});
/////////////////////////////////////////////////////////////////
// NoCapacityStorage.allAttachments
/////////////////////////////////////////////////////////////////
module("NoCapacityStorage.allAttachments");
test("allAttachments called substorage allAttachments", function () {
stop();
expect(2);
var jio = jIO.createJIO({
type: "nocapacity",
sub_storage: {
type: "dummystorage"
}
});
DummyStorage.prototype.allAttachments = function (id) {
equal(id, "1");
return {attachmentname: {}};
};
jio.allAttachments("1")
.then(function (result) {
deepEqual(result, {
attachmentname: {}
});
})
.fail(function (error) {
ok(false, error);
})
.always(function () {
start();
});
});
/////////////////////////////////////////////////////////////////
// NoCapacityStorage.post
/////////////////////////////////////////////////////////////////
module("NoCapacityStorage.post");
test("post called substorage post", function () {
stop();
expect(2);
var jio = jIO.createJIO({
type: "nocapacity",
sub_storage: {
type: "dummystorage"
}
});
DummyStorage.prototype.post = function (param) {
deepEqual(param, {"name": "test_name"});
return "posted";
};
jio.post({"name": "test_name"})
.then(function (result) {
equal(result, "posted");
})
.fail(function (error) {
ok(false, error);
})
.always(function () {
start();
});
});
/////////////////////////////////////////////////////////////////
// NoCapacityStorage.put
/////////////////////////////////////////////////////////////////
module("NoCapacityStorage.put");
test("put called substorage put", function () {
stop();
expect(3);
var jio = jIO.createJIO({
type: "nocapacity",
sub_storage: {
type: "dummystorage"
}
});
DummyStorage.prototype.put = function (id, param) {
equal(id, "1");
deepEqual(param, {"name": "test_name"});
return id;
};
jio.put("1", {"name": "test_name"})
.then(function (result) {
equal(result, "1");
})
.fail(function (error) {
ok(false, error);
})
.always(function () {
start();
});
});
/////////////////////////////////////////////////////////////////
// NoCapacityStorage.remove
/////////////////////////////////////////////////////////////////
module("NoCapacityStorage.remove");
test("remove called substorage remove", function () {
stop();
expect(2);
var jio = jIO.createJIO({
type: "nocapacity",
sub_storage: {
type: "dummystorage"
}
});
DummyStorage.prototype.remove = function (id) {
deepEqual(id, "1");
return id;
};
jio.remove("1")
.then(function (result) {
equal(result, "1");
})
.fail(function (error) {
ok(false, error);
})
.always(function () {
start();
});
});
/////////////////////////////////////////////////////////////////
// NoCapacityStorage.getAttachment
/////////////////////////////////////////////////////////////////
module("NoCapacityStorage.getAttachment");
test("getAttachment called substorage getAttachment", function () {
stop();
expect(3);
var jio = jIO.createJIO({
type: "nocapacity",
sub_storage: {
type: "dummystorage"
}
}),
blob = new Blob([""]);
DummyStorage.prototype.getAttachment = function (id, name) {
equal(id, "1");
equal(name, "test_name");
return blob;
};
jio.getAttachment("1", "test_name")
.then(function (result) {
equal(result, blob);
})
.fail(function (error) {
ok(false, error);
})
.always(function () {
start();
});
});
/////////////////////////////////////////////////////////////////
// NoCapacityStorage.putAttachment
/////////////////////////////////////////////////////////////////
module("NoCapacityStorage.putAttachment");
test("putAttachment called substorage putAttachment", function () {
stop();
expect(4);
var jio = jIO.createJIO({
type: "nocapacity",
sub_storage: {
type: "dummystorage"
}
}),
blob = new Blob([""]);
DummyStorage.prototype.putAttachment = function (id, name, blob2) {
equal(id, "1");
equal(name, "test_name");
deepEqual(blob2, blob);
return "OK";
};
jio.putAttachment("1", "test_name", blob)
.then(function (result) {
equal(result, "OK");
})
.fail(function (error) {
ok(false, error);
})
.always(function () {
start();
});
});
/////////////////////////////////////////////////////////////////
// NoCapacity.removeAttachment
/////////////////////////////////////////////////////////////////
module("NoCapacityStorage.removeAttachment");
test("removeAttachment called substorage removeAttachment", function () {
stop();
expect(3);
var jio = jIO.createJIO({
type: "nocapacity",
sub_storage: {
type: "dummystorage"
}
});
DummyStorage.prototype.removeAttachment = function (id, name) {
equal(id, "1");
equal(name, "test_name");
return "removed";
};
jio.removeAttachment("1", "test_name")
.then(function (result) {
equal(result, "removed");
})
.fail(function (error) {
ok(false, error);
})
.always(function () {
start();
});
});
/////////////////////////////////////////////////////////////////
// NoCapacityStorage.hasCapacity
/////////////////////////////////////////////////////////////////
module("NoCapacityStorage.hasCapacity");
test("list capacity is not implemented", function () {
DummyStorage.prototype.hasCapacity = function () {
return true;
};
var jio = jIO.createJIO({
type: "nocapacity",
sub_storage: {
type: "dummystorage"
}
});
throws(
function () {
jio.hasCapacity("list");
},
function (error) {
equal(error.message,
"Capacity 'list' is not implemented on 'nocapacity'");
return true;
}
);
});
}(jIO, QUnit));
\ No newline at end of file
...@@ -65,6 +65,7 @@ ...@@ -65,6 +65,7 @@
'test/jio.storage/fbstorage.tests.js', 'test/jio.storage/fbstorage.tests.js',
'test/jio.storage/gdrivestorage.tests.js', 'test/jio.storage/gdrivestorage.tests.js',
'test/jio.storage/memorystorage.tests.js', 'test/jio.storage/memorystorage.tests.js',
'test/jio.storage/nocapacitystorage.tests.js',
'test/jio.storage/querystorage.tests.js', 'test/jio.storage/querystorage.tests.js',
'test/jio.storage/replicatestorage.tests.js', 'test/jio.storage/replicatestorage.tests.js',
'test/jio.storage/replicatestorage_fastrepair.tests.js', 'test/jio.storage/replicatestorage_fastrepair.tests.js',
......
...@@ -77,6 +77,7 @@ See https://www.nexedi.com/licensing for rationale and options. ...@@ -77,6 +77,7 @@ See https://www.nexedi.com/licensing for rationale and options.
<!--script src="jio.storage/websqlstorage.tests.js"></script--> <!--script src="jio.storage/websqlstorage.tests.js"></script-->
<script src="jio.storage/fbstorage.tests.js"></script> <script src="jio.storage/fbstorage.tests.js"></script>
<script src="jio.storage/httpstorage.tests.js"></script> <script src="jio.storage/httpstorage.tests.js"></script>
<script src="jio.storage/nocapacitystorage.tests.js"></script>
<!--script src="../src/jio.storage/xwikistorage.js"></script> <!--script src="../src/jio.storage/xwikistorage.js"></script>
<script src="jio.storage/xwikistorage.tests.js"></script--> <script src="jio.storage/xwikistorage.tests.js"></script-->
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment