| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311 |
- /**
- * @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 FontSizeEditing from './../../src/fontsize/fontsizeediting';
- import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';
- import VirtualTestEditor from '@ckeditor/ckeditor5-core/tests/_utils/virtualtesteditor';
- import { getData as getModelData, setData as setModelData } from '@ckeditor/ckeditor5-engine/src/dev-utils/model';
- import { assertCKEditorError } from '@ckeditor/ckeditor5-utils/tests/_utils/utils';
- describe( 'FontSizeEditing', () => {
- let editor, doc;
- beforeEach( () => {
- return VirtualTestEditor
- .create( {
- plugins: [ FontSizeEditing, Paragraph ]
- } )
- .then( newEditor => {
- editor = newEditor;
- doc = editor.document;
- } );
- } );
- afterEach( () => {
- editor.destroy();
- } );
- it( 'should have pluginName', () => {
- expect( FontSizeEditing.pluginName ).to.equal( 'FontSizeEditing' );
- } );
- it( 'should set proper schema rules', () => {
- expect( editor.model.schema.checkAttribute( [ '$block', '$text' ], 'fontSize' ) ).to.be.true;
- expect( editor.model.schema.checkAttribute( [ '$clipboardHolder', '$text' ], 'fontSize' ) ).to.be.true;
- expect( editor.model.schema.checkAttribute( [ '$block' ], 'fontSize' ) ).to.be.false;
- } );
- it( 'should be marked with a formatting property', () => {
- expect( editor.model.schema.getAttributeProperties( 'fontSize' ) ).to.include( {
- isFormatting: true
- } );
- } );
- it( 'its attribute is marked with a copOnEnter property', () => {
- expect( editor.model.schema.getAttributeProperties( 'fontSize' ) ).to.include( {
- copyOnEnter: true
- } );
- } );
- describe( 'config', () => {
- describe( 'default value', () => {
- it( 'should be set', () => {
- expect( editor.config.get( 'fontSize.options' ) ).to.deep.equal( [ 'tiny', 'small', 'default', 'big', 'huge' ] );
- expect( editor.config.get( 'fontSize.supportAllValues' ) ).to.equal( false );
- } );
- } );
- describe( 'supportAllValues=true', () => {
- let editor, doc;
- beforeEach( () => {
- return VirtualTestEditor
- .create( {
- plugins: [ FontSizeEditing, Paragraph ],
- fontSize: {
- supportAllValues: true,
- options: [
- '6.25%',
- '8em',
- '10px',
- 12,
- {
- model: 14,
- title: '14px'
- }
- ]
- }
- } )
- .then( newEditor => {
- editor = newEditor;
- doc = editor.model;
- } );
- } );
- afterEach( () => {
- return editor.destroy();
- } );
- describe( 'editing pipeline conversion', () => {
- it( 'should pass fontSize to data', () => {
- setModelData( doc, '<paragraph>f<$text fontSize="10px">o</$text>o</paragraph>' );
- expect( editor.getData() ).to.equal( '<p>f<span style="font-size:10px;">o</span>o</p>' );
- } );
- } );
- describe( 'data pipeline conversions', () => {
- it( 'should convert from an element with defined style when with other styles', () => {
- const data = '<p>f<span style="font-family: Other;font-size: 18px">o</span>o</p>';
- editor.setData( data );
- expect( getModelData( doc ) ).to.equal( '<paragraph>[]f<$text fontSize="18px">o</$text>o</paragraph>' );
- expect( editor.getData() ).to.equal( '<p>f<span style="font-size:18px;">o</span>o</p>' );
- } );
- } );
- it( 'should throw an error if used with default configuration of the plugin', () => {
- return VirtualTestEditor
- .create( {
- plugins: [ FontSizeEditing ],
- fontSize: {
- supportAllValues: true
- }
- } )
- .then(
- () => {
- throw new Error( 'Supposed to be rejected' );
- },
- error => {
- assertCKEditorError( error, /font-size-invalid-use-of-named-presets/, null, {
- presets: [ 'tiny', 'small', 'big', 'huge' ]
- } );
- }
- );
- } );
- } );
- } );
- describe( 'editing pipeline conversion', () => {
- beforeEach( () => {
- return VirtualTestEditor
- .create( {
- plugins: [ FontSizeEditing, Paragraph ],
- fontSize: {
- options: [
- 'tiny',
- 'default',
- 18,
- {
- title: 'My setting',
- model: 'my',
- view: {
- name: 'mark',
- styles: { 'font-size': '30px' },
- classes: 'my-style'
- }
- }
- ]
- }
- } )
- .then( newEditor => {
- editor = newEditor;
- doc = editor.model;
- } );
- } );
- it( 'should discard unknown fontSize attribute values', () => {
- setModelData( doc, '<paragraph>f<$text fontSize="foo-bar">o</$text>o</paragraph>' );
- expect( editor.getData() ).to.equal( '<p>foo</p>' );
- } );
- it( 'should convert fontSize attribute to predefined named preset', () => {
- setModelData( doc, '<paragraph>f<$text fontSize="tiny">o</$text>o</paragraph>' );
- expect( editor.getData() ).to.equal( '<p>f<span class="text-tiny">o</span>o</p>' );
- } );
- it( 'should convert fontSize attribute to predefined pixel size preset', () => {
- setModelData( doc, '<paragraph>f<$text fontSize="18px">o</$text>o</paragraph>' );
- expect( editor.getData() ).to.equal( '<p>f<span style="font-size:18px;">o</span>o</p>' );
- } );
- it( 'should convert fontSize attribute from user defined settings', () => {
- setModelData( doc, '<paragraph>f<$text fontSize="my">o</$text>o</paragraph>' );
- expect( editor.getData() ).to.equal( '<p>f<mark class="my-style" style="font-size:30px;">o</mark>o</p>' );
- } );
- } );
- describe( 'data pipeline conversions', () => {
- beforeEach( () => {
- return VirtualTestEditor
- .create( {
- plugins: [ FontSizeEditing, Paragraph ],
- fontSize: {
- options: [
- 'tiny',
- 'default',
- 18,
- {
- title: 'My setting',
- model: 'my',
- view: {
- name: 'mark',
- styles: { 'font-size': '30px' },
- classes: 'my-style'
- }
- },
- {
- title: 'Big multiple classes',
- model: 'big-multiple',
- view: {
- name: 'span',
- classes: [ 'foo', 'foo-big' ]
- }
- },
- {
- title: 'Hybrid',
- model: 'complex',
- view: {
- name: 'span',
- classes: [ 'text-complex' ]
- },
- upcastAlso: [
- { name: 'span', styles: { 'font-size': '77em' } },
- { name: 'span', attributes: { 'data-size': '77em' } }
- ]
- }
- ]
- }
- } )
- .then( newEditor => {
- editor = newEditor;
- doc = editor.model;
- } );
- } );
- it( 'should convert from element with defined class', () => {
- const data = '<p>f<span class="text-tiny foo bar">o</span>o</p>';
- editor.setData( data );
- expect( getModelData( doc ) ).to.equal( '<paragraph>[]f<$text fontSize="tiny">o</$text>o</paragraph>' );
- expect( editor.getData() ).to.equal( '<p>f<span class="text-tiny">o</span>o</p>' );
- } );
- it( 'should convert from element with defined multiple classes', () => {
- const data = '<p>f<span class="foo foo-big bar">o</span>o</p>';
- editor.setData( data );
- expect( getModelData( doc ) ).to.equal( '<paragraph>[]f<$text fontSize="big-multiple">o</$text>o</paragraph>' );
- expect( editor.getData() ).to.equal( '<p>f<span class="foo foo-big">o</span>o</p>' );
- } );
- it( 'should convert from element with defined style', () => {
- const data = '<p>f<span style="font-size:18px;">o</span>o</p>';
- editor.setData( data );
- expect( getModelData( doc ) ).to.equal( '<paragraph>[]f<$text fontSize="18px">o</$text>o</paragraph>' );
- expect( editor.getData() ).to.equal( data );
- } );
- it( 'should convert from element with defined style when with other styles', () => {
- const data = '<p>f<span style="font-family: serif;font-size: 18px">o</span>o</p>';
- editor.setData( data );
- expect( getModelData( doc ) ).to.equal( '<paragraph>[]f<$text fontSize="18px">o</$text>o</paragraph>' );
- expect( editor.getData() ).to.equal( '<p>f<span style="font-size:18px;">o</span>o</p>' );
- } );
- it( 'should convert from user defined element', () => {
- const data = '<p>f<mark class="my-style" style="font-size:30px;">o</mark>o</p>';
- editor.setData( data );
- expect( getModelData( doc ) ).to.equal( '<paragraph>[]f<$text fontSize="my">o</$text>o</paragraph>' );
- expect( editor.getData() ).to.equal( data );
- } );
- it( 'should convert from complex definitions', () => {
- editor.setData(
- '<p>f<span style="font-size: 77em;">o</span>o</p>' +
- '<p>b<span data-size="77em">a</span>r</p>' +
- '<p>b<span class="text-complex">a</span>z</p>'
- );
- expect( getModelData( doc ) ).to.equal(
- '<paragraph>[]f<$text fontSize="complex">o</$text>o</paragraph>' +
- '<paragraph>b<$text fontSize="complex">a</$text>r</paragraph>' +
- '<paragraph>b<$text fontSize="complex">a</$text>z</paragraph>'
- );
- expect( editor.getData() ).to.equal(
- '<p>f<span class="text-complex">o</span>o</p>' +
- '<p>b<span class="text-complex">a</span>r</p>' +
- '<p>b<span class="text-complex">a</span>z</p>'
- );
- } );
- } );
- } );
|