| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- /**
- * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
- /* global document */
- import Alignment from '../src/alignment';
- import BlockQuote from '@ckeditor/ckeditor5-block-quote/src/blockquote';
- import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';
- import Heading from '@ckeditor/ckeditor5-heading/src/heading';
- import Image from '@ckeditor/ckeditor5-image/src/image';
- import ImageCaption from '@ckeditor/ckeditor5-image/src/imagecaption';
- import List from '@ckeditor/ckeditor5-list/src/list';
- import Enter from '@ckeditor/ckeditor5-enter/src/enter';
- import Delete from '@ckeditor/ckeditor5-typing/src/delete';
- import ClassicTestEditor from '@ckeditor/ckeditor5-core/tests/_utils/classictesteditor';
- import { getData as getModelData, setData as setModelData } from '@ckeditor/ckeditor5-engine/src/dev-utils/model';
- describe( 'Alignment integration', () => {
- let editor, model, element;
- beforeEach( () => {
- element = document.createElement( 'div' );
- document.body.appendChild( element );
- return ClassicTestEditor
- .create( element, {
- plugins: [ Alignment, BlockQuote, Paragraph, Heading, Image, ImageCaption, List, Enter, Delete ]
- } )
- .then( newEditor => {
- editor = newEditor;
- model = editor.model;
- } );
- } );
- afterEach( () => {
- element.remove();
- return editor.destroy();
- } );
- describe( 'compatibility with images', () => {
- it( 'does not work inside image caption', () => {
- setModelData( model, '<image src="/assets/sample.png"><caption>Foo[]</caption></image>' );
- editor.execute( 'alignment', { value: 'center' } );
- expect( getModelData( model ) ).to.equal( '<image src="/assets/sample.png"><caption>Foo[]</caption></image>' );
- } );
- it( 'does not work inside image caption when selection overlaps image', () => {
- setModelData(
- model,
- '<paragraph>foo[foo</paragraph>' +
- '<image src="/assets/sample.png"><caption>bar</caption></image>' +
- '<paragraph>baz]baz</paragraph>'
- );
- editor.execute( 'alignment', { value: 'center' } );
- expect( getModelData( model ) ).to.equal(
- '<paragraph alignment="center">foo[foo</paragraph>' +
- '<image src="/assets/sample.png"><caption>bar</caption></image>' +
- '<paragraph alignment="center">baz]baz</paragraph>'
- );
- } );
- } );
- describe( 'compatibility with blockQuote', () => {
- it( 'does work inside BlockQuote on paragraph', () => {
- setModelData( model, '<blockQuote><paragraph>Foo[]</paragraph></blockQuote>' );
- editor.execute( 'alignment', { value: 'center' } );
- expect( getModelData( model ) ).to.equal( '<blockQuote><paragraph alignment="center">Foo[]</paragraph></blockQuote>' );
- } );
- it( 'does work inside blockQuote on heading', () => {
- setModelData( model, '<blockQuote><heading1>Foo[]</heading1></blockQuote>' );
- editor.execute( 'alignment', { value: 'center' } );
- expect( getModelData( model ) ).to.equal( '<blockQuote><heading1 alignment="center">Foo[]</heading1></blockQuote>' );
- } );
- it( 'does work inside blockQuote on listItem', () => {
- setModelData( model, '<blockQuote><listItem listIndent="0" listType="numbered">Foo[]</listItem></blockQuote>' );
- editor.execute( 'alignment', { value: 'center' } );
- expect( getModelData( model ) ).to.equal(
- '<blockQuote><listItem alignment="center" listIndent="0" listType="numbered">Foo[]</listItem></blockQuote>'
- );
- } );
- } );
- } );
|