| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- /**
- * @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 ModelTestEditor from '@ckeditor/ckeditor5-core/tests/_utils/modeltesteditor';
- import SelectAllEditing from '../src/selectallediting';
- import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';
- import ImageEditing from '@ckeditor/ckeditor5-image/src/image/imageediting';
- import ImageCaptionEditing from '@ckeditor/ckeditor5-image/src/imagecaption/imagecaptionediting';
- import { setData, getData } from '@ckeditor/ckeditor5-engine/src/dev-utils/model';
- describe( 'SelectAllCommand', () => {
- let editor, model, command;
- beforeEach( () => {
- return ModelTestEditor
- .create( {
- plugins: [ SelectAllEditing, Paragraph, ImageEditing, ImageCaptionEditing ]
- } )
- .then( newEditor => {
- editor = newEditor;
- model = editor.model;
- command = editor.commands.get( 'selectAll' );
- } );
- } );
- afterEach( () => {
- return editor.destroy();
- } );
- describe( 'isEnabled', () => {
- it( 'should always be "true" because the command is stateless', () => {
- expect( command.isEnabled ).to.be.true;
- } );
- } );
- describe( 'execute()', () => {
- it( 'should select all (collapsed selection in a block with text)', () => {
- setData( model, '<paragraph>f[]oo</paragraph>' );
- editor.execute( 'selectAll' );
- expect( getData( model ) ).to.equal( '<paragraph>[foo]</paragraph>' );
- } );
- it( 'should select all (collapsed selection in a content with an object)', () => {
- setData( model, '<paragraph>fo[]o</paragraph><image src="foo.png"><caption></caption></image>' );
- editor.execute( 'selectAll' );
- expect( getData( model ) ).to.equal( '<paragraph>[foo</paragraph><image src="foo.png"><caption></caption></image>]' );
- } );
- it( 'should select all (selection on an object)', () => {
- setData( model, '<paragraph>foo</paragraph>[<image src="foo.png"><caption></caption></image>]' );
- editor.execute( 'selectAll' );
- expect( getData( model ) ).to.equal( '<paragraph>[foo</paragraph><image src="foo.png"><caption></caption></image>]' );
- } );
- it( 'should select all (collapsed selection in a nested editable)', () => {
- setData( model, '<paragraph>foo</paragraph><image src="foo.png"><caption>b[]ar</caption></image>' );
- editor.execute( 'selectAll' );
- expect( getData( model ) ).to.equal( '<paragraph>foo</paragraph><image src="foo.png"><caption>[bar]</caption></image>' );
- } );
- it( 'should select all (selection in a nested editable)', () => {
- setData( model, '<paragraph>foo</paragraph><image src="foo.png"><caption>[bar]</caption></image>' );
- editor.execute( 'selectAll' );
- expect( getData( model ) ).to.equal( '<paragraph>foo</paragraph><image src="foo.png"><caption>[bar]</caption></image>' );
- } );
- } );
- } );
|