| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- /**
- * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
- /* bender-tags: document */
- 'use strict';
- const modules = bender.amd.require(
- 'document/document',
- 'document/rootelement',
- 'ckeditorerror'
- );
- describe( 'Document', () => {
- let Document, RootElement, CKEditorError;
- before( () => {
- Document = modules[ 'document/document' ];
- RootElement = modules[ 'document/rootelement' ];
- CKEditorError = modules.ckeditorerror;
- } );
- let document;
- beforeEach( () => {
- document = new Document();
- } );
- describe( 'constructor', () => {
- it( 'should create Document with no data', () => {
- expect( document ).to.have.property( 'roots' ).that.is.instanceof( Map );
- expect( document.roots.size ).to.equal( 1 );
- expect( document._graveyard ).to.be.instanceof( RootElement );
- expect( document._graveyard.getChildCount() ).to.equal( 0 );
- } );
- } );
- describe( 'createRoot', () => {
- it( 'should create a new RootElement, add it to roots map and return it', () => {
- let root = document.createRoot( 'root' );
- expect( document.roots.size ).to.equal( 2 );
- expect( root ).to.be.instanceof( RootElement );
- expect( root.getChildCount() ).to.equal( 0 );
- } );
- it( 'should throw an error when trying to create a second root with the same name', () => {
- document.createRoot( 'root' );
- expect(
- () => {
- document.createRoot( 'root' );
- }
- ).to.throw( CKEditorError, /document-createRoot-name-exists/ );
- } );
- } );
- describe( 'getRoot', () => {
- it( 'should return a RootElement previously created with given name', () => {
- let newRoot = document.createRoot( 'root' );
- let getRoot = document.getRoot( 'root' );
- expect( getRoot ).to.equal( newRoot );
- } );
- it( 'should throw an error when trying to get non-existent root', () => {
- expect(
- () => {
- document.getRoot( 'root' );
- }
- ).to.throw( CKEditorError, /document-createRoot-root-not-exist/ );
- } );
- } );
- describe( 'applyOperation', () => {
- it( 'should increase document version, execute operation and fire operationApplied', () => {
- let operationApplied = sinon.spy();
- let operation = {
- baseVersion: 0,
- _execute: sinon.spy()
- };
- document.on( 'operationApplied', operationApplied );
- document.applyOperation( operation );
- expect( document.version ).to.equal( 1 );
- sinon.assert.calledOnce( operationApplied );
- sinon.assert.calledOnce( operation._execute );
- } );
- it( 'should throw an error on the operation base version and the document version is different', () => {
- let operationApplied = sinon.spy();
- let operation = {
- baseVersion: 1
- };
- document.on( 'operationApplied', operationApplied );
- expect(
- () => {
- document.applyOperation( operation );
- }
- ).to.throw( CKEditorError, /document-applyOperation-wrong-version/ );
- } );
- } );
- } );
|