| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- /**
- * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
- import Model from '../../../src/model/model';
- import DetachOperation from '../../../src/model/operation/detachoperation';
- import Position from '../../../src/model/position';
- import DocumentFragment from '../../../src/model/documentfragment';
- import Element from '../../../src/model/element';
- import { expectToThrowCKEditorError } from '@ckeditor/ckeditor5-utils/tests/_utils/utils';
- describe( 'DetachOperation', () => {
- let model, doc, docFrag, element;
- beforeEach( () => {
- model = new Model();
- doc = model.document;
- element = new Element( 'element' );
- docFrag = new DocumentFragment( [ element ] );
- } );
- it( 'should have type equal to detach', () => {
- const op = new DetachOperation( Position._createBefore( element ), 1 );
- expect( op.type ).to.equal( 'detach' );
- } );
- it( 'should remove given element from parent', () => {
- const op = new DetachOperation( Position._createBefore( element ), 1 );
- model.applyOperation( op );
- expect( docFrag.childCount ).to.equal( 0 );
- } );
- describe( 'is()', () => {
- let operation;
- before( () => {
- const position = Position._createBefore( element );
- operation = new DetachOperation( position, 1 );
- } );
- it( 'should return true for all valid names of "detach" operation', () => {
- expect( operation.is( 'operation' ) ).to.be.true;
- expect( operation.is( 'model:operation' ) ).to.be.true;
- expect( operation.is( 'detachOperation' ) ).to.be.true;
- expect( operation.is( 'model:operation:detach' ) ).to.be.true;
- } );
- it( 'should return false for invalid parameters', () => {
- expect( operation.is( 'operation:detach' ) ).to.be.false;
- expect( operation.is( 'model:operation:insert' ) ).to.be.false;
- expect( operation.is( 'noOperation' ) ).to.be.false;
- expect( operation.is( 'attributeOperation' ) ).to.be.false;
- expect( operation.is( 'rootAttributeOperation' ) ).to.be.false;
- expect( operation.is( 'model:operation:rootAttribute' ) ).to.be.false;
- } );
- } );
- describe( '_validate()', () => {
- it( 'should throw when is executed on element from document', () => {
- const root = doc.createRoot();
- const element = new Element( 'element' );
- root._appendChild( [ element ] );
- const op = new DetachOperation( Position._createBefore( element ), 1 );
- expectToThrowCKEditorError( () => {
- op._validate();
- }, /^detach-operation-on-document-node/, model );
- } );
- } );
- it( 'should be not a document operation', () => {
- const op = new DetachOperation( Position._createBefore( element ), 1 );
- expect( op.isDocumentOperation ).to.false;
- } );
- describe( 'toJSON', () => {
- it( 'should create proper json object', () => {
- const position = Position._createBefore( element );
- const op = new DetachOperation( position, 1 );
- const serialized = op.toJSON();
- expect( serialized ).to.deep.equal( {
- __className: 'DetachOperation',
- baseVersion: null,
- sourcePosition: position.toJSON(),
- howMany: 1
- } );
- } );
- } );
- } );
|