define([
+'libs/jquery',
'libs/chai',
+'libs/sinon',
'modules/documentCanvas/canvas/canvas',
'modules/documentCanvas/canvas/documentElement',
'modules/documentCanvas/canvas/utils',
'wlxml/wlxml'
-], function(chai, canvas, documentElement, utils, wlxml) {
+], function($, chai, sinon, canvas, documentElement, utils, wlxml) {
'use strict';
+/* global describe, it, beforeEach, afterEach */
var expect = chai.expect;
-
-var nodeFromXML = function(xml) {
- return wlxml.WLXMLElementNodeFromXML(xml);
+var getCanvasFromXML = function(xml) {
+ return canvas.fromXMLDocument(getDocumentFromXML(xml));
};
-var getCanvasFromXML = function(xml) {
- return canvas.fromXMLDocument(wlxml.WLXMLDocumentFromXML(xml));
+var getDocumentFromXML = function(xml) {
+ return wlxml.WLXMLDocumentFromXML(xml);
};
var wait = function(callback, timeout) {
+ /* globals window */
return window.setTimeout(callback, timeout || 0.5);
-}
+};
+
describe('new Canvas', function() {
it('abc', function() {
var doc = wlxml.WLXMLDocumentFromXML('<section>Alice <span>has</span> a cat!</div>'),
c = canvas.fromXMLDocument(doc);
- expect(c.doc().children()).to.have.length(3)
+ expect(c.doc().children()).to.have.length(3);
});
-})
+});
describe('Handling empty text nodes', function() {
it('puts zero width space into node with about to be remove text', function(done) {
});
});
-describe('Cursor', function() {
+describe('Handling changes to the document', function() {
+ it('replaces the whole canvas content when document root node replaced', function() {
+ var doc = getDocumentFromXML('<section></section>'),
+ c = canvas.fromXMLDocument(doc);
+
+ var header = doc.root.replaceWith({tagName: 'header'});
+ expect(c.doc().data('wlxmlNode').sameNode(header)).to.equal(true);
+ });
+});
+describe('Listening to document changes', function() {
+
+ it('Handling element node moved', function() {
+ var doc = getDocumentFromXML('<section><a></a><b></b></section>'),
+ a = doc.root.contents()[0],
+ b = doc.root.contents()[1],
+ c = canvas.fromXMLDocument(doc);
+
+ a.before(b);
+ var sectionChildren = c.doc().children();
+ expect(sectionChildren.length).to.equal(2);
+ expect(sectionChildren[0].getWlxmlTag()).to.equal('b');
+ expect(sectionChildren[1].getWlxmlTag()).to.equal('a');
+ });
+
+ it('Handling text node moved', function() {
+ var doc = getDocumentFromXML('<section><a></a>Alice</section>'),
+ a = doc.root.contents()[0],
+ textNode = doc.root.contents()[1],
+ c = canvas.fromXMLDocument(doc);
+
+ a.before(textNode);
+ var sectionChildren = c.doc().children();
+ expect(sectionChildren.length).to.equal(2);
+ expect(sectionChildren[0].getText()).to.equal('Alice');
+ expect(sectionChildren[1].getWlxmlTag()).to.equal('a');
+ });
+});
+
+describe('Cursor', function() {
+ /* globals Node */
var getSelection;
var findTextNode = function(inside, text) {
var nodes = inside.find(':not(iframe)').addBack().contents().filter(function() {
return this.nodeType === Node.TEXT_NODE && this.data === text;
});
- if(nodes.length)
+ if(nodes.length) {
return nodes[0];
+ }
return null;
- }
+ };
beforeEach(function() {
+ /* globals window */
getSelection = sinon.stub(window, 'getSelection');
});