| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787 |
- /**
- * @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 testUtils from '@ckeditor/ckeditor5-core/tests/_utils/utils';
- import VirtualTestEditor from '@ckeditor/ckeditor5-core/tests/_utils/virtualtesteditor';
- import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';
- import Typing from '@ckeditor/ckeditor5-typing/src/typing';
- import Command from '@ckeditor/ckeditor5-core/src/command';
- import { setData as setModelData } from '@ckeditor/ckeditor5-engine/src/dev-utils/model';
- import RestrictedEditingModeEditing from './../src/restrictededitingmodeediting';
- import UndoEditing from '@ckeditor/ckeditor5-undo/src/undoediting';
- describe( 'RestrictedEditingEditing - commands', () => {
- let editor;
- testUtils.createSinonSandbox();
- describe( 'commands toggling', () => {
- let model, firstParagraph;
- beforeEach( async () => {
- editor = await VirtualTestEditor.create( { plugins: [ Paragraph, Typing, RestrictedEditingModeEditing ] } );
- model = editor.model;
- setModelData( model, '<paragraph>[]foo bar baz</paragraph>' );
- firstParagraph = model.document.getRoot().getChild( 0 );
- model.change( writer => {
- writer.addMarker( 'restrictedEditingException:1', {
- range: writer.createRange(
- writer.createPositionAt( firstParagraph, 4 ),
- writer.createPositionAt( firstParagraph, 7 ) ),
- usingOperation: true,
- affectsData: true
- } );
- } );
- } );
- afterEach( async () => {
- await editor.destroy();
- } );
- describe( 'always enabled commands', () => {
- describe( 'undo', () => {
- beforeEach( () => {
- editor.commands.add( 'undo', buildFakeCommand( editor ) );
- } );
- it( 'should be enabled outside exception marker', () => {
- model.change( writer => {
- writer.setSelection( firstParagraph, 1 );
- } );
- expect( editor.commands.get( 'undo' ).isEnabled ).to.be.true;
- } );
- it( 'should be enabled inside exception marker', () => {
- model.change( writer => {
- writer.setSelection( firstParagraph, 5 );
- } );
- expect( editor.commands.get( 'undo' ).isEnabled ).to.be.true;
- } );
- } );
- describe( 'redo', () => {
- beforeEach( () => {
- editor.commands.add( 'redo', buildFakeCommand( editor ) );
- } );
- it( 'should be enabled outside exception marker', () => {
- model.change( writer => {
- writer.setSelection( firstParagraph, 1 );
- } );
- expect( editor.commands.get( 'redo' ).isEnabled ).to.be.true;
- } );
- it( 'should be enabled inside exception marker', () => {
- model.change( writer => {
- writer.setSelection( firstParagraph, 5 );
- } );
- expect( editor.commands.get( 'redo' ).isEnabled ).to.be.true;
- } );
- } );
- } );
- describe( 'commands enabled in exception marker', () => {
- describe( 'input', () => {
- beforeEach( () => {
- editor.commands.add( 'input', buildFakeCommand( editor ) );
- model.change( writer => {
- writer.setSelection( firstParagraph, 'end' );
- } );
- } );
- it( 'should be disabled when caret is outside exception marker', () => {
- model.change( writer => {
- writer.setSelection( firstParagraph, 1 );
- } );
- expect( editor.commands.get( 'input' ).isEnabled ).to.be.false;
- } );
- it( 'should be enabled when caret is inside exception marker (not touching boundaries)', () => {
- model.change( writer => {
- writer.setSelection( firstParagraph, 5 );
- } );
- expect( editor.commands.get( 'input' ).isEnabled ).to.be.true;
- } );
- it( 'should be disabled when caret is inside other marker', () => {
- model.change( writer => {
- writer.addMarker( 'foo-bar:1', {
- range: writer.createRange(
- writer.createPositionAt( firstParagraph, 0 ),
- writer.createPositionAt( firstParagraph, 3 ) ),
- usingOperation: true,
- affectsData: true
- } );
- writer.setSelection( firstParagraph, 1 );
- } );
- expect( editor.commands.get( 'input' ).isEnabled ).to.be.false;
- } );
- it( 'should be enabled when caret is inside exception marker (start boundary)', () => {
- model.change( writer => {
- writer.setSelection( firstParagraph, 4 );
- } );
- expect( editor.commands.get( 'input' ).isEnabled ).to.be.true;
- } );
- it( 'should be enabled when caret is inside exception marker (end boundary)', () => {
- model.change( writer => {
- writer.setSelection( firstParagraph, 7 );
- } );
- expect( editor.commands.get( 'input' ).isEnabled ).to.be.true;
- } );
- it( 'should be disabled for multi-range selection (collapsed ranges)', () => {
- model.change( writer => {
- writer.setSelection( [
- writer.createRange(
- writer.createPositionAt( firstParagraph, 5 )
- ),
- writer.createRange(
- writer.createPositionAt( firstParagraph, 9 )
- )
- ] );
- } );
- expect( editor.commands.get( 'input' ).isEnabled ).to.be.false;
- } );
- it( 'should be disabled for non-collapsed selection that expands over exception marker', () => {
- model.change( writer => {
- writer.setSelection( writer.createRange(
- writer.createPositionAt( firstParagraph, 0 ),
- writer.createPositionAt( firstParagraph, 5 )
- ) );
- } );
- expect( editor.commands.get( 'input' ).isEnabled ).to.be.false;
- } );
- it( 'should be enabled for non-collapsed selection that is fully contained inside exception marker', () => {
- model.change( writer => {
- writer.setSelection( writer.createRange(
- writer.createPositionAt( firstParagraph, 5 ),
- writer.createPositionAt( firstParagraph, 6 )
- ) );
- } );
- expect( editor.commands.get( 'input' ).isEnabled ).to.be.true;
- } );
- it( 'should be enabled for non-collapsed selection inside exception marker (start position on marker boundary)', () => {
- model.change( writer => {
- writer.setSelection( writer.createRange(
- writer.createPositionAt( firstParagraph, 4 ),
- writer.createPositionAt( firstParagraph, 6 )
- ) );
- } );
- expect( editor.commands.get( 'input' ).isEnabled ).to.be.true;
- } );
- it( 'should be enabled for non-collapsed selection inside exception marker (end position on marker boundary)', () => {
- model.change( writer => {
- writer.setSelection( writer.createRange(
- writer.createPositionAt( firstParagraph, 5 ),
- writer.createPositionAt( firstParagraph, 7 )
- ) );
- } );
- expect( editor.commands.get( 'input' ).isEnabled ).to.be.true;
- } );
- it( 'should be enabled for non-collapsed selection is equal to exception marker', () => {
- model.change( writer => {
- writer.setSelection( writer.createRange(
- writer.createPositionAt( firstParagraph, 4 ),
- writer.createPositionAt( firstParagraph, 7 )
- ) );
- } );
- expect( editor.commands.get( 'input' ).isEnabled ).to.be.true;
- } );
- it( 'should be disabled for non-collapsed selection with more then one range', () => {
- model.change( writer => {
- writer.setSelection( [
- writer.createRange(
- writer.createPositionAt( firstParagraph, 5 ),
- writer.createPositionAt( firstParagraph, 6 )
- ),
- writer.createRange(
- writer.createPositionAt( firstParagraph, 8 ),
- writer.createPositionAt( firstParagraph, 9 )
- )
- ] );
- } );
- expect( editor.commands.get( 'input' ).isEnabled ).to.be.false;
- } );
- } );
- describe( 'delete', () => {
- beforeEach( () => {
- editor.commands.add( 'delete', buildFakeCommand( editor ) );
- model.change( writer => {
- writer.setSelection( firstParagraph, 'end' );
- } );
- } );
- it( 'should be disabled when caret is outside exception marker', () => {
- model.change( writer => {
- writer.setSelection( firstParagraph, 1 );
- } );
- expect( editor.commands.get( 'delete' ).isEnabled ).to.be.false;
- } );
- it( 'should be enabled when caret is inside exception marker (not touching boundaries)', () => {
- model.change( writer => {
- writer.setSelection( firstParagraph, 5 );
- } );
- expect( editor.commands.get( 'delete' ).isEnabled ).to.be.true;
- } );
- it( 'should be disabled when caret is inside exception marker (start boundary)', () => {
- model.change( writer => {
- writer.setSelection( firstParagraph, 4 );
- } );
- expect( editor.commands.get( 'delete' ).isEnabled ).to.be.false;
- } );
- it( 'should be disabled when caret moves to start boundary and it was enabled previously', () => {
- model.change( writer => {
- writer.setSelection( firstParagraph, 5 );
- } );
- expect( editor.commands.get( 'delete' ).isEnabled ).to.be.true;
- model.change( writer => {
- writer.setSelection( firstParagraph, 4 );
- } );
- expect( editor.commands.get( 'delete' ).isEnabled ).to.be.false;
- } );
- it( 'should be enabled when caret is inside exception marker (end boundary)', () => {
- model.change( writer => {
- writer.setSelection( firstParagraph, 7 );
- } );
- expect( editor.commands.get( 'delete' ).isEnabled ).to.be.true;
- } );
- it( 'should be disabled for non-collapsed selection that expands over exception marker', () => {
- model.change( writer => {
- writer.setSelection( writer.createRange(
- writer.createPositionAt( firstParagraph, 0 ),
- writer.createPositionAt( firstParagraph, 5 )
- ) );
- } );
- expect( editor.commands.get( 'delete' ).isEnabled ).to.be.false;
- } );
- it( 'should be enabled for non-collapsed selection that is fully contained inside exception marker', () => {
- model.change( writer => {
- writer.setSelection( writer.createRange(
- writer.createPositionAt( firstParagraph, 5 ),
- writer.createPositionAt( firstParagraph, 6 )
- ) );
- } );
- expect( editor.commands.get( 'delete' ).isEnabled ).to.be.true;
- } );
- it( 'should be enabled for non-collapsed selection inside exception marker (start position on marker boundary)', () => {
- model.change( writer => {
- writer.setSelection( writer.createRange(
- writer.createPositionAt( firstParagraph, 4 ),
- writer.createPositionAt( firstParagraph, 6 )
- ) );
- } );
- expect( editor.commands.get( 'delete' ).isEnabled ).to.be.true;
- } );
- it( 'should be enabled for non-collapsed selection inside exception marker (end position on marker boundary)', () => {
- model.change( writer => {
- writer.setSelection( writer.createRange(
- writer.createPositionAt( firstParagraph, 5 ),
- writer.createPositionAt( firstParagraph, 7 )
- ) );
- } );
- expect( editor.commands.get( 'delete' ).isEnabled ).to.be.true;
- } );
- it( 'should be enabled for non-collapsed selection is equal to exception marker', () => {
- model.change( writer => {
- writer.setSelection( writer.createRange(
- writer.createPositionAt( firstParagraph, 4 ),
- writer.createPositionAt( firstParagraph, 7 )
- ) );
- } );
- expect( editor.commands.get( 'delete' ).isEnabled ).to.be.true;
- } );
- } );
- describe( 'forwardDelete', () => {
- beforeEach( () => {
- editor.commands.add( 'forwardDelete', buildFakeCommand( editor ) );
- model.change( writer => {
- writer.setSelection( firstParagraph, 'end' );
- } );
- } );
- it( 'should be disabled when caret is outside exception marker', () => {
- model.change( writer => {
- writer.setSelection( firstParagraph, 1 );
- } );
- expect( editor.commands.get( 'forwardDelete' ).isEnabled ).to.be.false;
- } );
- it( 'should be enabled when caret is inside exception marker (not touching boundaries)', () => {
- model.change( writer => {
- writer.setSelection( firstParagraph, 5 );
- } );
- expect( editor.commands.get( 'forwardDelete' ).isEnabled ).to.be.true;
- } );
- it( 'should be enabled when caret is inside exception marker (start boundary)', () => {
- model.change( writer => {
- writer.setSelection( firstParagraph, 4 );
- } );
- expect( editor.commands.get( 'forwardDelete' ).isEnabled ).to.be.true;
- } );
- it( 'should be disabled when caret is inside exception marker (end boundary)', () => {
- model.change( writer => {
- writer.setSelection( firstParagraph, 7 );
- } );
- expect( editor.commands.get( 'forwardDelete' ).isEnabled ).to.be.false;
- } );
- it( 'should be disabled when caret moves to end boundary and it was enabled previously', () => {
- model.change( writer => {
- writer.setSelection( firstParagraph, 5 );
- } );
- expect( editor.commands.get( 'forwardDelete' ).isEnabled ).to.be.true;
- model.change( writer => {
- writer.setSelection( firstParagraph, 7 );
- } );
- expect( editor.commands.get( 'forwardDelete' ).isEnabled ).to.be.false;
- } );
- it( 'should be disabled for non-collapsed selection that expands over exception marker', () => {
- model.change( writer => {
- writer.setSelection( writer.createRange(
- writer.createPositionAt( firstParagraph, 0 ),
- writer.createPositionAt( firstParagraph, 5 )
- ) );
- } );
- expect( editor.commands.get( 'forwardDelete' ).isEnabled ).to.be.false;
- } );
- it( 'should be enabled for non-collapsed selection that is fully contained inside exception marker', () => {
- model.change( writer => {
- writer.setSelection( writer.createRange(
- writer.createPositionAt( firstParagraph, 5 ),
- writer.createPositionAt( firstParagraph, 6 )
- ) );
- } );
- expect( editor.commands.get( 'forwardDelete' ).isEnabled ).to.be.true;
- } );
- it( 'should be enabled for non-collapsed selection inside exception marker (start position on marker boundary)', () => {
- model.change( writer => {
- writer.setSelection( writer.createRange(
- writer.createPositionAt( firstParagraph, 4 ),
- writer.createPositionAt( firstParagraph, 6 )
- ) );
- } );
- expect( editor.commands.get( 'forwardDelete' ).isEnabled ).to.be.true;
- } );
- it( 'should be enabled for non-collapsed selection inside exception marker (end position on marker boundary)', () => {
- model.change( writer => {
- writer.setSelection( writer.createRange(
- writer.createPositionAt( firstParagraph, 5 ),
- writer.createPositionAt( firstParagraph, 7 )
- ) );
- } );
- expect( editor.commands.get( 'forwardDelete' ).isEnabled ).to.be.true;
- } );
- it( 'should be enabled for non-collapsed selection is equal to exception marker', () => {
- model.change( writer => {
- writer.setSelection( writer.createRange(
- writer.createPositionAt( firstParagraph, 4 ),
- writer.createPositionAt( firstParagraph, 7 )
- ) );
- } );
- expect( editor.commands.get( 'forwardDelete' ).isEnabled ).to.be.true;
- } );
- } );
- } );
- describe( 'non-enabled commands', () => {
- beforeEach( () => {
- editor.commands.add( 'other', buildFakeCommand( editor ) );
- model.change( writer => {
- writer.setSelection( firstParagraph, 'end' );
- } );
- } );
- it( 'should be disabled outside exception marker', () => {
- model.change( writer => {
- writer.setSelection( firstParagraph, 1 );
- } );
- expect( editor.commands.get( 'other' ).isEnabled ).to.be.false;
- } );
- it( 'should be disabled inside exception marker', () => {
- model.change( writer => {
- writer.setSelection( firstParagraph, 1 );
- } );
- model.change( writer => {
- writer.setSelection( firstParagraph, 5 );
- } );
- expect( editor.commands.get( 'other' ).isEnabled ).to.be.false;
- } );
- it( 'should be disabled when caret is inside exception marker (not touching boundaries)', () => {
- model.change( writer => {
- writer.setSelection( firstParagraph, 5 );
- } );
- expect( editor.commands.get( 'other' ).isEnabled ).to.be.false;
- } );
- it( 'should be disabled when caret is inside exception marker (start boundary)', () => {
- model.change( writer => {
- writer.setSelection( firstParagraph, 4 );
- } );
- expect( editor.commands.get( 'other' ).isEnabled ).to.be.false;
- } );
- it( 'should be disabled when caret is inside exception marker (end boundary)', () => {
- model.change( writer => {
- writer.setSelection( firstParagraph, 7 );
- } );
- expect( editor.commands.get( 'other' ).isEnabled ).to.be.false;
- } );
- it( 'should be disabled for non-collapsed selection that expands over exception marker', () => {
- model.change( writer => {
- writer.setSelection( writer.createRange(
- writer.createPositionAt( firstParagraph, 0 ),
- writer.createPositionAt( firstParagraph, 5 )
- ) );
- } );
- expect( editor.commands.get( 'other' ).isEnabled ).to.be.false;
- } );
- it( 'should be disabled for non-collapsed selection that is fully contained inside exception marker', () => {
- model.change( writer => {
- writer.setSelection( writer.createRange(
- writer.createPositionAt( firstParagraph, 5 ),
- writer.createPositionAt( firstParagraph, 6 )
- ) );
- } );
- expect( editor.commands.get( 'other' ).isEnabled ).to.be.false;
- } );
- it( 'should be disabled for non-collapsed selection inside exception marker (start position on marker boundary)', () => {
- model.change( writer => {
- writer.setSelection( writer.createRange(
- writer.createPositionAt( firstParagraph, 4 ),
- writer.createPositionAt( firstParagraph, 6 )
- ) );
- } );
- expect( editor.commands.get( 'other' ).isEnabled ).to.be.false;
- } );
- it( 'should be disabled for non-collapsed selection inside exception marker (end position on marker boundary)', () => {
- model.change( writer => {
- writer.setSelection( writer.createRange(
- writer.createPositionAt( firstParagraph, 5 ),
- writer.createPositionAt( firstParagraph, 7 )
- ) );
- } );
- expect( editor.commands.get( 'other' ).isEnabled ).to.be.false;
- } );
- it( 'should be disabled for non-collapsed selection is equal to exception marker', () => {
- model.change( writer => {
- writer.setSelection( writer.createRange(
- writer.createPositionAt( firstParagraph, 4 ),
- writer.createPositionAt( firstParagraph, 7 )
- ) );
- } );
- expect( editor.commands.get( 'other' ).isEnabled ).to.be.false;
- } );
- } );
- } );
- describe( 'commands enabled in exception marker by configuration', () => {
- let model, firstParagraph;
- beforeEach( async () => {
- editor = await VirtualTestEditor.create( {
- plugins: [ Paragraph, Typing, RestrictedEditingModeEditing ],
- restrictedEditing: {
- allowedCommands: [ 'allowed' ]
- }
- } );
- model = editor.model;
- editor.commands.add( 'allowed', buildFakeCommand( editor ) );
- setModelData( model, '<paragraph>[]foo bar baz</paragraph>' );
- firstParagraph = model.document.getRoot().getChild( 0 );
- model.change( writer => {
- writer.addMarker( 'restrictedEditingException:1', {
- range: writer.createRange(
- writer.createPositionAt( firstParagraph, 4 ),
- writer.createPositionAt( firstParagraph, 7 ) ),
- usingOperation: true,
- affectsData: true
- } );
- writer.setSelection( firstParagraph, 'end' );
- } );
- } );
- afterEach( async () => {
- await editor.destroy();
- } );
- it( 'should be disabled when caret is outside exception marker', () => {
- model.change( writer => {
- writer.setSelection( firstParagraph, 1 );
- } );
- expect( editor.commands.get( 'allowed' ).isEnabled ).to.be.false;
- } );
- it( 'should be enabled when caret is inside exception marker (not touching boundaries)', () => {
- model.change( writer => {
- writer.setSelection( firstParagraph, 5 );
- } );
- expect( editor.commands.get( 'allowed' ).isEnabled ).to.be.true;
- } );
- it( 'should be disabled when caret is inside other marker', () => {
- model.change( writer => {
- writer.addMarker( 'foo-bar:1', {
- range: writer.createRange(
- writer.createPositionAt( firstParagraph, 0 ),
- writer.createPositionAt( firstParagraph, 3 ) ),
- usingOperation: true,
- affectsData: true
- } );
- writer.setSelection( firstParagraph, 1 );
- } );
- expect( editor.commands.get( 'allowed' ).isEnabled ).to.be.false;
- } );
- it( 'should be enabled when caret is inside exception marker (start boundary)', () => {
- model.change( writer => {
- writer.setSelection( firstParagraph, 4 );
- } );
- expect( editor.commands.get( 'allowed' ).isEnabled ).to.be.true;
- } );
- it( 'should be enabled when caret is inside exception marker (end boundary)', () => {
- model.change( writer => {
- writer.setSelection( firstParagraph, 7 );
- } );
- expect( editor.commands.get( 'allowed' ).isEnabled ).to.be.true;
- } );
- it( 'should be disabled for multi-range selection (collapsed ranges)', () => {
- model.change( writer => {
- writer.setSelection( [
- writer.createRange(
- writer.createPositionAt( firstParagraph, 5 )
- ),
- writer.createRange(
- writer.createPositionAt( firstParagraph, 9 )
- )
- ] );
- } );
- expect( editor.commands.get( 'allowed' ).isEnabled ).to.be.false;
- } );
- it( 'should be disabled for non-collapsed selection that expands over exception marker', () => {
- model.change( writer => {
- writer.setSelection( writer.createRange(
- writer.createPositionAt( firstParagraph, 0 ),
- writer.createPositionAt( firstParagraph, 5 )
- ) );
- } );
- expect( editor.commands.get( 'allowed' ).isEnabled ).to.be.false;
- } );
- it( 'should be enabled for non-collapsed selection that is fully contained inside exception marker', () => {
- model.change( writer => {
- writer.setSelection( writer.createRange(
- writer.createPositionAt( firstParagraph, 5 ),
- writer.createPositionAt( firstParagraph, 6 )
- ) );
- } );
- expect( editor.commands.get( 'allowed' ).isEnabled ).to.be.true;
- } );
- it( 'should be enabled for non-collapsed selection inside exception marker (start position on marker boundary)', () => {
- model.change( writer => {
- writer.setSelection( writer.createRange(
- writer.createPositionAt( firstParagraph, 4 ),
- writer.createPositionAt( firstParagraph, 6 )
- ) );
- } );
- expect( editor.commands.get( 'allowed' ).isEnabled ).to.be.true;
- } );
- it( 'should be enabled for non-collapsed selection inside exception marker (end position on marker boundary)', () => {
- model.change( writer => {
- writer.setSelection( writer.createRange(
- writer.createPositionAt( firstParagraph, 5 ),
- writer.createPositionAt( firstParagraph, 7 )
- ) );
- } );
- expect( editor.commands.get( 'allowed' ).isEnabled ).to.be.true;
- } );
- it( 'should be enabled for non-collapsed selection is equal to exception marker', () => {
- model.change( writer => {
- writer.setSelection( writer.createRange(
- writer.createPositionAt( firstParagraph, 4 ),
- writer.createPositionAt( firstParagraph, 7 )
- ) );
- } );
- expect( editor.commands.get( 'allowed' ).isEnabled ).to.be.true;
- } );
- it( 'should be disabled for non-collapsed selection with more then one range', () => {
- model.change( writer => {
- writer.setSelection( [
- writer.createRange(
- writer.createPositionAt( firstParagraph, 5 ),
- writer.createPositionAt( firstParagraph, 6 )
- ),
- writer.createRange(
- writer.createPositionAt( firstParagraph, 8 ),
- writer.createPositionAt( firstParagraph, 9 )
- )
- ] );
- } );
- expect( editor.commands.get( 'allowed' ).isEnabled ).to.be.false;
- } );
- } );
- describe( 'integration', () => {
- let model, firstParagraph;
- beforeEach( async () => {
- editor = await VirtualTestEditor.create( { plugins: [ Paragraph, Typing, UndoEditing, RestrictedEditingModeEditing ] } );
- model = editor.model;
- setModelData( model, '<paragraph>[]foo bar baz</paragraph>' );
- firstParagraph = model.document.getRoot().getChild( 0 );
- model.change( writer => {
- writer.addMarker( 'restrictedEditingException:1', {
- range: writer.createRange(
- writer.createPositionAt( firstParagraph, 4 ),
- writer.createPositionAt( firstParagraph, 7 ) ),
- usingOperation: true,
- affectsData: true
- } );
- } );
- } );
- afterEach( async () => {
- await editor.destroy();
- } );
- describe( 'delete + undo', () => {
- it( 'should be enabled after data change (no selection change event on undo)', () => {
- model.change( writer => {
- writer.setSelection( firstParagraph, 7 );
- } );
- editor.execute( 'delete' );
- editor.execute( 'undo' );
- expect( editor.commands.get( 'delete' ).isEnabled ).to.be.true;
- } );
- } );
- } );
- class FakeCommand extends Command {
- refresh() {
- this.isEnabled = true;
- }
- }
- function buildFakeCommand( editor ) {
- return new FakeCommand( editor );
- }
- } );
|