| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240 |
- /**
- * @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 TodoListEditing from '../src/todolistediting';
- import TodoListCheckCommand from '../src/todolistcheckcommand';
- 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( 'TodoListCheckCommand', () => {
- let editor, model, command;
- beforeEach( () => {
- return ModelTestEditor
- .create( {
- plugins: [ TodoListEditing ]
- } )
- .then( newEditor => {
- editor = newEditor;
- model = editor.model;
- command = new TodoListCheckCommand( editor );
- } );
- } );
- describe( 'value', () => {
- it( 'should be false when selection is in not checked element', () => {
- setModelData( model, '<listItem listIndent="0" listType="todo">ab[]c</listItem>' );
- expect( command.value ).to.equal( false );
- } );
- it( 'should be true when selection is in checked element', () => {
- setModelData( model, '<listItem listIndent="0" listType="todo" todoListChecked="true">ab[]c</listItem>' );
- expect( command.value ).to.equal( true );
- } );
- it( 'should be false when at least one selected element is not checked', () => {
- setModelData( model,
- '<listItem listIndent="0" listType="todo" todoListChecked="true">ab[c</listItem>' +
- '<paragraph>abc</paragraph>' +
- '<listItem listIndent="0" listType="todo">abc</listItem>' +
- '<listItem listIndent="0" listType="todo" todoListChecked="true">ab]c</listItem>'
- );
- expect( command.value ).to.equal( false );
- } );
- it( 'should be true when all selected elements are checked', () => {
- setModelData( model,
- '<listItem listIndent="0" listType="todo" todoListChecked="true">ab[c</listItem>' +
- '<paragraph>abc</paragraph>' +
- '<listItem listIndent="0" listType="todo" todoListChecked="true">abc</listItem>' +
- '<listItem listIndent="0" listType="todo" todoListChecked="true">ab]c</listItem>'
- );
- expect( command.value ).to.equal( true );
- } );
- } );
- describe( 'isEnabled', () => {
- it( 'should be enabled when selection is inside to-do list item', () => {
- setModelData( model, '<listItem listIndent="0" listType="todo">a[b]c</listItem>' );
- expect( command.isEnabled ).to.equal( true );
- } );
- it( 'should be disabled when selection is not inside to-do list item', () => {
- setModelData( model, '<paragraph>a[b]c</paragraph>' );
- expect( command.isEnabled ).to.equal( false );
- } );
- it( 'should be enabled when at least one to-do list item is selected', () => {
- setModelData( model,
- '<paragraph>a[bc</paragraph>' +
- '<listItem listIndent="0" listType="todo">abc</listItem>' +
- '<paragraph>ab]c</paragraph>'
- );
- expect( command.isEnabled ).to.equal( true );
- } );
- it( 'should be enabled when none to-do list item is selected', () => {
- setModelData( model,
- '<paragraph>a[bc</paragraph>' +
- '<paragraph>abc</paragraph>' +
- '<paragraph>a]bc</paragraph>'
- );
- expect( command.isEnabled ).to.equal( false );
- } );
- } );
- describe( 'execute()', () => {
- it( 'should toggle checked state on to-do list item when collapsed selection is inside this item', () => {
- setModelData( model, '<listItem listIndent="0" listType="todo">b[]ar</listItem>' );
- command.execute();
- expect( getModelData( model ) ).to.equal(
- '<listItem listIndent="0" listType="todo" todoListChecked="true">b[]ar</listItem>'
- );
- command.execute();
- expect( getModelData( model ) ).to.equal(
- '<listItem listIndent="0" listType="todo">b[]ar</listItem>'
- );
- } );
- it( 'should toggle checked state on to-do list item when non-collapsed selection is inside this item', () => {
- setModelData( model, '<listItem listIndent="0" listType="todo">b[a]r</listItem>' );
- command.execute();
- expect( getModelData( model ) ).to.equal(
- '<listItem listIndent="0" listType="todo" todoListChecked="true">b[a]r</listItem>'
- );
- command.execute();
- expect( getModelData( model ) ).to.equal(
- '<listItem listIndent="0" listType="todo">b[a]r</listItem>'
- );
- } );
- it( 'should toggle state on multiple items', () => {
- setModelData( model,
- '<listItem listIndent="0" listType="todo">abc[</listItem>' +
- '<listItem listIndent="0" listType="todo">def</listItem>' +
- '<listItem listIndent="0" listType="todo">]ghi</listItem>'
- );
- command.execute();
- expect( getModelData( model ) ).to.equal(
- '<listItem listIndent="0" listType="todo" todoListChecked="true">abc[</listItem>' +
- '<listItem listIndent="0" listType="todo" todoListChecked="true">def</listItem>' +
- '<listItem listIndent="0" listType="todo" todoListChecked="true">]ghi</listItem>'
- );
- command.execute();
- expect( getModelData( model ) ).to.equal(
- '<listItem listIndent="0" listType="todo">abc[</listItem>' +
- '<listItem listIndent="0" listType="todo">def</listItem>' +
- '<listItem listIndent="0" listType="todo">]ghi</listItem>'
- );
- } );
- it( 'should toggle state on multiple items mixed with none to-do list items', () => {
- setModelData( model,
- '<paragraph>a[bc</paragraph>' +
- '<listItem listIndent="0" listType="todo">def</listItem>' +
- '<listItem listIndent="0" listType="numbered">ghi</listItem>' +
- '<listItem listIndent="0" listType="todo">jkl</listItem>' +
- '<paragraph>mn]o</paragraph>'
- );
- command.execute();
- expect( getModelData( model ) ).to.equal(
- '<paragraph>a[bc</paragraph>' +
- '<listItem listIndent="0" listType="todo" todoListChecked="true">def</listItem>' +
- '<listItem listIndent="0" listType="numbered">ghi</listItem>' +
- '<listItem listIndent="0" listType="todo" todoListChecked="true">jkl</listItem>' +
- '<paragraph>mn]o</paragraph>'
- );
- command.execute();
- expect( getModelData( model ) ).to.equal(
- '<paragraph>a[bc</paragraph>' +
- '<listItem listIndent="0" listType="todo">def</listItem>' +
- '<listItem listIndent="0" listType="numbered">ghi</listItem>' +
- '<listItem listIndent="0" listType="todo">jkl</listItem>' +
- '<paragraph>mn]o</paragraph>'
- );
- } );
- it( 'should mark all selected items as checked when at least one selected item is not checked', () => {
- setModelData( model,
- '<listItem listIndent="0" listType="todo">abc[</listItem>' +
- '<listItem listIndent="0" listType="todo" todoListChecked="true">def</listItem>' +
- '<listItem listIndent="0" listType="todo">]ghi</listItem>'
- );
- command.execute();
- expect( getModelData( model ) ).to.equal(
- '<listItem listIndent="0" listType="todo" todoListChecked="true">abc[</listItem>' +
- '<listItem listIndent="0" listType="todo" todoListChecked="true">def</listItem>' +
- '<listItem listIndent="0" listType="todo" todoListChecked="true">]ghi</listItem>'
- );
- } );
- it( 'should do nothing when there is no elements to toggle attribute', () => {
- setModelData( model, '<paragraph>b[]ar</paragraph>' );
- command.execute();
- expect( getModelData( model ) ).to.equal( '<paragraph>b[]ar</paragraph>' );
- } );
- it( 'should be up to date just before execution', () => {
- setModelData( model,
- '<listItem listIndent="0" listType="0">f[]oo</listItem>' +
- '<listItem listIndent="0" listType="0">bar</listItem>'
- );
- model.change( writer => {
- writer.setSelection( model.document.getRoot().getChild( 1 ), 'end' );
- command.execute();
- } );
- } );
- it( 'should set attribute if `forceValue` parameter is set to `true`', () => {
- setModelData( model, '<listItem listIndent="0" listType="todo" todoListChecked="true">b[]ar</listItem>' );
- command.execute( { forceValue: true } );
- expect( getModelData( model ) ).to.equal(
- '<listItem listIndent="0" listType="todo" todoListChecked="true">b[]ar</listItem>'
- );
- } );
- it( 'should remove attribute if `forceValue` parameter is set to `false`', () => {
- setModelData( model, '<listItem listIndent="0" listType="todo">b[]ar</listItem>' );
- command.execute( { forceValue: false } );
- expect( getModelData( model ) ).to.equal(
- '<listItem listIndent="0" listType="todo">b[]ar</listItem>'
- );
- } );
- } );
- } );
|