| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- /**
- * @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 {
- INLINE_FILLER_LENGTH,
- INLINE_FILLER,
- startsWithFiller,
- isInlineFiller,
- getDataWithoutFiller
- } from '../../src/view/filler';
- describe( 'filler', () => {
- describe( 'INLINE_FILLER', () => {
- it( 'should have length equal INLINE_FILLER_LENGTH', () => {
- expect( INLINE_FILLER.length ).to.equal( INLINE_FILLER_LENGTH );
- } );
- } );
- describe( 'startsWithFiller()', () => {
- it( 'should be true for node which contains only filler', () => {
- const node = document.createTextNode( INLINE_FILLER );
- expect( startsWithFiller( node ) ).to.be.true;
- } );
- it( 'should be true for node which starts with filler', () => {
- const node = document.createTextNode( INLINE_FILLER + 'foo' );
- expect( startsWithFiller( node ) ).to.be.true;
- } );
- it( 'should be false for element', () => {
- const node = document.createElement( 'p' );
- expect( startsWithFiller( node ) ).to.be.false;
- } );
- it( 'should be false which contains filler in the middle', () => {
- const node = document.createTextNode( 'x' + INLINE_FILLER + 'x' );
- expect( startsWithFiller( node ) ).to.be.false;
- } );
- it( 'should be false for the node which does not contains filler', () => {
- const node = document.createTextNode( 'foo' );
- expect( startsWithFiller( node ) ).to.be.false;
- } );
- it( 'should be false for the node which does not contains filler, even if it has the same length', () => {
- let text = '';
- for ( let i = 0; i < INLINE_FILLER_LENGTH; i++ ) {
- text += 'x';
- }
- const node = document.createTextNode( text );
- expect( startsWithFiller( node ) ).to.be.false;
- } );
- } );
- describe( 'getDataWithoutFiller()', () => {
- it( 'should return data without filler', () => {
- const node = document.createTextNode( INLINE_FILLER + 'foo' );
- const dataWithoutFiller = getDataWithoutFiller( node );
- expect( dataWithoutFiller.length ).to.equals( 3 );
- expect( dataWithoutFiller ).to.equals( 'foo' );
- } );
- it( 'should return the same data for data without filler', () => {
- const node = document.createTextNode( 'foo' );
- const dataWithoutFiller = getDataWithoutFiller( node );
- expect( dataWithoutFiller.length ).to.equals( 3 );
- expect( dataWithoutFiller ).to.equals( 'foo' );
- } );
- } );
- describe( 'isInlineFiller()', () => {
- it( 'should be true for inline filler', () => {
- const node = document.createTextNode( INLINE_FILLER );
- expect( isInlineFiller( node ) ).to.be.true;
- } );
- it( 'should be false for element which starts with filler', () => {
- const node = document.createTextNode( INLINE_FILLER + 'foo' );
- expect( isInlineFiller( node ) ).to.be.false;
- } );
- it( 'should be false for the node which does not contains filler, even if it has the same length', () => {
- let text = '';
- for ( let i = 0; i < INLINE_FILLER_LENGTH; i++ ) {
- text += 'x';
- }
- const node = document.createTextNode( text );
- expect( isInlineFiller( node ) ).to.be.false;
- } );
- it( 'should be true for inline filler from inside iframe', () => {
- const iframe = document.createElement( 'iframe' );
- document.body.appendChild( iframe );
- const node = iframe.contentDocument.createTextNode( INLINE_FILLER );
- expect( isInlineFiller( node ) ).to.be.true;
- document.body.removeChild( iframe );
- } );
- } );
- } );
|