Skip to content

Commit 783e92c

Browse files
committed
Merge pull request #428 from silexlabs/add-ds-test
added tests for FastNode
2 parents 971a91c + 1489382 commit 783e92c

File tree

3 files changed

+97
-2
lines changed

3 files changed

+97
-2
lines changed

cocktail/core/ds/FastNode.hx

+11-1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,11 @@ class FastNode<NodeClass:IFastNode<NodeClass>> implements IFastNode<NodeClass>
5050

5151
public function removeChild(oldChild:NodeClass):Void
5252
{
53+
if (oldChild.parentNode != cast(this))
54+
{
55+
throw 'not a child node';
56+
}
57+
5358
oldChild.parentNode = null;
5459

5560
if (firstChild == oldChild && lastChild == oldChild)
@@ -121,6 +126,11 @@ class FastNode<NodeClass:IFastNode<NodeClass>> implements IFastNode<NodeClass>
121126

122127
public function insertBefore(newChild:NodeClass, refChild:NodeClass):Void
123128
{
129+
if (refChild.parentNode != cast(this))
130+
{
131+
throw 'not a child node';
132+
}
133+
124134
if (firstChild == null || refChild == null)
125135
{
126136
appendChild(newChild);
@@ -148,4 +158,4 @@ class FastNode<NodeClass:IFastNode<NodeClass>> implements IFastNode<NodeClass>
148158
}
149159
}
150160

151-
}
161+
}

test/Main.hx

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@ import buddy.*;
33
class Main implements buddy.Buddy<[
44
core.url.URLTest,
55
core.event.EventTargetTest,
6-
core.event.EventListenerTest
6+
core.event.EventListenerTest,
7+
core.ds.FastNodeTest
78
]> {}

test/core/ds/FastNodeTest.hx

+84
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
package core.ds;
2+
3+
import buddy.*;
4+
using buddy.Should;
5+
6+
import cocktail.core.ds.FastNode;
7+
8+
class FastNodeTest extends BuddySuite {
9+
10+
public function new()
11+
{
12+
describe('Fast Node', function () {
13+
describe('#removeChild', function () {
14+
it('should remove an existing child', function () {
15+
var parentNode = new TestNode();
16+
var childNode = new TestNode();
17+
parentNode.appendChild(childNode);
18+
19+
parentNode.firstChild.should.be(childNode);
20+
21+
parentNode.removeChild(childNode);
22+
childNode.parentNode.should.be(null);
23+
parentNode.firstChild.should.be(null);
24+
});
25+
it('should throw if not a child', function () {
26+
var parentNode = new TestNode();
27+
var anotherNode = new TestNode();
28+
29+
parentNode.removeChild.bind(anotherNode)
30+
.should.throwValue('not a child node');
31+
});
32+
});
33+
34+
describe('#appendChild', function () {
35+
it('should add a child', function () {
36+
var parentNode = new TestNode();
37+
var childNode = new TestNode();
38+
parentNode.appendChild(childNode);
39+
40+
parentNode.firstChild.should.be(childNode);
41+
parentNode.lastChild.should.be(childNode);
42+
childNode.parentNode.should.be(parentNode);
43+
});
44+
});
45+
46+
describe('#insertBefore', function () {
47+
it('should insert the child before another one', function () {
48+
var parentNode = new TestNode();
49+
var firstChildNode = new TestNode();
50+
var childNode = new TestNode();
51+
52+
parentNode.appendChild(firstChildNode);
53+
parentNode.insertBefore(childNode, firstChildNode);
54+
55+
parentNode.firstChild.should.be(childNode);
56+
childNode.parentNode.should.be(parentNode);
57+
childNode.nextSibling.should.be(firstChildNode);
58+
childNode.previousSibling.should.be(null);
59+
parentNode.lastChild.should.be(firstChildNode);
60+
firstChildNode.parentNode.should.be(parentNode);
61+
firstChildNode.nextSibling.should.be(null);
62+
firstChildNode.previousSibling.should.be(childNode);
63+
});
64+
65+
it('should throw if ref node is not a child', function () {
66+
var parentNode = new TestNode();
67+
var childNode = new TestNode();
68+
var anotherNode = new TestNode();
69+
70+
parentNode.insertBefore.bind(childNode, anotherNode)
71+
.should.throwValue('not a child node');
72+
});
73+
});
74+
});
75+
}
76+
}
77+
78+
class TestNode extends FastNode<TestNode> implements IFastNode<TestNode>
79+
{
80+
public function new()
81+
{
82+
super();
83+
}
84+
}

0 commit comments

Comments
 (0)