/** * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. * For licensing, see LICENSE.md. */ import HeadingEngine from '../src/headingengine'; import HeadingCommand from '../src/headingcommand'; import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph'; import ParagraphCommand from '@ckeditor/ckeditor5-paragraph/src/paragraphcommand'; import VirtualTestEditor from '@ckeditor/ckeditor5-core/tests/_utils/virtualtesteditor'; import { getData } from '@ckeditor/ckeditor5-engine/src/dev-utils/model'; describe( 'HeadingEngine', () => { let editor, model; beforeEach( () => { return VirtualTestEditor .create( { plugins: [ HeadingEngine ] } ) .then( newEditor => { editor = newEditor; model = editor.model; } ); } ); it( 'should be loaded', () => { expect( editor.plugins.get( HeadingEngine ) ).to.be.instanceOf( HeadingEngine ); } ); it( 'should load paragraph feature', () => { expect( editor.plugins.get( Paragraph ) ).to.be.instanceOf( Paragraph ); } ); it( 'should set proper schema rules', () => { expect( model.schema.isRegistered( 'heading1' ) ).to.be.true; expect( model.schema.isRegistered( 'heading2' ) ).to.be.true; expect( model.schema.isRegistered( 'heading3' ) ).to.be.true; expect( model.schema.checkChild( [ '$root' ], 'heading1' ) ).to.be.true; expect( model.schema.checkChild( [ 'heading1' ], '$text' ) ).to.be.true; expect( model.schema.checkChild( [ '$root' ], 'heading2' ) ).to.be.true; expect( model.schema.checkChild( [ 'heading2' ], '$text' ) ).to.be.true; expect( model.schema.checkChild( [ '$root' ], 'heading3' ) ).to.be.true; expect( model.schema.checkChild( [ 'heading3' ], '$text' ) ).to.be.true; } ); it( 'should register #commands', () => { expect( editor.commands.get( 'paragraph' ) ).to.be.instanceOf( ParagraphCommand ); expect( editor.commands.get( 'heading1' ) ).to.be.instanceOf( HeadingCommand ); expect( editor.commands.get( 'heading2' ) ).to.be.instanceOf( HeadingCommand ); expect( editor.commands.get( 'heading3' ) ).to.be.instanceOf( HeadingCommand ); } ); it( 'should convert heading1', () => { editor.setData( '

foobar

' ); expect( getData( model, { withoutSelection: true } ) ).to.equal( 'foobar' ); expect( editor.getData() ).to.equal( '

foobar

' ); } ); it( 'should convert heading2', () => { editor.setData( '

foobar

' ); expect( getData( model, { withoutSelection: true } ) ).to.equal( 'foobar' ); expect( editor.getData() ).to.equal( '

foobar

' ); } ); it( 'should convert heading3', () => { editor.setData( '

foobar

' ); expect( getData( model, { withoutSelection: true } ) ).to.equal( 'foobar' ); expect( editor.getData() ).to.equal( '

foobar

' ); } ); describe( 'user defined', () => { beforeEach( () => { return VirtualTestEditor .create( { plugins: [ HeadingEngine ], heading: { options: [ { model: 'paragraph', title: 'paragraph' }, { model: 'heading1', view: 'h1', upcastAlso: [ { name: 'p', attribute: { 'data-heading': 'h1' } } ], title: 'User H1' } ] } } ) .then( newEditor => { editor = newEditor; model = editor.model; } ); } ); it( 'should convert from defined h element', () => { editor.setData( '

foobar

' ); expect( getData( model, { withoutSelection: true } ) ).to.equal( 'foobar' ); expect( editor.getData() ).to.equal( '

foobar

' ); } ); it( 'should convert from defined paragraph with attributes', () => { editor.setData( '

foobar

Normal paragraph

' ); expect( getData( model, { withoutSelection: true } ) ) .to.equal( 'foobarNormal paragraph' ); expect( editor.getData() ).to.equal( '

foobar

Normal paragraph

' ); } ); } ); it( 'should not blow up if there\'s no enter command in the editor', () => { return VirtualTestEditor .create( { plugins: [ HeadingEngine ] } ); } ); describe( 'config', () => { describe( 'options', () => { describe( 'default value', () => { it( 'should be set', () => { expect( editor.config.get( 'heading.options' ) ).to.deep.equal( [ { model: 'paragraph', title: 'Paragraph', class: 'ck-heading_paragraph' }, { model: 'heading1', view: 'h2', title: 'Heading 1', class: 'ck-heading_heading1' }, { model: 'heading2', view: 'h3', title: 'Heading 2', class: 'ck-heading_heading2' }, { model: 'heading3', view: 'h4', title: 'Heading 3', class: 'ck-heading_heading3' } ] ); } ); } ); it( 'should customize options', () => { const options = [ { model: 'paragraph', title: 'Paragraph' }, { model: 'h4', view: { name: 'h4' }, title: 'H4' } ]; return VirtualTestEditor .create( { plugins: [ HeadingEngine ], heading: { options } } ) .then( editor => { model = editor.model; expect( editor.commands.get( 'h4' ) ).to.be.instanceOf( HeadingCommand ); expect( editor.commands.get( 'paragraph' ) ).to.be.instanceOf( ParagraphCommand ); expect( model.schema.isRegistered( 'paragraph' ) ).to.be.true; expect( model.schema.isRegistered( 'h4' ) ).to.be.true; expect( model.schema.isRegistered( 'heading1' ) ).to.be.false; expect( model.schema.isRegistered( 'heading2' ) ).to.be.false; expect( model.schema.isRegistered( 'heading3' ) ).to.be.false; } ); } ); } ); } ); } );