| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452 |
- /**
- * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
- import CodeBlockEditing from '../src/codeblockediting';
- import IndentCodeBlockCommand from '../src/indentcodeblockcommand';
- import AlignmentEditing from '@ckeditor/ckeditor5-alignment/src/alignmentediting';
- import BoldEditing from '@ckeditor/ckeditor5-basic-styles/src/bold/boldediting';
- import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';
- import BlockQuoteEditing from '@ckeditor/ckeditor5-block-quote/src/blockquoteediting';
- import ModelTestEditor from '@ckeditor/ckeditor5-core/tests/_utils/modeltesteditor';
- import { getData as getModelData, setData as setModelData } from '@ckeditor/ckeditor5-engine/src/dev-utils/model';
- describe.only( 'IndentCodeBlockCommand', () => {
- let editor, model, indentCommand, outdentCommand;
- beforeEach( () => {
- return ModelTestEditor
- .create( {
- plugins: [ CodeBlockEditing, Paragraph, BlockQuoteEditing, AlignmentEditing, BoldEditing ]
- } )
- .then( newEditor => {
- editor = newEditor;
- model = editor.model;
- indentCommand = new IndentCodeBlockCommand( editor, 'forward' );
- outdentCommand = new IndentCodeBlockCommand( editor, 'backward' );
- } );
- } );
- afterEach( () => {
- return editor.destroy();
- } );
- describe( 'Forward (indent) command', () => {
- describe( '#isEnabled', () => {
- it( 'should be true when the first selected block is a codeBlock #1', () => {
- setModelData( model, '<codeBlock language="foo">f[]oo</codeBlock>' );
- expect( indentCommand.isEnabled ).to.be.true;
- } );
- it( 'should be true when the first selected block is a codeBlock #2', () => {
- setModelData( model, '<codeBlock language="foo">f[oo</codeBlock><paragraph>ba]r</paragraph>' );
- expect( indentCommand.isEnabled ).to.be.true;
- } );
- it( 'should be false when there is no code block in the selection', () => {
- setModelData( model, '<paragraph>foo[]</paragraph>' );
- expect( indentCommand.isEnabled ).to.be.false;
- } );
- it( 'should be false when the selection is not anchored in the code block', () => {
- setModelData( model, '<paragraph>f[oo</paragraph><codeBlock language="foo">bar</codeBlock><paragraph>ba]z</paragraph>' );
- expect( indentCommand.isEnabled ).to.be.false;
- } );
- describe( 'config.codeBlock.indentSequence', () => {
- it( 'should disable the command when the config is not set', () => {
- return ModelTestEditor
- .create( {
- plugins: [ CodeBlockEditing, Paragraph, BlockQuoteEditing, AlignmentEditing, BoldEditing ],
- codeBlock: {
- indentSequence: false
- }
- } )
- .then( newEditor => {
- const editor = newEditor;
- const model = editor.model;
- const indentCommand = new IndentCodeBlockCommand( editor, 'forward' );
- setModelData( model, '<codeBlock language="foo">[]foo</codeBlock>' );
- expect( indentCommand.isEnabled ).to.be.false;
- return editor.destroy();
- } );
- } );
- } );
- } );
- describe( 'execute()', () => {
- it( 'should indent when a selection is collapsed in an empty code block', () => {
- setModelData( model, '<codeBlock language="foo">[]</codeBlock>' );
- indentCommand.execute();
- expect( getModelData( model ) ).to.equal( '<codeBlock language="foo"> []</codeBlock>' );
- } );
- it( 'should indent when a selection is collapsed', () => {
- setModelData( model, '<codeBlock language="foo">f[]oo</codeBlock>' );
- indentCommand.execute();
- expect( getModelData( model ) ).to.equal( '<codeBlock language="foo">f []oo</codeBlock>' );
- } );
- it( 'should indent a whole line when a selection is expanded', () => {
- setModelData( model, '<codeBlock language="foo">f[o]o</codeBlock>' );
- indentCommand.execute();
- expect( getModelData( model ) ).to.equal( '<codeBlock language="foo"> f[o]o</codeBlock>' );
- } );
- it( 'should indent multiple lines when a selection is expanded', () => {
- setModelData( model, '<codeBlock language="foo">f[oo<softBreak></softBreak>b]ar</codeBlock>' );
- indentCommand.execute();
- expect( getModelData( model ) ).to.equal( '<codeBlock language="foo"> f[oo<softBreak></softBreak> b]ar</codeBlock>' );
- } );
- it( 'should append the indentation to the line\'s leading white spaces (#1)', () => {
- setModelData( model, '<codeBlock language="foo">[]foo</codeBlock>' );
- // <codeBlock language="foo"> []foo</codeBlock>
- model.change( writer => {
- writer.insertText( ' ', model.document.getRoot().getChild( 0 ) );
- } );
- indentCommand.execute();
- expect( getModelData( model ) ).to.equal( '<codeBlock language="foo"> []foo</codeBlock>' );
- } );
- it( 'should append the indentation to the line\'s leading white spaces (#2)', () => {
- setModelData( model, '<codeBlock language="foo">f[oo<softBreak></softBreak>b]ar</codeBlock>' );
- // <codeBlock language="foo"> f[oo<softBreak></softBreak> b]ar</codeBlock>
- model.change( writer => {
- writer.insertText( ' ', model.document.getRoot().getChild( 0 ), 4 );
- writer.insertText( ' ', model.document.getRoot().getChild( 0 ), 0 );
- } );
- indentCommand.execute();
- expect( getModelData( model ) ).to.equal(
- '<codeBlock language="foo"> f[oo<softBreak></softBreak> b]ar</codeBlock>' );
- } );
- describe( 'config.codeBlock.indentSequence', () => {
- it( 'should be used when indenting', () => {
- return ModelTestEditor
- .create( {
- plugins: [ CodeBlockEditing, Paragraph, BlockQuoteEditing, AlignmentEditing, BoldEditing ],
- codeBlock: {
- indentSequence: ' '
- }
- } )
- .then( newEditor => {
- const editor = newEditor;
- const model = editor.model;
- const indentCommand = new IndentCodeBlockCommand( editor, 'forward' );
- setModelData( model, '<codeBlock language="foo">f[o]o</codeBlock>' );
- indentCommand.execute();
- expect( getModelData( model ) ).to.equal( '<codeBlock language="foo"> f[o]o</codeBlock>' );
- return editor.destroy();
- } );
- } );
- } );
- } );
- } );
- describe( 'Backward (outdent) command', () => {
- describe( '#isEnabled', () => {
- it( 'should be true when the selection is in a line containing the indent sequence', () => {
- setModelData( model, '<codeBlock language="foo">f[]oo</codeBlock>' );
- // <codeBlock language="foo"> f[]oo</codeBlock>
- model.change( writer => {
- writer.insertText( ' ', model.document.getRoot().getChild( 0 ) );
- } );
- expect( outdentCommand.isEnabled ).to.be.true;
- } );
- it( 'should be true when any line in the selection contains more than the indent sequence', () => {
- setModelData( model, '<codeBlock language="foo">f[oo</codeBlock><paragraph>ba]r</paragraph>' );
- // <codeBlock language="foo"> f[oo</codeBlock><paragraph>ba]r</paragraph>
- model.change( writer => {
- writer.insertText( ' ', model.document.getRoot().getChild( 0 ) );
- } );
- expect( outdentCommand.isEnabled ).to.be.true;
- } );
- it( 'should be true when any line in the selection contains the indent sequence', () => {
- setModelData( model, '<codeBlock language="foo">f[oo</codeBlock><codeBlock language="foo">ba]r</codeBlock>' );
- // <codeBlock language="foo">f[oo</codeBlock><codeBlock language="foo"> ba]r</codeBlock>
- model.change( writer => {
- writer.insertText( ' ', model.document.getRoot().getChild( 1 ) );
- } );
- expect( outdentCommand.isEnabled ).to.be.true;
- } );
- it( 'should be false when the indent sequence is in other element', () => {
- setModelData( model, '<paragraph>foo[]</paragraph>' );
- // <paragraph> foo[]</paragraph>
- model.change( writer => {
- writer.insertText( ' ', model.document.getRoot().getChild( 0 ) );
- } );
- expect( outdentCommand.isEnabled ).to.be.false;
- } );
- it( 'should be false when there is no indent sequence in the line (#1)', () => {
- setModelData( model, '<codeBlock language="foo">f[]oo</codeBlock>' );
- expect( outdentCommand.isEnabled ).to.be.false;
- } );
- it( 'should be false when there is no indent sequence in the line (#2)', () => {
- setModelData( model, '<codeBlock language="foo">[]</codeBlock>' );
- expect( outdentCommand.isEnabled ).to.be.false;
- } );
- it( 'should be false when there is no indent sequence in the line (#3)', () => {
- setModelData( model, '<codeBlock language="foo">foo[]</codeBlock>' );
- expect( outdentCommand.isEnabled ).to.be.false;
- } );
- it( 'should be false when there is no corrent sequence in the line', () => {
- setModelData( model, '<codeBlock language="foo">foo[]</codeBlock>' );
- // <codeBlock language="foo"> foo[]</codeBlock>
- model.change( writer => {
- writer.insertText( ' ', model.document.getRoot().getChild( 0 ) );
- } );
- expect( outdentCommand.isEnabled ).to.be.false;
- } );
- it( 'should be false when the sequence is not in leading characters of the line (#1)', () => {
- setModelData( model, '<codeBlock language="foo">barfoo[]</codeBlock>' );
- // <codeBlock language="foo">bar foo[]</codeBlock>
- model.change( writer => {
- writer.insertText( ' ', model.document.getRoot().getChild( 0 ), 3 );
- } );
- expect( outdentCommand.isEnabled ).to.be.false;
- } );
- it( 'should be false when the sequence is not in leading characters of the line (#2)', () => {
- setModelData( model, '<codeBlock language="foo">foo[]</codeBlock>' );
- // <codeBlock language="foo">foo[]</codeBlock>
- model.change( writer => {
- writer.insertText( ' ', model.document.getRoot().getChild( 0 ), 0 );
- } );
- expect( outdentCommand.isEnabled ).to.be.false;
- } );
- describe( 'config.codeBlock.indentSequence', () => {
- it( 'should be respected (#1)', () => {
- return ModelTestEditor
- .create( {
- plugins: [ CodeBlockEditing, Paragraph, BlockQuoteEditing, AlignmentEditing, BoldEditing ],
- codeBlock: {
- indentSequence: ' '
- }
- } )
- .then( newEditor => {
- const editor = newEditor;
- const model = editor.model;
- const outdentCommand = new IndentCodeBlockCommand( editor, 'backward' );
- setModelData( model, '<codeBlock language="foo">foo[]</codeBlock>' );
- // <codeBlock language="foo"> foo[]</codeBlock>
- model.change( writer => {
- writer.insertText( ' ', model.document.getRoot().getChild( 0 ) );
- } );
- expect( outdentCommand.isEnabled ).to.be.true;
- return editor.destroy();
- } );
- } );
- it( 'should be respected (#2)', () => {
- return ModelTestEditor
- .create( {
- plugins: [ CodeBlockEditing, Paragraph, BlockQuoteEditing, AlignmentEditing, BoldEditing ],
- codeBlock: {
- indentSequence: ' '
- }
- } )
- .then( newEditor => {
- const editor = newEditor;
- const model = editor.model;
- const outdentCommand = new IndentCodeBlockCommand( editor, 'backward' );
- setModelData( model, '<codeBlock language="foo"> foo[]</codeBlock>' );
- // <codeBlock language="foo"> foo[]</codeBlock>
- model.change( writer => {
- writer.insertText( ' ', model.document.getRoot().getChild( 0 ) );
- } );
- expect( outdentCommand.isEnabled ).to.be.false;
- return editor.destroy();
- } );
- } );
- it( 'should disable the command when the config is not set', () => {
- return ModelTestEditor
- .create( {
- plugins: [ CodeBlockEditing, Paragraph, BlockQuoteEditing, AlignmentEditing, BoldEditing ],
- codeBlock: {
- indentSequence: false
- }
- } )
- .then( newEditor => {
- const editor = newEditor;
- const model = editor.model;
- const outdentCommand = new IndentCodeBlockCommand( editor, 'backward' );
- setModelData( model, '<codeBlock language="foo">foo[]</codeBlock>' );
- // <codeBlock language="foo"> foo[]</codeBlock>
- model.change( writer => {
- writer.insertText( ' ', model.document.getRoot().getChild( 0 ) );
- } );
- expect( outdentCommand.isEnabled ).to.be.false;
- return editor.destroy();
- } );
- } );
- } );
- } );
- describe( 'execute()', () => {
- it( 'should outdent a single line', () => {
- setModelData( model, '<codeBlock language="foo">f[]oo</codeBlock>' );
- // <codeBlock language="foo"> f[]oo</codeBlock>
- model.change( writer => {
- writer.insertText( ' ', model.document.getRoot().getChild( 0 ) );
- } );
- outdentCommand.execute();
- expect( getModelData( model ) ).to.equal( '<codeBlock language="foo">f[]oo</codeBlock>' );
- } );
- it( 'should outdent only one level in a single line', () => {
- setModelData( model, '<codeBlock language="foo">f[]oo</codeBlock>' );
- // <codeBlock language="foo"> f[]oo</codeBlock>
- model.change( writer => {
- writer.insertText( ' ', model.document.getRoot().getChild( 0 ) );
- } );
- outdentCommand.execute();
- expect( getModelData( model ) ).to.equal( '<codeBlock language="foo"> f[]oo</codeBlock>' );
- } );
- it( 'should outdent multiple lines', () => {
- setModelData( model, '<codeBlock language="foo">f[oo<softBreak></softBreak>ba]r</codeBlock>' );
- // <codeBlock language="foo"> f[oo<softBreak></softBreak> ba]r</codeBlock>
- model.change( writer => {
- writer.insertText( ' ', model.document.getRoot().getChild( 0 ), 4 );
- writer.insertText( ' ', model.document.getRoot().getChild( 0 ), 0 );
- } );
- outdentCommand.execute();
- expect( getModelData( model ) ).to.equal( '<codeBlock language="foo">f[oo<softBreak></softBreak>ba]r</codeBlock>' );
- } );
- it( 'should outdent only one level across multiple lines', () => {
- setModelData( model, '<codeBlock language="foo">f[oo<softBreak></softBreak>ba]r</codeBlock>' );
- // <codeBlock language="foo"> f[oo<softBreak></softBreak> ba]r</codeBlock>
- model.change( writer => {
- writer.insertText( ' ', model.document.getRoot().getChild( 0 ), 4 );
- writer.insertText( ' ', model.document.getRoot().getChild( 0 ), 0 );
- } );
- outdentCommand.execute();
- expect( getModelData( model ) ).to.equal( '<codeBlock language="foo">f[oo<softBreak></softBreak> ba]r</codeBlock>' );
- } );
- it( 'should outdent some lines', () => {
- setModelData( model, '<codeBlock language="foo">f[oo<softBreak></softBreak>ba]r</codeBlock>' );
- // <codeBlock language="foo">f[oo<softBreak></softBreak> ba]r</codeBlock>
- model.change( writer => {
- writer.insertText( ' ', model.document.getRoot().getChild( 0 ), 4 );
- } );
- outdentCommand.execute();
- expect( getModelData( model ) ).to.equal( '<codeBlock language="foo">f[oo<softBreak></softBreak>ba]r</codeBlock>' );
- } );
- describe( 'config.codeBlock.indentSequence', () => {
- it( 'should be respected', () => {
- return ModelTestEditor
- .create( {
- plugins: [ CodeBlockEditing, Paragraph, BlockQuoteEditing, AlignmentEditing, BoldEditing ],
- codeBlock: {
- indentSequence: ' '
- }
- } )
- .then( newEditor => {
- const editor = newEditor;
- const model = editor.model;
- const outdentCommand = new IndentCodeBlockCommand( editor, 'backward' );
- setModelData( model, '<codeBlock language="foo">f[]oo</codeBlock>' );
- // <codeBlock language="foo"> f[]oo</codeBlock>
- model.change( writer => {
- writer.insertText( ' ', model.document.getRoot().getChild( 0 ) );
- } );
- outdentCommand.execute();
- expect( getModelData( model ) ).to.equal( '<codeBlock language="foo">f[]oo</codeBlock>' );
- return editor.destroy();
- } );
- } );
- } );
- } );
- } );
- } );
|