| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- /**
- * @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( /<svg / );
- expect( boldView.keystroke ).to.equal( 'CTRL+B' );
- expect( boldView.isToggleable ).to.be.true;
- } );
- it( 'should execute bold command on model execute event', () => {
- 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' );
- } );
- } );
|