/** * @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( / { 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; } ); } );