123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210 |
- /**
- * @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 ClassicEditor from '../src/ckeditor';
- import BaseClassicEditor from '@ckeditor/ckeditor5-editor-classic/src/classiceditor';
- import { describeMemoryUsage, testMemoryUsage } from '@ckeditor/ckeditor5-core/tests/_utils/memory';
- describe( 'ClassicEditor build', () => {
- let editor, editorElement;
- beforeEach( () => {
- editorElement = document.createElement( 'div' );
- editorElement.innerHTML = '<p><strong>foo</strong> bar</p>';
- document.body.appendChild( editorElement );
- } );
- afterEach( () => {
- editorElement.remove();
- editor = null;
- } );
- describe( 'build', () => {
- it( 'contains plugins', () => {
- expect( ClassicEditor.builtinPlugins ).to.not.be.empty;
- } );
- it( 'contains config', () => {
- expect( ClassicEditor.defaultConfig.toolbar ).to.not.be.empty;
- } );
- } );
- describe( 'create()', () => {
- beforeEach( () => {
- return ClassicEditor.create( editorElement )
- .then( newEditor => {
- editor = newEditor;
- } );
- } );
- afterEach( () => {
- return editor.destroy();
- } );
- it( 'creates an instance which inherits from the ClassicEditor', () => {
- expect( editor ).to.be.instanceof( ClassicEditor );
- expect( editor ).to.be.instanceof( BaseClassicEditor );
- } );
- it( 'loads data from the editor element', () => {
- expect( editor.getData() ).to.equal( '<p><strong>foo</strong> bar</p>' );
- } );
- } );
- describe( 'destroy()', () => {
- beforeEach( () => {
- return ClassicEditor.create( editorElement )
- .then( newEditor => {
- editor = newEditor;
- } );
- } );
- it( 'sets the data back to the editor element', () => {
- editor.setData( '<p>foo</p>' );
- return editor.destroy()
- .then( () => {
- expect( editorElement.innerHTML ).to.equal( '<p>foo</p>' );
- } );
- } );
- it( 'restores the editor element', () => {
- expect( editor.sourceElement.style.display ).to.equal( 'none' );
- return editor.destroy()
- .then( () => {
- expect( editor.sourceElement.style.display ).to.equal( '' );
- } );
- } );
- } );
- describe( 'plugins', () => {
- beforeEach( () => {
- return ClassicEditor.create( editorElement )
- .then( newEditor => {
- editor = newEditor;
- } );
- } );
- afterEach( () => {
- return editor.destroy();
- } );
- it( 'paragraph works', () => {
- const data = '<p>Some text inside a paragraph.</p>';
- editor.setData( data );
- expect( editor.getData() ).to.equal( data );
- } );
- it( 'basic-styles work', () => {
- const data = [
- '<p>',
- '<strong>Test:strong</strong>',
- '<i>Test:i</i>',
- '</p>'
- ].join( '' );
- editor.setData( data );
- expect( editor.getData() ).to.equal( data );
- } );
- it( 'block-quote works', () => {
- const data = '<blockquote><p>Quote</p></blockquote>';
- editor.setData( data );
- expect( editor.getData() ).to.equal( data );
- } );
- it( 'heading works', () => {
- const data = [
- '<h2>Heading 1.</h2>',
- '<h3>Heading 1.1</h3>',
- '<h4>Heading 1.1.1</h4>',
- '<h4>Heading 1.1.2</h4>',
- '<h3>Heading 1.2</h3>',
- '<h4>Heading 1.2.1</h4>',
- '<h2>Heading 2</h2>'
- ].join( '' );
- editor.setData( data );
- expect( editor.getData() ).to.equal( data );
- } );
- it( 'image works', () => {
- const data = '<figure class="image"><img src="/assets/sample.png"></figure>';
- editor.setData( data );
- expect( editor.getData() ).to.equal( data );
- } );
- it( 'list works', () => {
- const data = [
- '<ul>',
- '<li>Item 1.</li>',
- '<li>Item 2.</li>',
- '</ul>',
- '<ol>',
- '<li>Item 1.</li>',
- '<li>Item 2.</li>',
- '</ol>'
- ].join( '' );
- editor.setData( data );
- expect( editor.getData() ).to.equal( data );
- } );
- it( 'link works', () => {
- const data = '<p><a href="//ckeditor.com">CKEditor.com</a></p>';
- editor.setData( data );
- expect( editor.getData() ).to.equal( data );
- } );
- } );
- describe( 'config', () => {
- afterEach( () => {
- return editor.destroy();
- } );
- // https://github.com/ckeditor/ckeditor5/issues/572
- it( 'allows configuring toolbar items through config.toolbar', () => {
- return ClassicEditor
- .create( editorElement, {
- toolbar: [ 'bold' ]
- } )
- .then( newEditor => {
- editor = newEditor;
- expect( editor.ui.view.toolbar.items.length ).to.equal( 1 );
- } );
- } );
- // https://github.com/ckeditor/ckeditor5/issues/572
- it( 'allows configuring toolbar offset without overriding toolbar items', () => {
- return ClassicEditor
- .create( editorElement, {
- toolbar: {
- viewportTopOffset: 42
- }
- } )
- .then( newEditor => {
- editor = newEditor;
- expect( editor.ui.view.toolbar.items.length ).to.equal( 17 );
- expect( editor.ui.view.stickyPanel.viewportTopOffset ).to.equal( 42 );
- } );
- } );
- } );
- describeMemoryUsage( () => {
- testMemoryUsage(
- 'should not grow on multiple create/destroy',
- () => ClassicEditor.create( document.querySelector( '#mem-editor' ) ) );
- } );
- } );
|