| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- /**
- * @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 { assertTableStyle, modelTable } from '../../_utils/utils';
- import TablePropertiesEditing from '../../../src/tableproperties/tablepropertiesediting';
- import TableHorizontalAlignmentCommand from '../../../src/tableproperties/commands/tablealignmentcommand';
- describe( 'table properties', () => {
- describe( 'commands', () => {
- describe( 'TableHorizontalAlignmentCommand', () => {
- let editor, model, command;
- beforeEach( async () => {
- editor = await ModelTestEditor.create( {
- plugins: [ Paragraph, TablePropertiesEditing ]
- } );
- model = editor.model;
- command = new TableHorizontalAlignmentCommand( editor );
- } );
- afterEach( () => {
- return editor.destroy();
- } );
- describe( 'isEnabled', () => {
- describe( 'collapsed selection', () => {
- it( 'should be false if selection does not have table', () => {
- setData( model, '<paragraph>foo[]</paragraph>' );
- expect( command.isEnabled ).to.be.false;
- } );
- it( 'should be true is selection has table', () => {
- setData( model, modelTable( [ [ '[]foo' ] ] ) );
- expect( command.isEnabled ).to.be.true;
- } );
- } );
- describe( 'non-collapsed selection', () => {
- it( 'should be false if selection does not have table', () => {
- setData( model, '<paragraph>f[oo]</paragraph>' );
- expect( command.isEnabled ).to.be.false;
- } );
- it( 'should be true is selection has table', () => {
- setData( model, modelTable( [ [ 'f[o]o' ] ] ) );
- expect( command.isEnabled ).to.be.true;
- } );
- } );
- } );
- describe( 'value', () => {
- describe( 'collapsed selection', () => {
- it( 'should be undefined if selected table has no alignment property', () => {
- setData( model, modelTable( [ [ '[]foo' ] ] ) );
- expect( command.value ).to.be.undefined;
- } );
- it( 'should be set if selected table has alignment property', () => {
- setData( model, modelTable( [ [ '[]foo' ] ], { alignment: 'center' } ) );
- expect( command.value ).to.equal( 'center' );
- } );
- } );
- describe( 'non-collapsed selection', () => {
- it( 'should be false if selection does not have table', () => {
- setData( model, '<paragraph>f[oo]</paragraph>' );
- expect( command.value ).to.be.undefined;
- } );
- it( 'should be true is selection has table', () => {
- setData( model, modelTable( [ [ 'f[o]o' ] ], { alignment: 'center' } ) );
- expect( command.value ).to.equal( 'center' );
- } );
- } );
- } );
- describe( 'execute()', () => {
- it( 'should use provided batch', () => {
- setData( model, modelTable( [ [ 'foo[]' ] ] ) );
- const batch = model.createBatch();
- const spy = sinon.spy( model, 'enqueueChange' );
- command.execute( { value: 'right', batch } );
- sinon.assert.calledWith( spy, batch );
- } );
- describe( 'collapsed selection', () => {
- it( 'should set selected table alignment to a passed value', () => {
- setData( model, modelTable( [ [ 'foo[]' ] ] ) );
- command.execute( { value: 'right' } );
- assertTableStyle( editor, null, 'float:right;' );
- } );
- it( 'should change selected table alignment to a passed value', () => {
- setData( model, modelTable( [ [ '[]foo' ] ], { alignment: 'center' } ) );
- command.execute( { value: 'right' } );
- assertTableStyle( editor, null, 'float:right;' );
- } );
- it( 'should remove alignment from a selected table if no value is passed', () => {
- setData( model, modelTable( [ [ '[]foo' ] ], { alignment: 'center' } ) );
- command.execute();
- assertTableStyle( editor, '' );
- } );
- } );
- describe( 'non-collapsed selection', () => {
- it( 'should set selected table alignment to a passed value', () => {
- setData( model, modelTable( [ [ '[foo]' ] ] ) );
- command.execute( { value: 'right' } );
- assertTableStyle( editor, null, 'float:right;' );
- } );
- it( 'should change selected table alignment to a passed value', () => {
- setData( model, modelTable( [ [ '[foo]' ] ] ) );
- command.execute( { value: 'right' } );
- assertTableStyle( editor, null, 'float:right;' );
- } );
- it( 'should remove alignment from a selected table if no value is passed', () => {
- setData( model, modelTable( [ [ '[foo]' ] ] ) );
- command.execute();
- assertTableStyle( editor, '' );
- } );
- } );
- } );
- } );
- } );
- } );
|