| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643 |
- /**
- * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
- /* global setTimeout */
- import MediaEmbed from '../src/mediaembed';
- import AutoMediaEmbed from '../src/automediaembed';
- import ClassicTestEditor from '@ckeditor/ckeditor5-core/tests/_utils/classictesteditor';
- import Clipboard from '@ckeditor/ckeditor5-clipboard/src/clipboard';
- import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';
- import Link from '@ckeditor/ckeditor5-link/src/link';
- import Undo from '@ckeditor/ckeditor5-undo/src/undo';
- import Typing from '@ckeditor/ckeditor5-typing/src/typing';
- import Image from '@ckeditor/ckeditor5-image/src/image';
- import ImageCaption from '@ckeditor/ckeditor5-image/src/imagecaption';
- import Table from '@ckeditor/ckeditor5-table/src/table';
- import global from '@ckeditor/ckeditor5-utils/src/dom/global';
- import { getData, setData } from '@ckeditor/ckeditor5-engine/src/dev-utils/model';
- describe( 'AutoMediaEmbed - integration', () => {
- let editorElement, editor;
- beforeEach( () => {
- editorElement = global.document.createElement( 'div' );
- global.document.body.appendChild( editorElement );
- return ClassicTestEditor
- .create( editorElement, {
- plugins: [ Typing, Paragraph, Link, Image, ImageCaption, MediaEmbed, AutoMediaEmbed ]
- } )
- .then( newEditor => {
- editor = newEditor;
- } );
- } );
- afterEach( () => {
- editorElement.remove();
- return editor.destroy();
- } );
- it( 'should load Clipboard plugin', () => {
- expect( editor.plugins.get( Clipboard ) ).to.instanceOf( Clipboard );
- } );
- it( 'should load Undo plugin', () => {
- expect( editor.plugins.get( Undo ) ).to.instanceOf( Undo );
- } );
- it( 'has proper name', () => {
- expect( AutoMediaEmbed.pluginName ).to.equal( 'AutoMediaEmbed' );
- } );
- describe( 'use fake timers', () => {
- let clock;
- beforeEach( () => {
- clock = sinon.useFakeTimers();
- } );
- afterEach( () => {
- clock.restore();
- } );
- it( 'replaces pasted text with media element after 100ms', () => {
- setData( editor.model, '<paragraph>[]</paragraph>' );
- pasteHtml( editor, 'https://www.youtube.com/watch?v=H08tGjXNHO4' );
- expect( getData( editor.model ) ).to.equal(
- '<paragraph>https://www.youtube.com/watch?v=H08tGjXNHO4[]</paragraph>'
- );
- clock.tick( 100 );
- expect( getData( editor.model ) ).to.equal(
- '[<media url="https://www.youtube.com/watch?v=H08tGjXNHO4"></media>]'
- );
- } );
- it( 'can undo auto-embeding', () => {
- setData( editor.model, '<paragraph>[]</paragraph>' );
- pasteHtml( editor, 'https://www.youtube.com/watch?v=H08tGjXNHO4' );
- expect( getData( editor.model ) ).to.equal(
- '<paragraph>https://www.youtube.com/watch?v=H08tGjXNHO4[]</paragraph>'
- );
- clock.tick( 100 );
- editor.commands.execute( 'undo' );
- expect( getData( editor.model ) ).to.equal(
- '<paragraph>https://www.youtube.com/watch?v=H08tGjXNHO4[]</paragraph>'
- );
- } );
- it( 'works for a full URL (https + "www" sub-domain)', () => {
- setData( editor.model, '<paragraph>[]</paragraph>' );
- pasteHtml( editor, 'https://www.youtube.com/watch?v=H08tGjXNHO4' );
- clock.tick( 100 );
- expect( getData( editor.model ) ).to.equal(
- '[<media url="https://www.youtube.com/watch?v=H08tGjXNHO4"></media>]'
- );
- } );
- it( 'works for a full URL (https without "www" sub-domain)', () => {
- setData( editor.model, '<paragraph>[]</paragraph>' );
- pasteHtml( editor, 'https://youtube.com/watch?v=H08tGjXNHO4' );
- clock.tick( 100 );
- expect( getData( editor.model ) ).to.equal(
- '[<media url="https://youtube.com/watch?v=H08tGjXNHO4"></media>]'
- );
- } );
- it( 'works for a full URL (http + "www" sub-domain)', () => {
- setData( editor.model, '<paragraph>[]</paragraph>' );
- pasteHtml( editor, 'http://www.youtube.com/watch?v=H08tGjXNHO4' );
- clock.tick( 100 );
- expect( getData( editor.model ) ).to.equal(
- '[<media url="http://www.youtube.com/watch?v=H08tGjXNHO4"></media>]'
- );
- } );
- it( 'works for a full URL (http without "www" sub-domain)', () => {
- setData( editor.model, '<paragraph>[]</paragraph>' );
- pasteHtml( editor, 'http://youtube.com/watch?v=H08tGjXNHO4' );
- clock.tick( 100 );
- expect( getData( editor.model ) ).to.equal(
- '[<media url="http://youtube.com/watch?v=H08tGjXNHO4"></media>]'
- );
- } );
- it( 'works for a URL without protocol (with "www" sub-domain)', () => {
- setData( editor.model, '<paragraph>[]</paragraph>' );
- pasteHtml( editor, 'www.youtube.com/watch?v=H08tGjXNHO4' );
- clock.tick( 100 );
- expect( getData( editor.model ) ).to.equal(
- '[<media url="www.youtube.com/watch?v=H08tGjXNHO4"></media>]'
- );
- } );
- it( 'works for a URL without protocol (without "www" sub-domain)', () => {
- setData( editor.model, '<paragraph>[]</paragraph>' );
- pasteHtml( editor, 'youtube.com/watch?v=H08tGjXNHO4' );
- clock.tick( 100 );
- expect( getData( editor.model ) ).to.equal(
- '[<media url="youtube.com/watch?v=H08tGjXNHO4"></media>]'
- );
- } );
- it( 'works fine if a media has no preview', () => {
- setData( editor.model, '<paragraph>[]</paragraph>' );
- pasteHtml( editor, 'https://twitter.com/ckeditor/status/1035181110140063749' );
- clock.tick( 100 );
- expect( getData( editor.model ) ).to.equal(
- '[<media url="https://twitter.com/ckeditor/status/1035181110140063749"></media>]'
- );
- } );
- it( 'works for URL that was pasted as a link', () => {
- setData( editor.model, '<paragraph>[]</paragraph>' );
- pasteHtml( editor, '<a href="https://www.youtube.com/watch?v=H08tGjXNHO4">https://www.youtube.com/watch?v=H08tGjXNHO4</a>' );
- clock.tick( 100 );
- expect( getData( editor.model ) ).to.equal(
- '[<media url="https://www.youtube.com/watch?v=H08tGjXNHO4"></media>]'
- );
- } );
- it( 'works for URL that contains some inline styles', () => {
- setData( editor.model, '<paragraph>[]</paragraph>' );
- pasteHtml( editor, '<b>https://www.youtube.com/watch?v=H08tGjXNHO4</b>' );
- clock.tick( 100 );
- expect( getData( editor.model ) ).to.equal(
- '[<media url="https://www.youtube.com/watch?v=H08tGjXNHO4"></media>]'
- );
- } );
- it( 'works for not collapsed selection inside single element', () => {
- setData( editor.model, '<paragraph>[Foo]</paragraph>' );
- pasteHtml( editor, 'https://www.youtube.com/watch?v=H08tGjXNHO4' );
- clock.tick( 100 );
- expect( getData( editor.model ) ).to.equal(
- '[<media url="https://www.youtube.com/watch?v=H08tGjXNHO4"></media>]'
- );
- } );
- it( 'works for not collapsed selection over a few elements', () => {
- setData( editor.model, '<paragraph>Fo[o</paragraph><paragraph>Ba]r</paragraph>' );
- pasteHtml( editor, 'https://www.youtube.com/watch?v=H08tGjXNHO4' );
- clock.tick( 100 );
- expect( getData( editor.model ) ).to.equal(
- '<paragraph>Fo</paragraph>[<media url="https://www.youtube.com/watch?v=H08tGjXNHO4"></media>]<paragraph>r</paragraph>'
- );
- } );
- it( 'inserts media in-place (collapsed selection)', () => {
- setData( editor.model, '<paragraph>Foo []Bar</paragraph>' );
- pasteHtml( editor, 'https://www.youtube.com/watch?v=H08tGjXNHO4' );
- clock.tick( 100 );
- expect( getData( editor.model ) ).to.equal(
- '<paragraph>Foo </paragraph>' +
- '[<media url="https://www.youtube.com/watch?v=H08tGjXNHO4"></media>]' +
- '<paragraph>Bar</paragraph>'
- );
- } );
- it( 'inserts media in-place (non-collapsed selection)', () => {
- setData( editor.model, '<paragraph>Foo [Bar] Baz</paragraph>' );
- pasteHtml( editor, 'https://www.youtube.com/watch?v=H08tGjXNHO4' );
- clock.tick( 100 );
- expect( getData( editor.model ) ).to.equal(
- '<paragraph>Foo </paragraph>' +
- '[<media url="https://www.youtube.com/watch?v=H08tGjXNHO4"></media>]' +
- '<paragraph> Baz</paragraph>'
- );
- } );
- it( 'does nothing if a URL is invalid', () => {
- setData( editor.model, '<paragraph>[]</paragraph>' );
- pasteHtml( editor, 'https://youtube.com' );
- clock.tick( 100 );
- expect( getData( editor.model ) ).to.equal(
- '<paragraph>https://youtube.com[]</paragraph>'
- );
- } );
- it( 'does nothing if pasted two links as text', () => {
- setData( editor.model, '<paragraph>[]</paragraph>' );
- pasteHtml( editor, 'https://www.youtube.com/watch?v=H08tGjXNHO4 https://www.youtube.com/watch?v=H08tGjXNHO4' );
- clock.tick( 100 );
- expect( getData( editor.model ) ).to.equal(
- '<paragraph>https://www.youtube.com/watch?v=H08tGjXNHO4 https://www.youtube.com/watch?v=H08tGjXNHO4[]</paragraph>'
- );
- } );
- it( 'does nothing if pasted text contains a valid URL', () => {
- setData( editor.model, '<paragraph>[]</paragraph>' );
- pasteHtml( editor, 'Foo bar https://www.youtube.com/watch?v=H08tGjXNHO4 bar foo.' );
- clock.tick( 100 );
- expect( getData( editor.model ) ).to.equal(
- '<paragraph>Foo bar https://www.youtube.com/watch?v=H08tGjXNHO4 bar foo.[]</paragraph>'
- );
- } );
- it( 'does nothing if pasted more than single node', () => {
- setData( editor.model, '<paragraph>[]</paragraph>' );
- pasteHtml( editor,
- 'https://www.youtube.com/watch?v=H08tGjXNHO4 ' +
- '<a href="https://www.youtube.com/watch?v=H08tGjXNHO4">https://www.youtube.com/watch?v=H08tGjXNHO4</a>'
- );
- clock.tick( 100 );
- expect( getData( editor.model, { withoutSelection: true } ) ).to.equal(
- '<paragraph>https://www.youtube.com/watch?v=H08tGjXNHO4 ' +
- '<$text linkHref="https://www.youtube.com/watch?v=H08tGjXNHO4">https://www.youtube.com/watch?v=H08tGjXNHO4</$text>' +
- '</paragraph>'
- );
- } );
- it( 'does nothing if pasted a paragraph with the url', () => {
- setData( editor.model, '<paragraph>[]</paragraph>' );
- pasteHtml( editor, '<p>https://www.youtube.com/watch?v=H08tGjXNHO4</p>' );
- clock.tick( 100 );
- expect( getData( editor.model ) ).to.equal(
- '<paragraph>https://www.youtube.com/watch?v=H08tGjXNHO4[]</paragraph>'
- );
- } );
- it( 'does nothing if pasted a block of content that looks like a URL', () => {
- setData( editor.model, '<paragraph>[]</paragraph>' );
- pasteHtml( editor, '<p>https://</p><p>youtube.com/watch?</p><p>v=H08tGjXNHO4</p>' );
- clock.tick( 100 );
- expect( getData( editor.model ) ).to.equal(
- '<paragraph>https://</paragraph>' +
- '<paragraph>youtube.com/watch?</paragraph>' +
- '<paragraph>v=H08tGjXNHO4[]</paragraph>'
- );
- } );
- it( 'does nothing if a URL is invalid (space inside URL)', () => {
- setData( editor.model, '<paragraph>[]</paragraph>' );
- pasteHtml( editor, 'youtube.com/watch?v=H08tGjXNHO4&param=foo bar' );
- clock.tick( 100 );
- expect( getData( editor.model ) ).to.equal(
- '<paragraph>youtube.com/watch?v=H08tGjXNHO4¶m=foo bar[]</paragraph>'
- );
- } );
- // #47
- it( 'does not transform a valid URL into a media if the element cannot be placed in the current position', () => {
- setData( editor.model, '<image src="/assets/sample.png"><caption>Foo.[]</caption></image>' );
- pasteHtml( editor, 'https://www.youtube.com/watch?v=H08tGjXNHO4' );
- clock.tick( 100 );
- expect( getData( editor.model ) ).to.equal(
- '<image src="/assets/sample.png"><caption>Foo.https://www.youtube.com/watch?v=H08tGjXNHO4[]</caption></image>'
- );
- } );
- it( 'replaces a URL in media if pasted a link when other media element was selected', () => {
- setData(
- editor.model,
- '[<media url="https://open.spotify.com/album/2IXlgvecaDqOeF3viUZnPI?si=ogVw7KlcQAGZKK4Jz9QzvA"></media>]'
- );
- pasteHtml( editor, 'https://www.youtube.com/watch?v=H08tGjXNHO4' );
- clock.tick( 100 );
- expect( getData( editor.model ) ).to.equal(
- '[<media url="https://www.youtube.com/watch?v=H08tGjXNHO4"></media>]'
- );
- } );
- it( 'inserts a new media element if pasted a link when other media element was selected in correct place', () => {
- setData(
- editor.model,
- '<paragraph>Foo. <$text linkHref="https://cksource.com">Bar</$text></paragraph>' +
- '[<media url="https://open.spotify.com/album/2IXlgvecaDqOeF3viUZnPI?si=ogVw7KlcQAGZKK4Jz9QzvA"></media>]' +
- '<paragraph>Bar.</paragraph>'
- );
- pasteHtml( editor, 'https://www.youtube.com/watch?v=H08tGjXNHO4' );
- clock.tick( 100 );
- expect( getData( editor.model ) ).to.equal(
- '<paragraph>Foo. <$text linkHref="https://cksource.com">Bar</$text></paragraph>' +
- '[<media url="https://www.youtube.com/watch?v=H08tGjXNHO4"></media>]' +
- '<paragraph>Bar.</paragraph>'
- );
- } );
- it( 'does nothing if URL match to media but it was removed', () => {
- return ClassicTestEditor
- .create( editorElement, {
- plugins: [ MediaEmbed, AutoMediaEmbed, Paragraph ],
- mediaEmbed: {
- removeProviders: [ 'youtube' ]
- }
- } )
- .then( newEditor => {
- setData( newEditor.model, '<paragraph>[]</paragraph>' );
- pasteHtml( newEditor, 'https://www.youtube.com/watch?v=H08tGjXNHO4' );
- clock.tick( 100 );
- expect( getData( newEditor.model ) ).to.equal(
- '<paragraph>https://www.youtube.com/watch?v=H08tGjXNHO4[]</paragraph>'
- );
- editorElement.remove();
- return newEditor.destroy();
- } );
- } );
- it( 'works for URL with %-symbols', () => {
- setData( editor.model, '<paragraph>[]</paragraph>' );
- pasteHtml( editor, 'http://youtube.com/watch?v=H08tGjXNHO4%2' );
- clock.tick( 100 );
- expect( getData( editor.model ) ).to.equal(
- '[<media url="http://youtube.com/watch?v=H08tGjXNHO4%2"></media>]'
- );
- } );
- } );
- describe( 'use real timers', () => {
- const characters = Array( 10 ).fill( 1 ).map( ( x, i ) => String.fromCharCode( 65 + i ) );
- it( 'undo breaks the auto-media embed feature (undo was done before auto-media embed)', done => {
- setData( editor.model, '<paragraph>[]</paragraph>' );
- pasteHtml( editor, 'https://www.youtube.com/watch?v=H08tGjXNHO4' );
- expect( getData( editor.model ) ).to.equal(
- '<paragraph>https://www.youtube.com/watch?v=H08tGjXNHO4[]</paragraph>'
- );
- setTimeout( () => {
- editor.commands.execute( 'undo' );
- expect( getData( editor.model ) ).to.equal(
- '<paragraph>[]</paragraph>'
- );
- done();
- } );
- } );
- // Checking whether paste+typing calls the auto-media handler once.
- it( 'pasting handler should be executed once', done => {
- const autoMediaEmbedPlugin = editor.plugins.get( AutoMediaEmbed );
- const autoMediaHandler = autoMediaEmbedPlugin._embedMediaBetweenPositions;
- let counter = 0;
- autoMediaEmbedPlugin._embedMediaBetweenPositions = function( ...args ) {
- counter += 1;
- return autoMediaHandler.apply( this, args );
- };
- setData( editor.model, '<paragraph>[]</paragraph>' );
- pasteHtml( editor, 'https://www.youtube.com/watch?v=H08tGjXNHO4' );
- simulateTyping( 'Foo. Bar.' );
- setTimeout( () => {
- autoMediaEmbedPlugin._embedMediaBetweenPositions = autoMediaHandler;
- expect( counter ).to.equal( 1 );
- done();
- }, 100 );
- } );
- it( 'typing before pasted link during collaboration should not blow up', done => {
- setData( editor.model, '<paragraph>[]</paragraph>' );
- pasteHtml( editor, 'https://www.youtube.com/watch?v=H08tGjXNHO4' );
- for ( let i = 0; i < 10; ++i ) {
- const rootEl = editor.model.document.getRoot();
- setTimeout( () => {
- editor.model.enqueueChange( 'transparent', writer => {
- writer.insertText( characters[ i ], writer.createPositionFromPath( rootEl, [ 0, i ] ) );
- } );
- }, i * 5 );
- }
- setTimeout( () => {
- expect( getData( editor.model ) ).to.equal(
- '[<media url="https://www.youtube.com/watch?v=H08tGjXNHO4"></media>]<paragraph>ABCDEFGHIJ</paragraph>'
- );
- done();
- }, 100 );
- } );
- it( 'typing after pasted link during collaboration should not blow up', done => {
- setData( editor.model, '<paragraph>[]</paragraph>' );
- pasteHtml( editor, 'https://www.youtube.com/watch?v=H08tGjXNHO4' );
- for ( let i = 0; i < 10; ++i ) {
- setTimeout( () => {
- editor.model.enqueueChange( 'transparent', writer => {
- writer.insertText( characters[ i ], editor.model.document.selection.getFirstPosition() );
- } );
- }, i * 5 );
- }
- setTimeout( () => {
- expect( getData( editor.model ) ).to.equal(
- '[<media url="https://www.youtube.com/watch?v=H08tGjXNHO4"></media>]<paragraph>ABCDEFGHIJ</paragraph>'
- );
- done();
- }, 100 );
- } );
- it( 'should insert the media element even if parent element where the URL was pasted has been deleted', done => {
- setData( editor.model, '<paragraph>Foo.</paragraph><paragraph>Bar.[]</paragraph>' );
- pasteHtml( editor, 'https://www.youtube.com/watch?v=H08tGjXNHO4' );
- editor.model.enqueueChange( 'transparent', writer => {
- writer.remove( writer.createRangeOn( editor.model.document.getRoot().getChild( 1 ) ) );
- } );
- setTimeout( () => {
- expect( getData( editor.model ) ).to.equal(
- '<paragraph>Foo.</paragraph>[<media url="https://www.youtube.com/watch?v=H08tGjXNHO4"></media>]'
- );
- done();
- }, 100 );
- } );
- it( 'should insert the media element even if new element appeared above the pasted URL', done => {
- setData( editor.model, '<paragraph>Foo.</paragraph><paragraph>Bar.[]</paragraph>' );
- pasteHtml( editor, 'https://www.youtube.com/watch?v=H08tGjXNHO4' );
- editor.model.enqueueChange( 'transparent', writer => {
- const paragraph = writer.createElement( 'paragraph' );
- writer.insert( paragraph, writer.createPositionAfter( editor.model.document.getRoot().getChild( 0 ) ) );
- writer.setSelection( paragraph, 'in' );
- } );
- for ( let i = 0; i < 10; ++i ) {
- setTimeout( () => {
- editor.model.enqueueChange( 'transparent', writer => {
- writer.insertText( characters[ i ], editor.model.document.selection.getFirstPosition() );
- } );
- }, i * 5 );
- }
- setTimeout( () => {
- expect( getData( editor.model ) ).to.equal(
- '<paragraph>Foo.</paragraph>' +
- '<paragraph>ABCDEFGHIJ</paragraph>' +
- '<paragraph>Bar.</paragraph>' +
- '[<media url="https://www.youtube.com/watch?v=H08tGjXNHO4"></media>]'
- );
- done();
- }, 100 );
- } );
- it( 'should insert the media element even if new element appeared below the pasted URL', done => {
- setData( editor.model, '<paragraph>Foo.</paragraph><paragraph>Bar.[]</paragraph>' );
- pasteHtml( editor, 'https://www.youtube.com/watch?v=H08tGjXNHO4' );
- editor.model.enqueueChange( 'transparent', writer => {
- const paragraph = writer.createElement( 'paragraph' );
- writer.insert( paragraph, writer.createPositionAfter( editor.model.document.getRoot().getChild( 1 ) ) );
- writer.setSelection( paragraph, 'in' );
- } );
- for ( let i = 0; i < 10; ++i ) {
- setTimeout( () => {
- editor.model.enqueueChange( 'transparent', writer => {
- writer.insertText( characters[ i ], editor.model.document.selection.getFirstPosition() );
- } );
- }, i * 5 );
- }
- setTimeout( () => {
- expect( getData( editor.model ) ).to.equal(
- '<paragraph>Foo.</paragraph>' +
- '<paragraph>Bar.</paragraph>' +
- '[<media url="https://www.youtube.com/watch?v=H08tGjXNHO4"></media>]' +
- '<paragraph>ABCDEFGHIJ</paragraph>'
- );
- done();
- }, 100 );
- } );
- } );
- it( 'should detach LiveRange', async () => {
- const editor = await ClassicTestEditor.create( editorElement, {
- plugins: [ Typing, Paragraph, Link, Image, ImageCaption, Table, MediaEmbed, AutoMediaEmbed ]
- } );
- setData(
- editor.model,
- '<table>' +
- '<tableRow>' +
- '[<tableCell><paragraph>foo</paragraph></tableCell>]' +
- '[<tableCell><paragraph>bar</paragraph></tableCell>]' +
- '</tableRow>' +
- '</table>'
- );
- pasteHtml( editor, '<table><tr><td>one</td><td>two</td></tr></table>' );
- expect( getData( editor.model, { withoutSelection: true } ) ).to.equal(
- '<table>' +
- '<tableRow>' +
- '<tableCell><paragraph>one</paragraph></tableCell>' +
- '<tableCell><paragraph>two</paragraph></tableCell>' +
- '</tableRow>' +
- '</table>'
- );
- expect( () => {
- editor.setData( '' );
- } ).not.to.throw();
- await editor.destroy();
- } );
- function simulateTyping( text ) {
- // While typing, every character is an atomic change.
- text.split( '' ).forEach( character => {
- editor.execute( 'input', {
- text: character
- } );
- } );
- }
- function pasteHtml( editor, html ) {
- editor.editing.view.document.fire( 'paste', {
- dataTransfer: createDataTransfer( { 'text/html': html } ),
- stopPropagation() {},
- preventDefault() {}
- } );
- }
- function createDataTransfer( data ) {
- return {
- getData( type ) {
- return data[ type ];
- }
- };
- }
- } );
|