/** * @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 PasteFromOffice from '../src/pastefromoffice'; import Clipboard from '@ckeditor/ckeditor5-clipboard/src/clipboard'; import VirtualTestEditor from '@ckeditor/ckeditor5-core/tests/_utils/virtualtesteditor'; import HtmlDataProcessor from '@ckeditor/ckeditor5-engine/src/dataprocessor/htmldataprocessor'; import { createDataTransfer } from './_utils/utils'; import testUtils from '@ckeditor/ckeditor5-core/tests/_utils/utils'; import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph'; import { StylesProcessor } from '@ckeditor/ckeditor5-engine/src/view/stylesmap'; import ViewDocument from '@ckeditor/ckeditor5-engine/src/view/document'; describe( 'PasteFromOffice', () => { const htmlDataProcessor = new HtmlDataProcessor( new ViewDocument( new StylesProcessor() ) ); let editor, pasteFromOffice, clipboard; testUtils.createSinonSandbox(); beforeEach( () => { return VirtualTestEditor.create( { plugins: [ PasteFromOffice, Paragraph ] } ) .then( _editor => { editor = _editor; pasteFromOffice = editor.plugins.get( 'PasteFromOffice' ); clipboard = editor.plugins.get( 'Clipboard' ); } ); } ); it( 'should be loaded', () => { expect( pasteFromOffice ).to.be.instanceOf( PasteFromOffice, Paragraph ); } ); it( 'has proper name', () => { expect( PasteFromOffice.pluginName ).to.equal( 'PasteFromOffice' ); } ); it( 'should load Clipboard plugin', () => { expect( editor.plugins.get( Clipboard ) ).to.be.instanceOf( Clipboard ); } ); describe( 'isTransformedWithPasteFromOffice - flag', () => { describe( 'data which should be marked with flag', () => { it( 'should process data with microsoft word header', () => { checkCorrectData( '' ); } ); it( 'should process data with nested microsoft header', () => { checkCorrectData( '
' ); } ); it( 'should process data from google docs', () => { checkCorrectData( '' ); } ); function checkCorrectData( inputString ) { const data = setUpData( inputString ); const getDataSpy = sinon.spy( data.dataTransfer, 'getData' ); clipboard.fire( 'inputTransformation', data ); expect( data.isTransformedWithPasteFromOffice ).to.be.true; sinon.assert.called( getDataSpy ); } } ); describe( 'data which should not be marked with flag', () => { it( 'should process data with regular html', () => { checkNotProcessedData( 'Hello world
' ); } ); it( 'should process data with similar headers to MS Word', () => { checkNotProcessedData( '' ); } ); function checkNotProcessedData( inputString ) { const data = setUpData( inputString ); const getDataSpy = sinon.spy( data.dataTransfer, 'getData' ); clipboard.fire( 'inputTransformation', data ); expect( data.isTransformedWithPasteFromOffice ).to.be.undefined; sinon.assert.called( getDataSpy ); } } ); describe( 'data which already have the flag', () => { it( 'should not process again ms word data containing a flag', () => { checkAlreadyProcessedData( '' + 'Hello world
Hello world
' ); } ); function checkAlreadyProcessedData( inputString ) { const data = setUpData( inputString, true ); const getDataSpy = sinon.spy( data.dataTransfer, 'getData' ); clipboard.fire( 'inputTransformation', data ); expect( data.isTransformedWithPasteFromOffice ).to.be.true; sinon.assert.notCalled( getDataSpy ); } } ); } ); // @param {String} inputString html to be processed by paste from office // @param {Boolean} [isTransformedWithPasteFromOffice=false] if set, marks output data with isTransformedWithPasteFromOffice flag // @returns {Object} data object simulating content obtained from the clipboard function setUpData( inputString, isTransformedWithPasteFromOffice = false ) { const data = { content: htmlDataProcessor.toView( inputString ), dataTransfer: createDataTransfer( { 'text/html': inputString } ) }; if ( isTransformedWithPasteFromOffice ) { data.isTransformedWithPasteFromOffice = true; } return data; } } );