| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- /**
- * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
- /* globals document */
- import ClassicTestEditor from '@ckeditor/ckeditor5-core/tests/_utils/classictesteditor';
- import Strikethrough from '../src/strikethrough';
- import StrikethroughEngine from '../src/strikethroughengine';
- import ButtonView from '@ckeditor/ckeditor5-ui/src/button/buttonview';
- import testUtils from '@ckeditor/ckeditor5-core/tests/_utils/utils';
- import { keyCodes } from '@ckeditor/ckeditor5-utils/src/keyboard';
- testUtils.createSinonSandbox();
- describe( 'Strikethrough', () => {
- let editor, strikeView;
- beforeEach( () => {
- const editorElement = document.createElement( 'div' );
- document.body.appendChild( editorElement );
- return ClassicTestEditor
- .create( editorElement, {
- plugins: [ Strikethrough ]
- } )
- .then( newEditor => {
- editor = newEditor;
- strikeView = editor.ui.componentFactory.create( 'strikethrough' );
- } );
- } );
- afterEach( () => {
- return editor.destroy();
- } );
- it( 'should be loaded', () => {
- expect( editor.plugins.get( Strikethrough ) ).to.be.instanceOf( Strikethrough );
- } );
- it( 'should load StrikethroughEngine', () => {
- expect( editor.plugins.get( StrikethroughEngine ) ).to.be.instanceOf( StrikethroughEngine );
- } );
- it( 'should register strikethrough feature component', () => {
- expect( strikeView ).to.be.instanceOf( ButtonView );
- expect( strikeView.isOn ).to.be.false;
- expect( strikeView.label ).to.equal( 'Strikethrough' );
- expect( strikeView.icon ).to.match( /<svg / );
- expect( strikeView.keystroke ).to.equal( 'CTRL+SHIFT+X' );
- } );
- it( 'should execute strikethrough command on model execute event', () => {
- const executeSpy = testUtils.sinon.spy( editor, 'execute' );
- strikeView.fire( 'execute' );
- sinon.assert.calledOnce( executeSpy );
- sinon.assert.calledWithExactly( executeSpy, 'strikethrough' );
- } );
- it( 'should bind model to strikethrough command', () => {
- const command = editor.commands.get( 'strikethrough' );
- expect( strikeView.isOn ).to.be.false;
- expect( strikeView.isEnabled ).to.be.false;
- command.value = true;
- expect( strikeView.isOn ).to.be.true;
- command.isEnabled = true;
- expect( strikeView.isEnabled ).to.be.true;
- } );
- it( 'should set keystroke in the model', () => {
- expect( strikeView.keystroke ).to.equal( 'CTRL+SHIFT+X' );
- } );
- it( 'should set editor keystroke', () => {
- const spy = sinon.spy( editor, 'execute' );
- const keyEventData = {
- keyCode: keyCodes.x,
- shiftKey: true,
- ctrlKey: true,
- preventDefault: sinon.spy(),
- stopPropagation: sinon.spy()
- };
- const wasHandled = editor.keystrokes.press( keyEventData );
- expect( wasHandled ).to.be.true;
- expect( spy.calledOnce ).to.be.true;
- expect( keyEventData.preventDefault.calledOnce ).to.be.true;
- } );
- } );
|