| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- /**
- * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
- import ModelTestEditor from 'ckeditor5-core/tests/_utils/modeltesteditor';
- import Position from 'ckeditor5-engine/src/model/position';
- import UndoEngine from 'ckeditor5-undo/src/undoengine';
- describe( 'UndoEngine', () => {
- let editor, undo, batch, doc, root;
- beforeEach( () => {
- editor = new ModelTestEditor();
- doc = editor.document;
- batch = doc.batch();
- root = doc.getRoot();
- undo = new UndoEngine( editor );
- undo.init();
- } );
- afterEach( () => {
- undo.destroy();
- } );
- describe( 'UndoEngine', () => {
- it( 'should register undo command and redo command', () => {
- expect( editor.commands.get( 'undo' ) ).to.equal( undo._undoCommand );
- expect( editor.commands.get( 'redo' ) ).to.equal( undo._redoCommand );
- } );
- it( 'should add a batch to undo command and clear redo stack, if it\'s type is "default"', () => {
- sinon.spy( undo._undoCommand, 'addBatch' );
- sinon.spy( undo._redoCommand, 'clearStack' );
- expect( undo._undoCommand.addBatch.called ).to.be.false;
- expect( undo._redoCommand.clearStack.called ).to.be.false;
- batch.insert( new Position( root, [ 0 ] ), 'foobar' );
- expect( undo._undoCommand.addBatch.calledOnce ).to.be.true;
- expect( undo._redoCommand.clearStack.calledOnce ).to.be.true;
- } );
- it( 'should add each batch only once', () => {
- sinon.spy( undo._undoCommand, 'addBatch' );
- batch.insert( new Position( root, [ 0 ] ), 'foobar' ).insert( new Position( root, [ 0 ] ), 'foobar' );
- expect( undo._undoCommand.addBatch.calledOnce ).to.be.true;
- } );
- it( 'should add a batch to undo command, if it\'s type is undo and it comes from redo command', () => {
- sinon.spy( undo._undoCommand, 'addBatch' );
- sinon.spy( undo._redoCommand, 'clearStack' );
- undo._redoCommand._createdBatches.add( batch );
- batch.insert( new Position( root, [ 0 ] ), 'foobar' );
- expect( undo._undoCommand.addBatch.calledOnce ).to.be.true;
- expect( undo._redoCommand.clearStack.called ).to.be.false;
- } );
- it( 'should add a batch to redo command on undo revert event', () => {
- sinon.spy( undo._redoCommand, 'addBatch' );
- sinon.spy( undo._redoCommand, 'clearStack' );
- undo._undoCommand.fire( 'revert', null, batch );
- expect( undo._redoCommand.addBatch.calledOnce ).to.be.true;
- expect( undo._redoCommand.clearStack.called ).to.be.false;
- } );
- } );
- } );
|