/** * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. * For licensing, see LICENSE.md. */ import Writer from '../../../src/view/writer'; import Document from '../../../src/view/document'; import { stringify, parse } from '../../../src/dev-utils/view'; import ContainerElement from '../../../src/view/containerelement'; import AttributeElement from '../../../src/view/attributeelement'; import EmptyElement from '../../../src/view/emptyelement'; import UIElement from '../../../src/view/uielement'; import Range from '../../../src/view/range'; import Position from '../../../src/view/position'; import CKEditorError from '@ckeditor/ckeditor5-utils/src/ckeditorerror'; describe( 'Writer', () => { describe( 'breakAttributes()', () => { let writer; before( () => { writer = new Writer( new Document() ); } ); describe( 'break position', () => { /** * Executes test using `parse` and `stringify` utils functions. Uses range delimiters `[]{}` to create and * test break position. * * @param {String} input * @param {String} expected */ function test( input, expected ) { const { view, selection } = parse( input ); const newPosition = writer.breakAttributes( selection.getFirstPosition() ); expect( stringify( view.root, newPosition, { showType: true, showPriority: true } ) ).to.equal( expected ); } it( 'should not break text nodes if they are not in attribute elements - middle', () => { test( 'foo{}bar', 'foo{}bar' ); } ); it( 'should not break text nodes if they are not in attribute elements - beginning', () => { test( '{}foobar', '{}foobar' ); } ); it( 'should not break text nodes if they are not in attribute elements #2 - end', () => { test( 'foobar{}', 'foobar{}' ); } ); it( 'should split attribute element', () => { test( 'foo{}bar', '' + 'foo[]bar' + '' ); } ); it( 'should move from beginning of the nested text node to the container', () => { test( '' + '{}foobar' + '', '' + '[]foobar' + '' ); } ); it( 'should stick selection in text node if it is in container', () => { test( 'foo{}bar', 'foo{}bar' ); } ); it( 'should split nested attributes', () => { test( '' + 'foo{}bar' + '', '' + '' + '' + 'foo' + '' + '' + '[]' + '' + '' + 'bar' + '' + '' + '' ); } ); it( 'should move from end of the nested text node to the container', () => { test( '' + 'foobar{}' + '', '' + 'foobar[]' + '' ); } ); it( 'should split attribute element directly in document fragment', () => { test( 'foo{}bar', 'foo[]bar' ); } ); it( 'should not split text directly in document fragment', () => { test( 'foo{}bar', 'foo{}bar' ); } ); } ); describe( 'break range', () => { /** * Executes test using `parse` and `stringify` utils functions. * * @param {String} input * @param {String} expected */ function test( input, expected ) { const { view, selection } = parse( input ); const newRange = writer.breakAttributes( selection.getFirstRange() ); expect( stringify( view.root, newRange, { showType: true } ) ).to.equal( expected ); } it( 'should throw when range placed in two containers', () => { const p1 = new ContainerElement( 'p' ); const p2 = new ContainerElement( 'p' ); expect( () => { writer.breakAttributes( Range.createFromParentsAndOffsets( p1, 0, p2, 0 ) ); } ).to.throw( CKEditorError, 'view-writer-invalid-range-container' ); } ); it( 'should throw when range has no parent container', () => { const el = new AttributeElement( 'b' ); expect( () => { writer.breakAttributes( Range.createFromParentsAndOffsets( el, 0, el, 0 ) ); } ).to.throw( CKEditorError, 'view-writer-invalid-range-container' ); } ); it( 'should not break text nodes if they are not in attribute elements', () => { test( 'foo{}bar', 'foo{}bar' ); } ); it( 'should break at collapsed range and return collapsed one', () => { test( 'foo{}bar', 'foo[]bar' ); } ); it( 'should break inside text node #1', () => { test( 'foo{bar}baz', '' + 'foo[bar]baz' + '' ); } ); it( 'should break inside text node #2', () => { test( 'foo{barbaz}', 'foo[barbaz]' ); } ); it( 'should break inside text node #3', () => { test( 'foo{barbaz]', 'foo[barbaz]' ); } ); it( 'should break inside text node #4', () => { test( '{foo}barbaz', '[foo]barbaz' ); } ); it( 'should break inside text node #5', () => { test( '[foo}barbaz', '[foo]barbaz' ); } ); it( 'should break placed inside different nodes', () => { test( 'foo{barbaz}qux', 'foo{barbaz]qux' ); } ); it( 'should split attribute element directly in document fragment', () => { test( 'fo{ob}ar', 'fo[ob]ar' ); } ); it( 'should not split text directly in document fragment', () => { test( 'foo{}bar', 'foo{}bar' ); } ); it( 'should throw if breaking inside EmptyElement #1', () => { const img = new EmptyElement( 'img' ); new ContainerElement( 'p', null, img ); // eslint-disable-line no-new const position = new Position( img, 0 ); expect( () => { writer.breakAttributes( position ); } ).to.throw( CKEditorError, 'view-writer-cannot-break-empty-element' ); } ); it( 'should throw if breaking inside EmptyElement #2', () => { const img = new EmptyElement( 'img' ); const b = new AttributeElement( 'b' ); new ContainerElement( 'p', null, [ img, b ] ); // eslint-disable-line no-new const range = Range.createFromParentsAndOffsets( img, 0, b, 0 ); expect( () => { writer.breakAttributes( range ); } ).to.throw( CKEditorError, 'view-writer-cannot-break-empty-element' ); } ); it( 'should throw if breaking inside UIElement #1', () => { const span = new UIElement( 'span' ); new ContainerElement( 'p', null, span ); // eslint-disable-line no-new const position = new Position( span, 0 ); expect( () => { writer.breakAttributes( position ); } ).to.throw( CKEditorError, 'view-writer-cannot-break-ui-element' ); } ); it( 'should throw if breaking inside UIElement #2', () => { const span = new UIElement( 'span' ); const b = new AttributeElement( 'b' ); new ContainerElement( 'p', null, [ span, b ] ); // eslint-disable-line no-new const range = Range.createFromParentsAndOffsets( span, 0, b, 0 ); expect( () => { writer.breakAttributes( range ); } ).to.throw( CKEditorError, 'view-writer-cannot-break-ui-element' ); } ); } ); } ); } );