'),
- appended = c.doc().append({text: 'Alice'}),
- children = c.doc().children();
-
- expect(children.length).to.equal(2);
- expect(children[1].sameNode(appended)).to.be.true;
- expect(children[1].getText()).to.equal('Alice');
- });
-
- it('can put new NodeElement at the beginning', function() {
- var c = canvas.fromXML('
'),
- prepended = c.doc().prepend({tag: 'header', klass: 'some.class'}),
- children = c.doc().children();
-
- expect(children).to.have.length(2);
- expect(children[0].sameNode(prepended)).to.be.true;
- });
-
- it('can put new TextElement at the beginning', function() {
- var c = canvas.fromXML('
'),
- prepended = c.doc().prepend({text: 'Alice'}),
- children = c.doc().children();
-
- expect(children).to.have.length(2)
- expect(children[0].sameNode(prepended)).to.be.true;
- expect(children[0].getText()).to.equal('Alice');
- });
-
- it('can put new NodeElement after another NodeElement', function() {
- var c = canvas.fromXML('
'),
- div = c.doc().children()[0],
- added = div.after({tag: 'header', klass: 'some.class'}),
- children = c.doc().children();
- expect(children.length).to.equal(2);
- expect(children[1].sameNode(added)).to.be.true;
- });
-
- it('can put new Nodeelement before another element', function() {
- var c = canvas.fromXML('
'),
- div = c.doc().children()[0],
- added = div.before({tag: 'header', klass: 'some.class'}),
- children = c.doc().children();
- expect(children.length).to.equal(2);
- expect(children[0].sameNode(added)).to.be.true;
- });
-
- it('can put new DocumentNodeElement after DocumentTextElement', function() {
- var c = canvas.fromXML('
'),
- text = c.doc().children()[0],
- added = text.after({tag: 'p'}),
- children = c.doc().children();
-
- expect(children.length).to.equal(2);
- expect(children[0]).to.be.instanceOf(documentElement.DocumentTextElement);
- expect(children[0].getText()).to.equal('Alice');
- expect(children[1]).to.be.instanceOf(documentElement.DocumentNodeElement);
- expect(children[1].sameNode(added)).to.be.true;
- });
- it('can put new DocumentNodeElement before DocumentTextElement', function() {
- var c = canvas.fromXML('
'),
- text = c.doc().children()[0],
- added = text.before({tag: 'p'}),
- children = c.doc().children();
-
- expect(children.length).to.equal(2);
- expect(children[0]).to.be.instanceOf(documentElement.DocumentNodeElement);
- expect(children[0].sameNode(added)).to.be.true;
- expect(children[1]).to.be.instanceOf(documentElement.DocumentTextElement);
- expect(children[1].getText()).to.equal('Alice');
- });
-
- it('can divide DocumentTextElement with a new DocumentNodeElement', function() {
- var c = canvas.fromXML('
'),
- section = c.doc(),
- text = section.children()[0];
-
- var returned = text.divide({tag: 'aside', klass: 'footnote', offset: 5}),
- sectionChildren = section.children(),
- lhsText = sectionChildren[0],
- rhsText = sectionChildren[2];
-
- expect(lhsText.getText()).to.equal('Alice');
- expect(returned.sameNode(sectionChildren[1]));
- expect(rhsText.getText()).to.equal(' has a cat');
- });
-
- it('treats dividing DocumentTextElement at the very end as appending after it', function() {
- var c = canvas.fromXML('
'),
- section = c.doc(),
- text = section.children()[0];
-
- var returned = text.divide({tag: 'aside', klass: 'footnote', offset: 15}),
- sectionChildren = section.children(),
- textElement = sectionChildren[0],
- nodeElement = sectionChildren[1];
-
- expect(sectionChildren.length).to.equal(2);
- expect(textElement.getText()).to.equal('Alice has a cat');
- expect(returned.sameNode(nodeElement)).to.be.true;
- expect(nodeElement.getWlxmlTag()).to.equal('aside');
- });
-
- it('treats dividing DocumentTextElement at the very beginning as appending before it', function() {
- var c = canvas.fromXML('
'),
- section = c.doc(),
- text = section.children()[0];
-
- var returned = text.divide({tag: 'aside', klass: 'footnote', offset: 0}),
- sectionChildren = section.children(),
- nodeElement = sectionChildren[0],
- textElement = sectionChildren[1];
-
- expect(sectionChildren.length).to.equal(2);
- expect(textElement.getText()).to.equal('Alice has a cat');
- expect(returned.sameNode(nodeElement)).to.be.true;
- expect(nodeElement.getWlxmlTag()).to.equal('aside');
- });
- });
-
- describe('Removing elements', function() {
- it('merges left and right DocumentTextElement sibling of a detached DocumentNodeElement', function() {
- var c = canvas.fromXML('
'),
- section = c.doc(),
- div = section.children()[1];
-
- div.detach();
-
- var sectionChildren = section.children(),
- textElement = sectionChildren[0];
-
- expect(sectionChildren).to.have.length(1);
- expect(textElement.getText()).to.equal('Alicea cat');
- });
- });
-
- describe('Splitting text', function() {
-
- it('splits DocumentTextElement\'s parent into two DocumentNodeElements of the same type', function() {
- var c = canvas.fromXML('
'),
- section = c.doc(),
- text = section.children()[0].children()[0];
-
- var returnedValue = text.split({offset: 5});
- expect(section.children().length).to.equal(2, 'section has two children');
-
- var header1 = section.children()[0];
- var header2 = section.children()[1];
-
- expect(header1.getWlxmlTag()).to.equal('header', 'first section child represents wlxml header');
- expect(header1.children().length).to.equal(1, 'first header has one text child');
- expect(header1.children()[0].getText()).to.equal('Some ', 'first header has correct content');
- expect(header2.getWlxmlTag()).to.equal('header', 'second section child represents wlxml header');
- expect(header2.children().length).to.equal(1, 'second header has one text child');
- expect(header2.children()[0].getText()).to.equal('header', 'second header has correct content');
-
- expect(returnedValue.first.sameNode(header1)).to.equal(true, 'first node returnde');
- expect(returnedValue.second.sameNode(header2)).to.equal(true, 'second node returned');
- });
-
- it('leaves empty copy of DocumentNodeElement if splitting at the very beginning', function() {
- var c = canvas.fromXML('
'),
- section = c.doc(),
- text = section.children()[0].children()[0];
-
- text.split({offset: 0});
-
- var header1 = section.children()[0];
- var header2 = section.children()[1];
-
- expect(header1.children().length).to.equal(0);
- expect(header2.children()[0].getText()).to.equal('Some header');
- });
-
- it('leaves empty copy of DocumentNodeElement if splitting at the very end', function() {
- var c = canvas.fromXML('
'),
- section = c.doc(),
- text = section.children()[0].children()[0];
-
- text.split({offset: 11});
-
- var header1 = section.children()[0];
- var header2 = section.children()[1];
-
- expect(header1.children()[0].getText()).to.equal('Some header');
- expect(header2.children().length).to.equal(0);
- });
-
- it('keeps DocumentTextElement\'s parent\'s children elements intact', function() {
- var c = canvas.fromXML('\
-
\
- \
- A fancy and nice header\
- \
- '),
- section = c.doc(),
- header = section.children()[0],
- textAnd = header.children()[2];
-
- textAnd.split({offset: 2});
-
- var sectionChildren = section.children();
- expect(sectionChildren.length).to.equal(2, 'Section has two children');
- expect(sectionChildren[0].getWlxmlTag()).to.equal('header', 'First section element is a wlxml header');
- expect(sectionChildren[1].getWlxmlTag()).to.equal('header', 'Second section element is a wlxml header');
-
- var firstHeaderChildren = sectionChildren[0].children();
- expect(firstHeaderChildren.length).to.equal(3, 'First header has three children');
- expect(firstHeaderChildren[0].getText()).to.equal('A ', 'First header starts with a text');
- expect(firstHeaderChildren[1].getWlxmlTag()).to.equal('span', 'First header has span in the middle');
- expect(firstHeaderChildren[2].getText()).to.equal(' a', 'First header ends with text');
-
- var secondHeaderChildren = sectionChildren[1].children();
- expect(secondHeaderChildren.length).to.equal(3, 'Second header has three children');
- expect(secondHeaderChildren[0].getText()).to.equal('nd ', 'Second header starts with text');
- expect(secondHeaderChildren[1].getWlxmlTag()).to.equal('span', 'Second header has span in the middle');
- expect(secondHeaderChildren[2].getText()).to.equal(' header', 'Second header ends with text');
- });
- });
-
- describe('wrapping', function() {
- it('wraps DocumentNodeElement', function() {
- var c = canvas.fromXML('
'),
- div = c.doc().children()[0];
-
- var returned = div.wrapWithNodeElement({tag: 'header', klass: 'some.class'}),
- parent = div.parent(),
- parent2 = c.doc().children()[0];
-
- expect(returned.sameNode(parent)).to.be.true;
- expect(returned.sameNode(parent2)).to.be.true;
- expect(returned.getWlxmlTag()).to.equal('header');
- expect(returned.getWlxmlClass()).to.equal('some.class');
- });
- it('wraps DocumentTextElement', function() {
- var c = canvas.fromXML('
'),
- text = c.doc().children()[0];
-
- var returned = text.wrapWithNodeElement({tag: 'header', klass: 'some.class'}),
- parent = text.parent(),
- parent2 = c.doc().children()[0];
-
- expect(returned.sameNode(parent)).to.be.true;
- expect(returned.sameNode(parent2)).to.be.true;
- expect(returned.getWlxmlTag()).to.equal('header');
- expect(returned.getWlxmlClass()).to.equal('some.class');
- });
-
- describe('wrapping part of DocumentTextElement', function() {
- [{start: 5, end: 12}, {start: 12, end: 5}].forEach(function(offsets) {
- it('wraps in the middle ' + offsets.start + '/' + offsets.end, function() {
- var c = canvas.fromXML('
'),
- text = c.doc().children()[0];
-
- var returned = text.wrapWithNodeElement({tag: 'header', klass: 'some.class', start: offsets.start, end: offsets.end}),
- children = c.doc().children();
-
- expect(children.length).to.equal(3);
-
- expect(children[0]).to.be.instanceOf(documentElement.DocumentTextElement);
- expect(children[0].getText()).to.equal('Alice');
-
- expect(children[1].sameNode(returned)).to.be.true;
- expect(returned.getWlxmlTag()).to.equal('header');
- expect(returned.getWlxmlClass()).to.equal('some.class');
- expect(children[1].children().length).to.equal(1);
- expect(children[1].children()[0].getText()).to.equal(' has a ');
-
- expect(children[2]).to.be.instanceOf(documentElement.DocumentTextElement);
- expect(children[2].getText()).to.equal('cat');
- });
- });
-
- it('wraps whole text inside DocumentTextElement if offsets span entire content', function() {
- var c = canvas.fromXML('
'),
- text = c.doc().children()[0];
-
- var returned = text.wrapWithNodeElement({tag: 'header', klass: 'some.class', start: 0, end: 15}),
- children = c.doc().children();
-
- expect(children.length).to.equal(1);
- expect(children[0]).to.be.instanceOf(documentElement.DocumentNodeElement);
- expect(children[0].children()[0].getText()).to.equal('Alice has a cat');
- });
- });
-
- it('wraps text spanning multiple sibling DocumentTextNodes', function() {
- var c = canvas.fromXML('
'),
- section = c.doc(),
- wrapper = c.wrapText({
- inside: section,
- _with: {tag: 'span', klass: 'some.class'},
- offsetStart: 6,
- offsetEnd: 4,
- textNodeIdx: [0,2]
- });
-
- expect(section.children().length).to.equal(2);
- expect(section.children()[0]).to.be.instanceOf(documentElement.DocumentTextElement);
- expect(section.children()[0].getText()).to.equal('Alice ');
-
- var wrapper2 = section.children()[1];
- expect(wrapper2.sameNode(wrapper)).to.be.true;
-
- var wrapperChildren = wrapper.children();
- expect(wrapperChildren.length).to.equal(3);
- expect(wrapperChildren[0].getText()).to.equal('has a ');
-
- expect(wrapperChildren[1]).to.be.instanceOf(documentElement.DocumentNodeElement);
- expect(wrapperChildren[1].children().length).to.equal(1);
- expect(wrapperChildren[1].children()[0].getText()).to.equal('small');
-
- expect(wrapperChildren[2].getText()).to.equal(' cat');
- });
-
- it('wraps multiple sibling Elements', function() {
- var c = canvas.fromXML('
'),
- section = c.doc(),
- aliceText = section.children()[0],
- firstDiv = section.children()[1],
- lastDiv = section.children()[section.children().length -1];
-
- var returned = c.wrapElements({
- element1: aliceText,
- element2: lastDiv,
- _with: {tag: 'header'}
- });
-
- var sectionChildren = section.children(),
- header = sectionChildren[0],
- headerChildren = header.children();
-
- expect(sectionChildren).to.have.length(1);
- expect(header.sameNode(returned)).to.equal(true, 'wrapper returned');
- expect(headerChildren).to.have.length(3);
- expect(headerChildren[0].sameNode(aliceText)).to.equal(true, 'first node wrapped');
- expect(headerChildren[1].sameNode(firstDiv)).to.equal(true, 'second node wrapped');
- expect(headerChildren[2].sameNode(lastDiv)).to.equal(true, 'third node wrapped');
- });
- it('wraps multiple sibling Elements - middle case', function() {
- var c = canvas.fromXML('
'),
- section = c.doc(),
- div1 = section.children()[0],
- div2 = section.children()[1],
- div3 = section.children()[2],
- div4 = section.children()[3];
-
- var returned = c.wrapElements({
- element1: div2,
- element2: div3,
- _with: {tag: 'header'}
- });
-
- var sectionChildren = section.children(),
- header = sectionChildren[1],
- headerChildren = header.children();
-
- expect(sectionChildren).to.have.length(3);
- expect(headerChildren).to.have.length(2);
- expect(headerChildren[0].sameNode(div2)).to.equal(true, 'first node wrapped');
- expect(headerChildren[1].sameNode(div3)).to.equal(true, 'second node wrapped');
- });
- });
-
- describe('unwrapping DocumentTextElement from its parent DocumentNodeElement if it\'s its only child', function() {
- it('unwraps text element from its parent and stays between its old parent siblings', function() {
- var c = canvas.fromXML('
'),
- section = c.doc(),
- sectionChildren = section.children(),
- divAlice = sectionChildren[0],
- divHas = sectionChildren[1],
- textHas = divHas.children()[0],
- divCat = sectionChildren[2];
-
- var newTextContainer = textHas.unwrap(),
- sectionChildren = section.children();
-
- expect(sectionChildren[0].sameNode(divAlice)).to.equal(true, 'divAlice ok');
- expect(newTextContainer.sameNode(section)).to.equal(true, 'unwrap returns new text parent DocumentNodeElement');
- expect(sectionChildren[1].getText()).to.equal('has');
- expect(sectionChildren[2].sameNode(divCat)).to.equal(true, 'divCat ok');
-
- });
- it('unwraps and join with its old parent adjacent text elements ', function() {
- var c = canvas.fromXML('
'),
- section = c.doc(),
- text = section.children()[1].children()[0];
-
- var newTextContainer = text.unwrap();
-
- expect(section.children().length).to.equal(1, 'section has one child');
- expect(section.children()[0].getText()).to.equal('Alice has a cat');
- expect(newTextContainer.sameNode(c.doc())).to.equal(true, 'unwrap returns new text parent DocumentNodeElement');
- });
-
- it('unwraps text element from its parent - first child case', function() {
- var c = canvas.fromXML('
'),
- section = c.doc(),
- span = section.children()[0];
-
- span.children()[0].unwrap();
-
- var sectionChildren = section.children();
-
- expect(sectionChildren).to.have.length(1);
- expect(sectionChildren[0].getText()).to.equal('Sometext');
- });
- });
-
- describe('unwrapping the whole content of a DocumentNodeElement', function() {
- it('removes a DocumentNodeElement but keeps its content', function() {
- var c = canvas.fromXML('
'),
- section = c.doc(),
- div = c.doc().children()[0],
- span = div.children()[1];
-
- var range = div.unwrapContents(),
- sectionChildren = section.children();
-
- expect(sectionChildren).to.have.length(3);
- expect(sectionChildren[0].getText()).to.equal('Alice has');
- expect(sectionChildren[1].sameNode(span)).to.equal(true, 'span ok');
- expect(sectionChildren[2].getText()).to.equal(' cat');
-
- expect(range.element1.sameNode(sectionChildren[0])).to.equal(true, 'range start ok');
- expect(range.element2.sameNode(sectionChildren[2])).to.equal(true, 'range end ok');
- });
- it('merges text elements on the boundries', function() {
- var c = canvas.fromXML('
'),
- section = c.doc(),
- div = c.doc().children()[1],
- span = div.children()[1];
-
- var range = div.unwrapContents(),
- sectionChildren = section.children();
-
- expect(sectionChildren).to.have.length(3);
- expect(sectionChildren[0].getText()).to.equal('Alicehas a ');
- expect(sectionChildren[1].sameNode(span)).to.equal(true, 'span ok');
- expect(sectionChildren[2].getText()).to.equal('!!!');
-
- expect(range.element1.sameNode(sectionChildren[0])).to.equal(true, 'range start ok');
- expect(range.element2.sameNode(sectionChildren[2])).to.equal(true, 'range end ok');
- });
-
- it('merges text elements on the boundries - single child case', function() {
- var c = canvas.fromXML('
'),
- section = c.doc(),
- span = section.children()[1];
-
- var range = span.unwrapContents(),
- sectionChildren = section.children();
-
- expect(sectionChildren).to.have.length(1);
- expect(sectionChildren[0].getText()).to.equal('Alice has a cat');
- });
- });
-
+ var c = getCanvasFromXML('
', [
+ {tag: 'div', klass: 'testClass', prototype: prototype}
+ ]);
+
+ var node = c.wlxmlDocument.root.contents()[0],
+ element = node.getData('canvasElement');
+
+ var header = element.dom.find('h1');
+ expect(header.text()).to.equal('1', 'just