summaryrefslogtreecommitdiff
path: root/frontend/gamma/tests/tests/Clipperz/Set.test.js
Side-by-side diff
Diffstat (limited to 'frontend/gamma/tests/tests/Clipperz/Set.test.js') (more/less context) (show whitespace changes)
-rw-r--r--frontend/gamma/tests/tests/Clipperz/Set.test.js15
1 files changed, 6 insertions, 9 deletions
diff --git a/frontend/gamma/tests/tests/Clipperz/Set.test.js b/frontend/gamma/tests/tests/Clipperz/Set.test.js
index 8122b07..f908816 100644
--- a/frontend/gamma/tests/tests/Clipperz/Set.test.js
+++ b/frontend/gamma/tests/tests/Clipperz/Set.test.js
@@ -1,120 +1,117 @@
/*
Copyright 2008-2011 Clipperz Srl
-This file is part of Clipperz's Javascript Crypto Library.
-Javascript Crypto Library provides web developers with an extensive
-and efficient set of cryptographic functions. The library aims to
-obtain maximum execution speed while preserving modularity and
-reusability.
+This file is part of Clipperz Community Edition.
+Clipperz Community Edition is an online password manager.
For further information about its features and functionalities please
-refer to http://www.clipperz.com
+refer to http://www.clipperz.com.
-* Javascript Crypto Library is free software: you can redistribute
+* Clipperz Community Edition is free software: you can redistribute
it and/or modify it under the terms of the GNU Affero General Public
License as published by the Free Software Foundation, either version
3 of the License, or (at your option) any later version.
-* Javascript Crypto Library is distributed in the hope that it will
+* Clipperz Community Edition is distributed in the hope that it will
be useful, but WITHOUT ANY WARRANTY; without even the implied
warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU Affero General Public License for more details.
* You should have received a copy of the GNU Affero General Public
- License along with Javascript Crypto Library. If not, see
+ License along with Clipperz Community Edition. If not, see
<http://www.gnu.org/licenses/>.
*/
var tests = {
//-------------------------------------------------------------------------
'set_test': function (someTestArgs) {
var deferredResult;
deferredResult = new Clipperz.Async.Deferred("set_test", someTestArgs);
deferredResult.addCallback(function () {
var set;
var object1;
var object2;
var object3;
set = new Clipperz.Set();
object1 = new Object();
object2 = new Object();
object3 = new Object();
object1.label = "object 1";
object2.label = "object 2";
object3.label = "object 3";
is(set.size(), 0, "A new set should be empty");
set.add(object1);
is(set.size(), 1);
is(set.contains(object1), true);
is(set.contains(object2), false);
set.add(object1);
is(set.size(), 1, "Adding the same object twice does not change the set content");
is(set.contains(object1), true);
is(set.contains(object2), false);
set.add(object2);
is(set.size(), 2);
is(set.contains(object1), true);
is(set.contains(object2), true);
is(set.contains(object3), false);
set.remove(object1);
is(set.size(), 1, "Size check after removing an object");
is(set.contains(object1), false);
is(set.contains(object2), true);
is(set.contains(object3), false);
set.remove(object1);
is(set.size(), 1, "Removing twice the same object does not change the set content");
is(set.contains(object1), false);
is(set.contains(object2), true);
is(set.contains(object3), false);
set.empty();
is(set.size(), 0);
{
var items;
var populatedSet;
items = ["item1", "item2", "item3"];
populatedSet = new Clipperz.Set({'items': items});
is(populatedSet.size(), 3);
is(populatedSet.contains("item1"), true);
is(populatedSet.contains("item4"), false);
items.splice(0, items.length);
is(populatedSet.size(), 3);
}
{
var items;
var deletedItems;
items = ["item1", "item2", "item3"];
set = new Clipperz.Set({'items': items});
deletedItems = ["item1"];
set.remove(deletedItems);
is(set.size(), 2, "here I am");
is(set.contains("item1"), false);
is(set.contains("item2"), true);
set = new Clipperz.Set({'items': items});
deletedItems = ["item1", "item2"];
set.remove(deletedItems);
is(set.size(), 1);
is(set.contains("item1"), false);
is(set.contains("item2"), false);