/** * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license */ /* globals document */ import ClassicTestEditor from '@ckeditor/ckeditor5-core/tests/_utils/classictesteditor'; import BoldEditing from '../../src/bold/boldediting'; import BoldUI from '../../src/bold/boldui'; import ButtonView from '@ckeditor/ckeditor5-ui/src/button/buttonview'; import testUtils from '@ckeditor/ckeditor5-core/tests/_utils/utils'; import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph'; describe( 'BoldUI', () => { let editor, boldView, editorElement; testUtils.createSinonSandbox(); beforeEach( () => { editorElement = document.createElement( 'div' ); document.body.appendChild( editorElement ); return ClassicTestEditor .create( editorElement, { plugins: [ Paragraph, BoldEditing, BoldUI ] } ) .then( newEditor => { editor = newEditor; boldView = editor.ui.componentFactory.create( 'bold' ); } ); } ); afterEach( () => { editorElement.remove(); return editor.destroy(); } ); it( 'should register bold feature component', () => { expect( boldView ).to.be.instanceOf( ButtonView ); expect( boldView.isOn ).to.be.false; expect( boldView.label ).to.equal( 'Bold' ); expect( boldView.icon ).to.match( / { const executeSpy = testUtils.sinon.spy( editor, 'execute' ); boldView.fire( 'execute' ); sinon.assert.calledOnce( executeSpy ); sinon.assert.calledWithExactly( executeSpy, 'bold' ); } ); it( 'should bind model to bold command', () => { const command = editor.commands.get( 'bold' ); expect( boldView.isOn ).to.be.false; expect( boldView.isEnabled ).to.be.true; command.value = true; expect( boldView.isOn ).to.be.true; command.isEnabled = false; expect( boldView.isEnabled ).to.be.false; } ); it( 'should set keystroke in the model', () => { expect( boldView.keystroke ).to.equal( 'CTRL+B' ); } ); } );