/** * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license */ import { createLabeledInputText, createLabeledDropdown } from '../../src/labeledfield/utils'; import LabeledFieldView from '../../src/labeledfield/labeledfieldview'; import testUtils from '@ckeditor/ckeditor5-core/tests/_utils/utils'; import InputTextView from '../../src/inputtext/inputtextview'; import DropdownView from '../../src/dropdown/dropdownview'; describe( 'LabeledFieldView utils', () => { let locale; testUtils.createSinonSandbox(); beforeEach( () => { locale = { t: val => val }; } ); describe( 'createLabeledInputText()', () => { let labeledInput; beforeEach( () => { labeledInput = new LabeledFieldView( locale, createLabeledInputText ); } ); afterEach( () => { labeledInput.destroy(); } ); it( 'should create an InputTextView instance', () => { expect( labeledInput.fieldView ).to.be.instanceOf( InputTextView ); } ); it( 'should pass the Locale to the input', () => { expect( labeledInput.fieldView.locale ).to.equal( locale ); } ); it( 'should set input #id and #ariaDescribedById', () => { labeledInput.render(); expect( labeledInput.fieldView.id ).to.equal( labeledInput.labelView.for ); expect( labeledInput.fieldView.ariaDescribedById ).to.equal( labeledInput.statusView.element.id ); } ); it( 'should bind input\'s #isReadOnly to labeledInput#isEnabled', () => { labeledInput.isEnabled = true; expect( labeledInput.fieldView.isReadOnly ).to.be.false; labeledInput.isEnabled = false; expect( labeledInput.fieldView.isReadOnly ).to.be.true; } ); it( 'should bind input\'s #hasError to labeledInput#errorText', () => { labeledInput.errorText = 'some error'; expect( labeledInput.fieldView.hasError ).to.be.true; labeledInput.errorText = null; expect( labeledInput.fieldView.hasError ).to.be.false; } ); it( 'should clean labeledInput#errorText upon input\'s DOM "update" event', () => { labeledInput.errorText = 'some error'; labeledInput.fieldView.fire( 'input' ); expect( labeledInput.errorText ).to.be.null; } ); } ); describe( 'createLabeledDropdown', () => { let labeledDropdown; beforeEach( () => { labeledDropdown = new LabeledFieldView( locale, createLabeledDropdown ); } ); afterEach( () => { labeledDropdown.destroy(); } ); it( 'should create a DropdownView', () => { expect( labeledDropdown.fieldView ).to.be.instanceOf( DropdownView ); } ); it( 'should pass the Locale to the dropdown', () => { expect( labeledDropdown.fieldView.locale ).to.equal( locale ); } ); it( 'should set dropdown\'s #id and #ariaDescribedById', () => { labeledDropdown.render(); expect( labeledDropdown.fieldView.id ).to.equal( labeledDropdown.labelView.for ); expect( labeledDropdown.fieldView.ariaDescribedById ).to.equal( labeledDropdown.statusView.element.id ); } ); it( 'should bind dropdown\'s #isEnabled to the labeled view', () => { labeledDropdown.isEnabled = true; expect( labeledDropdown.fieldView.isEnabled ).to.be.true; labeledDropdown.isEnabled = false; expect( labeledDropdown.fieldView.isEnabled ).to.be.false; } ); } ); } );