| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- /**
- * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
- import BlockQuoteEditing from '../src/blockquoteediting';
- import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';
- import ListEditing from '@ckeditor/ckeditor5-list/src/listediting';
- import BoldEditing from '@ckeditor/ckeditor5-basic-styles/src/bold/boldediting';
- import VirtualTestEditor from '@ckeditor/ckeditor5-core/tests/_utils/virtualtesteditor';
- import { getData as getModelData, setData as setModelData } from '@ckeditor/ckeditor5-engine/src/dev-utils/model';
- import BlockQuoteCommand from '../src/blockquotecommand';
- describe( 'BlockQuoteEditing', () => {
- let editor, model;
- beforeEach( () => {
- return VirtualTestEditor
- .create( {
- plugins: [ BlockQuoteEditing, Paragraph, BoldEditing ]
- } )
- .then( newEditor => {
- editor = newEditor;
- model = editor.model;
- } );
- } );
- afterEach( () => {
- return editor.destroy();
- } );
- it( 'should have pluginName', () => {
- expect( BlockQuoteEditing.pluginName ).to.equal( 'BlockQuoteEditing' );
- } );
- it( 'adds a blockQuote command', () => {
- expect( editor.commands.get( 'blockQuote' ) ).to.be.instanceOf( BlockQuoteCommand );
- } );
- it( 'allows for blockQuote in the $root', () => {
- expect( model.schema.checkChild( [ '$root' ], 'blockQuote' ) ).to.be.true;
- } );
- it( 'allows for $block in blockQuote', () => {
- expect( model.schema.checkChild( [ '$root', 'blockQuote' ], '$block' ) ).to.be.true;
- expect( model.schema.checkChild( [ '$root', 'blockQuote' ], 'paragraph' ) ).to.be.true;
- } );
- it( 'does not allow for blockQuote in blockQuote', () => {
- expect( model.schema.checkChild( [ '$root', 'blockQuote' ], 'blockQuote' ) ).to.be.false;
- } );
- it( 'does not break when checking an unregisterd item', () => {
- expect( model.schema.checkChild( [ '$root', 'blockQuote' ], 'foo' ) ).to.be.false;
- } );
- it( 'adds converters to the data pipeline', () => {
- const data = '<blockquote><p>x</p></blockquote>';
- editor.setData( data );
- expect( getModelData( model ) ).to.equal( '<blockQuote><paragraph>[]x</paragraph></blockQuote>' );
- expect( editor.getData() ).to.equal( data );
- } );
- it( 'adds a converter to the view pipeline', () => {
- setModelData( model, '<blockQuote><paragraph>x</paragraph></blockQuote>' );
- expect( editor.getData() ).to.equal( '<blockquote><p>x</p></blockquote>' );
- } );
- it( 'allows list items inside blockQuote', () => {
- return VirtualTestEditor
- .create( {
- plugins: [ BlockQuoteEditing, Paragraph, ListEditing ]
- } )
- .then( editor => {
- editor.setData( '<blockquote><ul><li>xx</li></ul></blockquote>' );
- expect( editor.getData() ).to.equal( '<blockquote><ul><li>xx</li></ul></blockquote>' );
- } );
- } );
- it( 'should remove empty blockQuote elements', () => {
- setModelData( model, '<blockQuote></blockQuote><paragraph>Foo</paragraph>' );
- expect( editor.getData() ).to.equal( '<p>Foo</p>' );
- } );
- it( 'should remove blockQuotes which became empty', () => {
- setModelData( model, '<blockQuote><paragraph>Foo</paragraph></blockQuote>' );
- model.change( writer => {
- const root = model.document.getRoot();
- const bq = root.getChild( 0 );
- writer.remove( writer.createRangeIn( bq ) );
- } );
- expect( editor.getData( { trim: 'none' } ) ).to.equal( '<p> </p>' ); // Autoparagraphed.
- } );
- it( 'should unwrap a blockQuote if it was inserted into another blockQuote', () => {
- setModelData( model, '<blockQuote><paragraph>Foo</paragraph></blockQuote>' );
- model.change( writer => {
- const root = model.document.getRoot();
- const bq = writer.createElement( 'blockQuote' );
- const p = writer.createElement( 'paragraph' );
- writer.insertText( 'Bar', p, 0 ); // <p>Bar</p>.
- writer.insert( p, bq, 0 ); // <blockquote><p>Bar</p></blockquote>.
- writer.insert( bq, root.getChild( 0 ), 1 ); // Insert after <p>Foo</p>.
- } );
- expect( editor.getData() ).to.equal( '<blockquote><p>Foo</p><p>Bar</p></blockquote>' );
- } );
- it( 'should unwrap nested blockQuote if it was wrapped into another blockQuote', () => {
- setModelData( model, '<blockQuote><paragraph>Foo</paragraph></blockQuote><paragraph>Bar</paragraph>' );
- model.change( writer => {
- const root = model.document.getRoot();
- writer.wrap( writer.createRangeIn( root ), 'blockQuote' );
- } );
- expect( editor.getData() ).to.equal( '<blockquote><p>Foo</p><p>Bar</p></blockquote>' );
- } );
- it( 'postfixer should do nothing on attribute change', () => {
- // This is strictly a 100% CC test.
- setModelData( model, '<blockQuote><paragraph>Foo</paragraph></blockQuote>' );
- model.change( writer => {
- const root = model.document.getRoot();
- const p = root.getChild( 0 ).getChild( 0 );
- writer.setAttribute( 'bold', true, writer.createRangeIn( p ) );
- } );
- expect( editor.getData() ).to.equal( '<blockquote><p><strong>Foo</strong></p></blockquote>' );
- } );
- } );
|