/** * @license Copyright (c) 2003-2017, 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, document; beforeEach( () => { return VirtualTestEditor .create( { plugins: [ HeadingEngine ] } ) .then( newEditor => { editor = newEditor; document = editor.document; } ); } ); 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( document.schema.hasItem( 'heading1' ) ).to.be.true; expect( document.schema.hasItem( 'heading2' ) ).to.be.true; expect( document.schema.hasItem( 'heading3' ) ).to.be.true; expect( document.schema.check( { name: 'heading1', inside: '$root' } ) ).to.be.true; expect( document.schema.check( { name: '$inline', inside: 'heading1' } ) ).to.be.true; expect( document.schema.check( { name: 'heading2', inside: '$root' } ) ).to.be.true; expect( document.schema.check( { name: '$inline', inside: 'heading2' } ) ).to.be.true; expect( document.schema.check( { name: 'heading3', inside: '$root' } ) ).to.be.true; expect( document.schema.check( { name: '$inline', inside: 'heading3' } ) ).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( '