aboutsummaryrefslogtreecommitdiff
path: root/includes/js/dojox/collections/tests/BinaryTree.js
blob: 48acaa48da92379c3a2c0473c7ec10a104435a2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
if(!dojo._hasResource["dojox.collections.tests.BinaryTree"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
dojo._hasResource["dojox.collections.tests.BinaryTree"] = true;
dojo.provide("dojox.collections.tests.BinaryTree");
dojo.require("dojox.collections.BinaryTree");

tests.register("dojox.collections.tests.BinaryTree", [
	function testCtor(t){
		var bt=new dojox.collections.BinaryTree("foo");
		t.assertTrue(bt instanceof dojox.collections.BinaryTree);
	},
	function testAdd(t){
		var bt=new dojox.collections.BinaryTree("foo");
		bt.add("bar");
		bt.add("baz");
		bt.add("buck");
		bt.add("shot");
		bt.add("apple");
		t.assertEqual("apple,bar,baz,buck,foo,shot",bt.toString());
	},
	function testClear(t){
		var bt=new dojox.collections.BinaryTree("foo");
		bt.add("bar");
		bt.add("baz");
		bt.add("buck");
		bt.add("shot");
		bt.add("apple");
		bt.clear();
		t.assertEqual(bt.count, 0);
	},
	function testClone(t){
		var bt=new dojox.collections.BinaryTree("foo");
		bt.add("bar");
		bt.add("baz");
		bt.add("buck");
		bt.add("shot");
		bt.add("apple");
		var bt2=bt.clone();
		t.assertEqual(bt2.count, 6);
		t.assertEqual(bt.toString(), bt2.toString());
	},
	function testContains(t){
		var bt=new dojox.collections.BinaryTree("foo");
		bt.add("bar");
		bt.add("baz");
		bt.add("buck");
		bt.add("shot");
		bt.add("apple");
		t.assertTrue(bt.contains("buck"));
		t.assertFalse(bt.contains("duck"));
	},
	function testDeleteData(t){
		var bt=new dojox.collections.BinaryTree("foo");
		bt.add("bar");
		bt.add("baz");
		bt.add("buck");
		bt.add("shot");
		bt.add("apple");
		bt.deleteData("buck");
		t.assertEqual("apple,bar,baz,foo,shot",bt.toString());
	},
	function testGetIterator(t){
		var bt=new dojox.collections.BinaryTree("foo");
		bt.add("bar");
		bt.add("baz");
		bt.add("buck");
		bt.add("shot");
		bt.add("apple");
		var itr=bt.getIterator();
		while(!itr.atEnd()){ itr.get(); }
		t.assertEqual("shot", itr.element);
	},
	function testSearch(t){
		var bt=new dojox.collections.BinaryTree("foo");
		bt.add("bar");
		bt.add("baz");
		bt.add("buck");
		bt.add("shot");
		bt.add("apple");
		t.assertEqual("buck", bt.search("buck").value);
	}
]);

}