| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340 |
- /**
- * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
- import Paragraph from 'ckeditor5-paragraph/src/paragraph';
- import VirtualTestEditor from 'ckeditor5-core/tests/_utils/virtualtesteditor';
- import {
- getData as getModelData,
- setData as setModelData,
- stringify as stringifyModel
- } from 'ckeditor5-engine/src/dev-utils/model';
- import { getData as getViewData } from 'ckeditor5-engine/src/dev-utils/view';
- import buildViewConverter from 'ckeditor5-engine/src/conversion/buildviewconverter';
- import ModelDocumentFragment from 'ckeditor5-engine/src/model/documentfragment';
- import ModelText from 'ckeditor5-engine/src/model/text';
- describe( 'Paragraph feature', () => {
- let editor, doc;
- beforeEach( () => {
- return VirtualTestEditor.create( {
- plugins: [ Paragraph ]
- } )
- .then( newEditor => {
- editor = newEditor;
- doc = editor.document;
- } );
- } );
- it( 'should be loaded', () => {
- expect( editor.plugins.get( Paragraph ) ).to.be.instanceOf( Paragraph );
- } );
- it( 'should set proper schema rules', () => {
- expect( doc.schema.hasItem( 'paragraph' ) ).to.be.true;
- expect( doc.schema.check( { name: 'paragraph', inside: '$root' } ) ).to.be.true;
- expect( doc.schema.check( { name: '$inline', inside: 'paragraph' } ) ).to.be.true;
- } );
- it( 'should have a static paragraphLikeElements property', () => {
- expect( Paragraph ).to.have.property( 'paragraphLikeElements' );
- } );
- describe( 'data pipeline conversions', () => {
- it( 'should convert paragraph', () => {
- editor.setData( '<p>foobar</p>' );
- expect( getModelData( doc, { withoutSelection: true } ) ).to.equal( '<paragraph>foobar</paragraph>' );
- expect( editor.getData() ).to.equal( '<p>foobar</p>' );
- } );
- it( 'should convert paragraph only', () => {
- editor.setData( '<p>foo<b>baz</b>bar</p>' );
- expect( getModelData( doc, { withoutSelection: true } ) ).to.equal( '<paragraph>foobazbar</paragraph>' );
- expect( editor.getData() ).to.equal( '<p>foobazbar</p>' );
- } );
- it( 'should convert multiple paragraphs', () => {
- editor.setData( '<p>foo</p><p>baz</p>' );
- expect( getModelData( doc, { withoutSelection: true } ) ).to.equal( '<paragraph>foo</paragraph><paragraph>baz</paragraph>' );
- expect( editor.getData() ).to.equal( '<p>foo</p><p>baz</p>' );
- } );
- describe( 'generic text converter (text autoparagraphing)', () => {
- it( 'should autoparagraph text', () => {
- editor.setData( 'foo' );
- expect( getModelData( doc, { withoutSelection: true } ) ).to.equal( '<paragraph>foo</paragraph>' );
- expect( editor.getData() ).to.equal( '<p>foo</p>' );
- } );
- it( 'should not autoparagraph text (in clipboard holder)', () => {
- const modelFragment = editor.data.parse( 'foo', '$clipboardHolder' );
- expect( stringifyModel( modelFragment ) )
- .to.equal( 'foo' );
- } );
- it( 'should not autoparagraph text (in a context which does not allow paragraphs', () => {
- doc.schema.registerItem( 'specialRoot' );
- const modelFragment = editor.data.parse( 'foo', 'specialRoot' );
- expect( stringifyModel( modelFragment ) )
- .to.equal( '' );
- } );
- it( 'should autoparagraph text next to allowed element', () => {
- doc.schema.registerItem( 'heading1', '$block' );
- buildViewConverter().for( editor.data.viewToModel ).fromElement( 'h1' ).toElement( 'heading1' );
- const modelFragment = editor.data.parse( '<h1>foo</h1>bar<p>bom</p>' );
- expect( stringifyModel( modelFragment ) )
- .to.equal( '<heading1>foo</heading1><paragraph>bar</paragraph><paragraph>bom</paragraph>' );
- } );
- it( 'should autoparagraph 3 inline nodes into one paragraph', () => {
- const modelFragment = editor.data.parse( 'foo<b>bar</b>bom' );
- expect( stringifyModel( modelFragment ) )
- .to.equal( '<paragraph>foobarbom</paragraph>' );
- } );
- it( 'should not autoparagraph 3 inline nodes (in clipboardHolder)', () => {
- const modelFragment = editor.data.parse( 'foo<b>bar</b>bom', '$clipboardHolder' );
- expect( stringifyModel( modelFragment ) )
- .to.equal( 'foobarbom' );
- } );
- it( 'should autoparagraph text inside converted container', () => {
- doc.schema.registerItem( 'div' );
- doc.schema.allow( { name: 'div', inside: '$root' } );
- doc.schema.allow( { name: 'paragraph', inside: 'div' } );
- buildViewConverter().for( editor.data.viewToModel ).fromElement( 'div' ).toElement( 'div' );
- const modelFragment = editor.data.parse( '<div>foo</div><div>bom<p>bim</p></div>' );
- expect( stringifyModel( modelFragment ) )
- .to.equal(
- '<div><paragraph>foo</paragraph></div>' +
- '<div><paragraph>bom</paragraph><paragraph>bim</paragraph></div>'
- );
- } );
- it( 'should autoparagraph text inside disallowed element next to allowed element', () => {
- doc.schema.registerItem( 'heading1', '$block' );
- buildViewConverter().for( editor.data.viewToModel ).fromElement( 'h1' ).toElement( 'heading1' );
- const modelFragment = editor.data.parse( '<div><h1>foo</h1>bar</div>' );
- expect( stringifyModel( modelFragment ) )
- .to.equal( '<heading1>foo</heading1><paragraph>bar</paragraph>' );
- } );
- it( 'should not autoparagraph text in disallowed element', () => {
- doc.schema.registerItem( 'heading1', '$block' );
- buildViewConverter().for( editor.data.viewToModel ).fromElement( 'h1' ).toElement( 'heading1' );
- const modelFragment = editor.data.parse( '<h1><b>foo</b>bar</h1>' );
- expect( stringifyModel( modelFragment ) )
- .to.equal( '<heading1>foobar</heading1>' );
- } );
- it( 'should not fail when text is not allowed in paragraph', () => {
- doc.schema.disallow( { name: '$text', inside: [ '$root', 'paragraph' ] } );
- const modelFragment = editor.data.parse( 'foo' );
- expect( stringifyModel( modelFragment ) ).to.equal( '' );
- } );
- it( 'creates normalized model', () => {
- const modelFragment = editor.data.parse( 'foo<b>bar</b>bom' );
- expect( modelFragment ).to.be.instanceof( ModelDocumentFragment );
- expect( modelFragment.getChild( 0 ).childCount ).to.equal( 1 );
- expect( modelFragment.getChild( 0 ).getChild( 0 ) ).to.be.instanceOf( ModelText );
- } );
- it( 'does not break converting inline elements', () => {
- doc.schema.allow( { name: '$inline', attributes: [ 'bold' ] } );
- buildViewConverter().for( editor.data.viewToModel )
- .fromElement( 'b' )
- .toAttribute( 'bold', true );
- const modelFragment = editor.data.parse( 'foo<b>bar</b>bom' );
- // The result of this test is wrong due to https://github.com/ckeditor/ckeditor5-paragraph/issues/10.
- // It's meant to catch the odd situation in mergeSubsequentParagraphs when data.output may be an array
- // for a while
- expect( stringifyModel( modelFragment ) ).to.equal( '<paragraph>foobarbom</paragraph>' );
- } );
- // This test was taken from the list package.
- it( 'does not break when some converter returns nothing', () => {
- editor.data.viewToModel.on( 'element:li', ( evt, data, consumable ) => {
- consumable.consume( data.input, { name: true } );
- }, { priority: 'highest' } );
- const modelFragment = editor.data.parse( '<ul><li></li></ul>' );
- expect( stringifyModel( modelFragment ) ).to.equal( '' );
- } );
- } );
- describe( 'generic block converter (paragraph-like element handling)', () => {
- it( 'should convert h1+h2', () => {
- const modelFragment = editor.data.parse( '<h1>foo</h1><h2>bar</h2>' );
- expect( stringifyModel( modelFragment ) )
- .to.equal( '<paragraph>foo</paragraph><paragraph>bar</paragraph>' );
- } );
- it( 'should convert h1+h2 (in clipboard holder)', () => {
- const modelFragment = editor.data.parse( '<h1>foo</h1><h2>bar</h2>', '$clipboardHolder' );
- expect( stringifyModel( modelFragment ) )
- .to.equal( '<paragraph>foo</paragraph><paragraph>bar</paragraph>' );
- } );
- it( 'should not convert h1+h2 (in a context which does not allow paragraphs)', () => {
- doc.schema.registerItem( 'div' );
- doc.schema.registerItem( 'specialRoot' );
- doc.schema.allow( { name: 'div', inside: 'specialRoot' } );
- doc.schema.allow( { name: '$text', inside: 'div' } );
- buildViewConverter().for( editor.data.viewToModel ).fromElement( 'div' ).toElement( 'div' );
- const modelFragment = editor.data.parse( '<h1>foo</h1><h2>bar</h2><div>bom</div>', 'specialRoot' );
- expect( stringifyModel( modelFragment ) )
- .to.equal( '<div>bom</div>' );
- } );
- it( 'should convert ul,ol>li', () => {
- const modelFragment = editor.data.parse( '<ul><li>a</li><li>b</li></ul><ol><li>c</li></ol>' );
- expect( stringifyModel( modelFragment ) )
- .to.equal( '<paragraph>a</paragraph><paragraph>b</paragraph><paragraph>c</paragraph>' );
- } );
- it( 'should convert ul,ol>li (in clipboard holder)', () => {
- const modelFragment = editor.data.parse( '<ul><li>a</li><li>b</li></ul><ol><li>c</li></ol>', '$clipboardHolder' );
- expect( stringifyModel( modelFragment ) )
- .to.equal( '<paragraph>a</paragraph><paragraph>b</paragraph><paragraph>c</paragraph>' );
- } );
- it( 'should convert ul>li>ul>li+li', () => {
- const modelFragment = editor.data.parse( '<ul><li>a<ul><li>b</li><li>c</li></ul></li></ul>' );
- expect( stringifyModel( modelFragment ) )
- .to.equal( '<paragraph>a</paragraph><paragraph>b</paragraph><paragraph>c</paragraph>' );
- } );
- // "b" is not autoparagraphed because clipboard holder allows text nodes.
- // There's a similar integrational test what's going to happen when pasting in paragraph-integration.js.
- it( 'should convert ul>li>ul>li+li (in clipboard holder)', () => {
- const modelFragment = editor.data.parse( '<ul><li>a<ul><li>b</li><li>c</li></ul></li></ul>', '$clipboardHolder' );
- expect( stringifyModel( modelFragment ) )
- .to.equal( 'a<paragraph>b</paragraph><paragraph>c</paragraph>' );
- } );
- it( 'should convert ul>li>p,text', () => {
- const modelFragment = editor.data.parse( '<ul><li><p>a</p>b</li></ul>' );
- expect( stringifyModel( modelFragment ) )
- .to.equal( '<paragraph>a</paragraph><paragraph>b</paragraph>' );
- } );
- // "b" is not autoparagraphed because clipboard holder allows text nodes.
- // There's a similar integrational test what's going to happen when pasting in paragraph-integration.js.
- it( 'should convert ul>li>p,text (in clipboard holder)', () => {
- const modelFragment = editor.data.parse( '<ul><li><p>a</p>b</li></ul>', '$clipboardHolder' );
- expect( stringifyModel( modelFragment ) )
- .to.equal( '<paragraph>a</paragraph>b' );
- } );
- it( 'should convert td', () => {
- const modelFragment = editor.data.parse( '<table><tr><td>a</td><td>b</td></tr><tr><td>c</td><td>d</td></tr></table>' );
- expect( stringifyModel( modelFragment ) )
- .to.equal( '<paragraph>a</paragraph><paragraph>b</paragraph><paragraph>c</paragraph><paragraph>d</paragraph>' );
- } );
- it( 'should convert td (in clipboardHolder)', () => {
- const modelFragment = editor.data.parse(
- '<table><tr><td>a</td><td>b</td></tr><tr><td>c</td><td>d</td></tr></table>',
- '$clipboardHolder'
- );
- expect( stringifyModel( modelFragment ) )
- .to.equal( '<paragraph>a</paragraph><paragraph>b</paragraph><paragraph>c</paragraph><paragraph>d</paragraph>' );
- } );
- it( 'should convert li inside converted container', () => {
- doc.schema.registerItem( 'div' );
- doc.schema.allow( { name: 'div', inside: '$root' } );
- doc.schema.allow( { name: 'paragraph', inside: 'div' } );
- buildViewConverter().for( editor.data.viewToModel ).fromElement( 'div' ).toElement( 'div' );
- const modelFragment = editor.data.parse( '<div><ul><li>foo</li><li>bar</li></ul></div><div>bom<p>bim</p></div>' );
- expect( stringifyModel( modelFragment ) )
- .to.equal(
- '<div><paragraph>foo</paragraph><paragraph>bar</paragraph></div>' +
- '<div><paragraph>bom</paragraph><paragraph>bim</paragraph></div>'
- );
- } );
- it( 'should convert li inside disallowed container', () => {
- const modelFragment = editor.data.parse( '<div><ul><li>foo</li><li>bar</li></ul></div><div>bom<p>bim</p></div>' );
- expect( stringifyModel( modelFragment ) )
- .to.equal(
- '<paragraph>foo</paragraph><paragraph>bar</paragraph>' +
- '<paragraph>bom</paragraph><paragraph>bim</paragraph>'
- );
- } );
- it( 'creates normalized model', () => {
- const modelFragment = editor.data.parse( '<h1><span>foo</span><span>bar</span>' );
- expect( stringifyModel( modelFragment ) ).to.equal( '<paragraph>foobar</paragraph>' );
- expect( modelFragment ).to.be.instanceof( ModelDocumentFragment );
- expect( modelFragment.getChild( 0 ).childCount ).to.equal( 1 );
- expect( modelFragment.getChild( 0 ).getChild( 0 ) ).to.be.instanceOf( ModelText );
- } );
- } );
- } );
- describe( 'editing pipeline conversion', () => {
- it( 'should convert paragraph', () => {
- setModelData( doc, '<paragraph>foo</paragraph><paragraph>bar</paragraph>' );
- expect( getViewData( editor.editing.view, { withoutSelection: true } ) ).to.equal( '<p>foo</p><p>bar</p>' );
- } );
- } );
- describe( 'autoparagraphing on data load', () => {
- it( 'wraps text and place selection at the beginning of that paragraph', () => {
- editor.setData( 'foo' );
- expect( getModelData( doc ) ).to.equal( '<paragraph>[]foo</paragraph>' );
- } );
- } );
- } );
|