|
| 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