/** * @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 Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph'; import { setData } from '@ckeditor/ckeditor5-engine/src/dev-utils/model'; import { assertTableCellStyle, modelTable, setTableCellWithObjectAttributes, viewTable } from '../../_utils/utils'; import TableCellPropertiesEditing from '../../../src/tablecellproperties/tablecellpropertiesediting'; import TableCellPaddingCommand from '../../../src/tablecellproperties/commands/tablecellpaddingcommand'; import { assertEqualMarkup } from '@ckeditor/ckeditor5-utils/tests/_utils/utils'; describe( 'table cell properties', () => { describe( 'commands', () => { describe( 'TableCellPaddingCommand', () => { let editor, model, command; beforeEach( async () => { editor = await ModelTestEditor.create( { plugins: [ Paragraph, TableCellPropertiesEditing ] } ); model = editor.model; command = new TableCellPaddingCommand( editor ); } ); afterEach( () => { return editor.destroy(); } ); describe( 'isEnabled', () => { describe( 'collapsed selection', () => { it( 'should be false if selection does not have table cell', () => { setData( model, 'foo[]' ); expect( command.isEnabled ).to.be.false; } ); it( 'should be true is selection has table cell', () => { setData( model, modelTable( [ [ '[]foo' ] ] ) ); expect( command.isEnabled ).to.be.true; } ); } ); describe( 'non-collapsed selection', () => { it( 'should be false if selection does not have table cell', () => { setData( model, 'f[oo]' ); expect( command.isEnabled ).to.be.false; } ); it( 'should be true is selection has table cell', () => { setData( model, modelTable( [ [ 'f[o]o' ] ] ) ); expect( command.isEnabled ).to.be.true; } ); } ); describe( 'multi-cell selection', () => { it( 'should be true if the selection contains some table cells', () => { setData( model, modelTable( [ [ { contents: '00', isSelected: true }, '01' ], [ '10', { contents: '11', isSelected: true } ] ] ) ); expect( command.isEnabled ).to.be.true; } ); } ); } ); describe( 'value', () => { describe( 'collapsed selection', () => { it( 'should be undefined if selected table cell has no padding property', () => { setData( model, modelTable( [ [ '[]foo' ] ] ) ); expect( command.value ).to.be.undefined; } ); it( 'should be set if selected table cell has padding property (single string)', () => { setData( model, modelTable( [ [ { padding: '2em', contents: '[]foo' } ] ] ) ); expect( command.value ).to.equal( '2em' ); } ); it( 'should be set if selected table cell has padding property object with same values', () => { setTableCellWithObjectAttributes( model, { padding: { top: '2em', right: '2em', bottom: '2em', left: '2em' } }, '[]foo' ); expect( command.value ).to.equal( '2em' ); } ); it( 'should be undefined if selected table cell has padding property object with different values', () => { setTableCellWithObjectAttributes( model, { padding: { top: '2em', right: '1px', bottom: '2em', left: '2em' } }, '[]foo' ); expect( command.value ).to.be.undefined; } ); } ); describe( 'non-collapsed selection', () => { it( 'should be false if selection does not have table cell', () => { setData( model, 'f[oo]' ); expect( command.value ).to.be.undefined; } ); it( 'should be true is selection has table cell', () => { setData( model, modelTable( [ [ { padding: '2em', contents: 'f[o]o' } ] ] ) ); expect( command.value ).to.equal( '2em' ); } ); } ); describe( 'multi-cell selection', () => { it( 'should be undefined if no table cells have the "padding" property', () => { setData( model, modelTable( [ [ { contents: '00', isSelected: true }, { contents: '01', isSelected: true } ], [ '10', { contents: '11', isSelected: true } ] ] ) ); expect( command.value ).to.be.undefined; } ); it( 'should be undefined if only some table cells have the "padding" property', () => { setData( model, modelTable( [ [ { contents: '00', isSelected: true, padding: '2em' }, { contents: '01', isSelected: true } ], [ '10', { contents: '11', isSelected: true, padding: '2em' } ] ] ) ); expect( command.value ).to.be.undefined; } ); it( 'should be undefined if one of selected table cells has a different "padding" property value', () => { setData( model, modelTable( [ [ { contents: '00', isSelected: true, padding: '2em' }, { contents: '01', isSelected: true, padding: '3em' } ], [ '10', { contents: '11', isSelected: true, padding: '2em' } ] ] ) ); expect( command.value ).to.be.undefined; } ); it( 'should be set if all table cells have the same "padding" property value', () => { setData( model, modelTable( [ [ { contents: '00', isSelected: true, padding: '2em' }, { contents: '01', isSelected: true, padding: '2em' } ], [ '10', { contents: '11', isSelected: true, padding: '2em' } ] ] ) ); expect( command.value ).to.equal( '2em' ); } ); } ); } ); describe( 'execute()', () => { it( 'should use provided batch', () => { setData( model, modelTable( [ [ 'foo[]' ] ] ) ); const batch = model.createBatch(); const spy = sinon.spy( model, 'enqueueChange' ); command.execute( { value: '0.5em', batch } ); sinon.assert.calledWith( spy, batch ); } ); it( 'should add default unit for numeric values (number passed)', () => { setData( model, modelTable( [ [ 'foo[]' ] ] ) ); command.execute( { value: 25 } ); assertTableCellStyle( editor, 'padding:25px;' ); } ); it( 'should add default unit for numeric values (string passed)', () => { setData( model, modelTable( [ [ 'foo[]' ] ] ) ); command.execute( { value: 25 } ); assertTableCellStyle( editor, 'padding:25px;' ); } ); it( 'should not add default unit for numeric values with unit', () => { setData( model, modelTable( [ [ 'foo[]' ] ] ) ); command.execute( { value: '25pt' } ); assertTableCellStyle( editor, 'padding:25pt;' ); } ); it( 'should add default unit to floats (number passed)', () => { setData( model, modelTable( [ [ 'foo[]' ] ] ) ); command.execute( { value: 25.1 } ); assertTableCellStyle( editor, 'padding:25.1px;' ); } ); it( 'should add default unit to floats (string passed)', () => { setData( model, modelTable( [ [ 'foo[]' ] ] ) ); command.execute( { value: '0.1' } ); assertTableCellStyle( editor, 'padding:0.1px;' ); } ); it( 'should pass invalid values', () => { setData( model, modelTable( [ [ 'foo[]' ] ] ) ); command.execute( { value: 'bar' } ); assertTableCellStyle( editor, 'padding:bar;' ); } ); it( 'should pass invalid value (string passed, CSS float without leading 0)', () => { setData( model, modelTable( [ [ 'foo[]' ] ] ) ); command.execute( { value: '.2' } ); assertTableCellStyle( editor, 'padding:.2;' ); } ); describe( 'collapsed selection', () => { it( 'should set selected table cell padding to a passed value', () => { setData( model, modelTable( [ [ 'foo[]' ] ] ) ); command.execute( { value: '0.5em' } ); assertTableCellStyle( editor, 'padding:0.5em;' ); } ); it( 'should change selected table cell padding to a passed value', () => { setData( model, modelTable( [ [ { padding: '2em', contents: '[]foo' } ] ] ) ); command.execute( { value: '0.5em' } ); assertTableCellStyle( editor, 'padding:0.5em;' ); } ); it( 'should remove padding from a selected table cell if no value is passed', () => { setData( model, modelTable( [ [ { padding: '2em', contents: '[]foo' } ] ] ) ); command.execute(); assertTableCellStyle( editor, '' ); } ); } ); describe( 'non-collapsed selection', () => { it( 'should set selected table cell padding to a passed value', () => { setData( model, modelTable( [ [ '[foo]' ] ] ) ); command.execute( { value: '0.5em' } ); assertTableCellStyle( editor, 'padding:0.5em;' ); } ); it( 'should change selected table cell padding to a passed value', () => { setData( model, modelTable( [ [ '[foo]' ] ] ) ); command.execute( { value: '0.5em' } ); assertTableCellStyle( editor, 'padding:0.5em;' ); } ); it( 'should remove padding from a selected table cell if no value is passed', () => { setData( model, modelTable( [ [ '[foo]' ] ] ) ); command.execute(); assertTableCellStyle( editor, '' ); } ); } ); describe( 'multi-cell selection', () => { beforeEach( () => { setData( model, modelTable( [ [ { contents: '00', isSelected: true }, '01' ], [ '10', { contents: '11', isSelected: true } ] ] ) ); } ); it( 'should set the "padding" attribute value of selected table cells', () => { command.execute( { value: '25px' } ); assertEqualMarkup( editor.getData(), viewTable( [ [ { contents: '00', style: 'padding:25px;' }, '01' ], [ '10', { contents: '11', style: 'padding:25px;' } ] ] ) ); } ); it( 'should remove "padding" from selected table cells if no value is passed', () => { setData( model, modelTable( [ [ { contents: '00', isSelected: true, padding: '25px' }, '01' ], [ '10', { contents: '11', isSelected: true, padding: '25px' } ] ] ) ); command.execute(); assertEqualMarkup( editor.getData(), viewTable( [ [ '00', '01' ], [ '10', '11' ] ] ) ); } ); } ); } ); } ); } ); } );