X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/7a3c737d962ff2b2e2653fd8ed0108e92c7fe0d5..21cd91531dd9c6e88d00da03f6b2f3ad88fb0da0:/src/editor/modules/documentCanvas/canvas/canvas.test.js diff --git a/src/editor/modules/documentCanvas/canvas/canvas.test.js b/src/editor/modules/documentCanvas/canvas/canvas.test.js index 10a2376..3b33751 100644 --- a/src/editor/modules/documentCanvas/canvas/canvas.test.js +++ b/src/editor/modules/documentCanvas/canvas/canvas.test.js @@ -1,36 +1,40 @@ 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('
Alice has a cat!'), 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) { @@ -47,20 +51,61 @@ describe('Handling empty text nodes', function() { }); }); -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('
'), + 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('
'), + 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('
Alice
'), + 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'); });