| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- /**
- * @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 testUtils from '@ckeditor/ckeditor5-core/tests/_utils/utils';
- import ClassicTestEditor from '@ckeditor/ckeditor5-core/tests/_utils/classictesteditor';
- import ButtonView from '@ckeditor/ckeditor5-ui/src/button/buttonview';
- import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';
- import StandardEditingModeUI from '../src/standardeditingmodeui';
- import StandardEditingModeEditing from '../src/standardeditingmodeediting';
- describe( 'StandardEditingModeUI', () => {
- let editor, buttonView, editorElement;
- testUtils.createSinonSandbox();
- beforeEach( async () => {
- editorElement = document.createElement( 'div' );
- document.body.appendChild( editorElement );
- editor = await ClassicTestEditor.create( editorElement, {
- plugins: [ Paragraph, StandardEditingModeEditing, StandardEditingModeUI ]
- } );
- buttonView = editor.ui.componentFactory.create( 'restrictedEditingException' );
- } );
- afterEach( () => {
- editorElement.remove();
- return editor.destroy();
- } );
- it( 'should register a button', () => {
- expect( buttonView ).to.be.instanceOf( ButtonView );
- expect( buttonView.isOn ).to.be.false;
- expect( buttonView.label ).to.equal( 'Enable editing' );
- expect( buttonView.icon ).to.match( /<svg / );
- expect( buttonView.isToggleable ).to.be.true;
- } );
- it( 'should execute a command on the button "execute" event', () => {
- const executeSpy = testUtils.sinon.spy( editor, 'execute' );
- buttonView.fire( 'execute' );
- sinon.assert.calledOnce( executeSpy );
- } );
- it( 'should bind a button to the command', () => {
- const command = editor.commands.get( 'restrictedEditingException' );
- expect( buttonView.isOn ).to.be.false;
- expect( buttonView.isEnabled ).to.be.true;
- command.value = true;
- expect( buttonView.isOn ).to.be.true;
- command.isEnabled = false;
- expect( buttonView.isEnabled ).to.be.false;
- } );
- } );
|