/** * @license Copyright (c) 2003-2017, CKSource - Rémy Hubscher. All rights reserved. * For licensing, see LICENSE.md. */ import StrikethroughEngine from '../src/strikethroughengine'; import VirtualTestEditor from '@ckeditor/ckeditor5-core/tests/_utils/virtualtesteditor'; import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph'; import AttributeCommand from '../src/attributecommand'; import { getData as getModelData, setData as setModelData } from '@ckeditor/ckeditor5-engine/src/dev-utils/model'; import { getData as getViewData } from '@ckeditor/ckeditor5-engine/src/dev-utils/view'; describe( 'StrikethroughEngine', () => { let editor, doc; beforeEach( () => { return VirtualTestEditor .create( { plugins: [ Paragraph, StrikethroughEngine ] } ) .then( newEditor => { editor = newEditor; doc = editor.document; } ); } ); afterEach( () => { return editor.destroy(); } ); it( 'should be loaded', () => { expect( editor.plugins.get( StrikethroughEngine ) ).to.be.instanceOf( StrikethroughEngine ); } ); it( 'should set proper schema rules', () => { expect( doc.schema.check( { name: '$inline', attributes: 'strikethrough', inside: '$root' } ) ).to.be.false; expect( doc.schema.check( { name: '$inline', attributes: 'strikethrough', inside: '$block' } ) ).to.be.true; expect( doc.schema.check( { name: '$inline', attributes: 'strikethrough', inside: '$clipboardHolder' } ) ).to.be.true; } ); describe( 'command', () => { it( 'should register strikethrough command', () => { const command = editor.commands.get( 'strikethrough' ); expect( command ).to.be.instanceOf( AttributeCommand ); expect( command ).to.have.property( 'attributeKey', 'strikethrough' ); } ); } ); describe( 'data pipeline conversions', () => { it( 'should convert to strikethrough attribute', () => { editor.setData( '

foobar

' ); expect( getModelData( doc, { withoutSelection: true } ) ) .to.equal( '<$text strikethrough="true">foobar' ); expect( editor.getData() ).to.equal( '

foobar

' ); } ); it( 'should convert to strikethrough attribute', () => { editor.setData( '

foobar

' ); expect( getModelData( doc, { withoutSelection: true } ) ) .to.equal( '<$text strikethrough="true">foobar' ); expect( editor.getData() ).to.equal( '

foobar

' ); } ); it( 'should convert to strikethrough attribute', () => { editor.setData( '

foobar

' ); expect( getModelData( doc, { withoutSelection: true } ) ) .to.equal( '<$text strikethrough="true">foobar' ); expect( editor.getData() ).to.equal( '

foobar

' ); } ); it( 'should convert text-decoration:line-through to strikethrough attribute', () => { editor.setData( '

foobar

' ); expect( getModelData( doc, { withoutSelection: true } ) ) .to.equal( '<$text strikethrough="true">foobar' ); expect( editor.getData() ).to.equal( '

foobar

' ); } ); it( 'should be integrated with autoparagraphing', () => { // Incorrect results because autoparagraphing works incorrectly (issue in paragraph). // https://github.com/ckeditor/ckeditor5-paragraph/issues/10 editor.setData( 'foobar' ); expect( getModelData( doc, { withoutSelection: true } ) ).to.equal( 'foobar' ); expect( editor.getData() ).to.equal( '

foobar

' ); } ); } ); describe( 'editing pipeline conversion', () => { it( 'should convert attribute', () => { setModelData( doc, '<$text strikethrough="true">foobar' ); expect( getViewData( editor.editing.view, { withoutSelection: true } ) ).to.equal( '

foobar

' ); } ); } ); } );