| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607 |
- /**
- * @license Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
- /* bender-tags: browser-only */
- import { parse, stringify, getData, setData }from '/tests/engine/_utils/view.js';
- import DocumentFragment from '/ckeditor5/engine/view/documentfragment.js';
- import Position from '/ckeditor5/engine/view/position.js';
- import Element from '/ckeditor5/engine/view/element.js';
- import AttributeElement from '/ckeditor5/engine/view/attributeelement.js';
- import ContainerElement from '/ckeditor5/engine/view/containerelement.js';
- import Text from '/ckeditor5/engine/view/text.js';
- import Selection from '/ckeditor5/engine/view/selection.js';
- import Range from '/ckeditor5/engine/view/range.js';
- import Document from '/ckeditor5/engine/view/document.js';
- describe( 'view test utils', () => {
- describe( 'getData, setData', () => {
- let sandbox;
- beforeEach( () => {
- sandbox = sinon.sandbox.create();
- } );
- afterEach( () => {
- sandbox.restore();
- } );
- describe( 'getData', () => {
- it( 'should use stringify method', () => {
- const element = document.createElement( 'div' );
- const stringifySpy = sandbox.spy( getData, '_stringify' );
- const viewDocument = new Document();
- const options = { showType: false, showPriority: false, withoutSelection: true };
- const root = viewDocument.createRoot( element );
- root.appendChildren( new Element( 'p' ) );
- expect( getData( viewDocument, options ) ).to.equal( '<p></p>' );
- sinon.assert.calledOnce( stringifySpy );
- expect( stringifySpy.firstCall.args[ 0 ] ).to.equal( root );
- expect( stringifySpy.firstCall.args[ 1 ] ).to.equal( null );
- const stringifyOptions = stringifySpy.firstCall.args[ 2 ];
- expect( stringifyOptions ).to.have.property( 'showType' ).that.equals( false );
- expect( stringifyOptions ).to.have.property( 'showPriority' ).that.equals( false );
- expect( stringifyOptions ).to.have.property( 'ignoreRoot' ).that.equals( true );
- } );
- it( 'should use stringify method with selection', () => {
- const element = document.createElement( 'div' );
- const stringifySpy = sandbox.spy( getData, '_stringify' );
- const viewDocument = new Document();
- const options = { showType: false, showPriority: false };
- const root = viewDocument.createRoot( element );
- root.appendChildren( new Element( 'p' ) );
- viewDocument.selection.addRange( Range.createFromParentsAndOffsets( root, 0, root, 1 ) );
- expect( getData( viewDocument, options ) ).to.equal( '[<p></p>]' );
- sinon.assert.calledOnce( stringifySpy );
- expect( stringifySpy.firstCall.args[ 0 ] ).to.equal( root );
- expect( stringifySpy.firstCall.args[ 1 ] ).to.equal( viewDocument.selection );
- const stringifyOptions = stringifySpy.firstCall.args[ 2 ];
- expect( stringifyOptions ).to.have.property( 'showType' ).that.equals( false );
- expect( stringifyOptions ).to.have.property( 'showPriority' ).that.equals( false );
- expect( stringifyOptions ).to.have.property( 'ignoreRoot' ).that.equals( true );
- } );
- it( 'should throw an error when passing invalid document', () => {
- expect( () => {
- getData( { invalid: 'document' } );
- } ).to.throw( TypeError, 'Document needs to be an instance of engine.view.Document.' );
- } );
- } );
- describe( 'setData', () => {
- it( 'should use parse method', () => {
- const viewDocument = new Document();
- const data = 'foobar<b>baz</b>';
- const parseSpy = sandbox.spy( setData, '_parse' );
- viewDocument.createRoot( document.createElement( 'div' ) );
- setData( viewDocument, data );
- expect( getData( viewDocument ) ).to.equal( 'foobar<b>baz</b>' );
- sinon.assert.calledOnce( parseSpy );
- const args = parseSpy.firstCall.args;
- expect( args[ 0 ] ).to.equal( data );
- expect( args[ 1 ] ).to.be.an( 'object' );
- expect( args[ 1 ].rootElement ).to.equal( viewDocument.getRoot() );
- } );
- it( 'should use parse method with selection', () => {
- const viewDocument = new Document();
- const data = '[<b>baz</b>]';
- const parseSpy = sandbox.spy( setData, '_parse' );
- viewDocument.createRoot( document.createElement( 'div' ) );
- setData( viewDocument, data );
- expect( getData( viewDocument ) ).to.equal( '[<b>baz</b>]' );
- const args = parseSpy.firstCall.args;
- expect( args[ 0 ] ).to.equal( data );
- expect( args[ 1 ] ).to.be.an( 'object' );
- expect( args[ 1 ].rootElement ).to.equal( viewDocument.getRoot() );
- } );
- it( 'should throw an error when passing invalid document', () => {
- expect( () => {
- setData( { invalid: 'document' } );
- } ).to.throw( TypeError, 'Document needs to be an instance of engine.view.Document.' );
- } );
- } );
- } );
- describe( 'stringify', () => {
- it( 'should write text', () => {
- const text = new Text( 'foobar' );
- expect( stringify( text ) ).to.equal( 'foobar' );
- } );
- it( 'should write elements and texts', () => {
- const text = new Text( 'foobar' );
- const b = new Element( 'b', null, text );
- const p = new Element( 'p', null, b );
- expect( stringify( p ) ).to.equal( '<p><b>foobar</b></p>' );
- } );
- it( 'should write elements with attributes (attributes in alphabetical order)', () => {
- const text = new Text( 'foobar' );
- const b = new Element( 'b', {
- foo: 'bar'
- }, text );
- const p = new Element( 'p', {
- baz: 'qux',
- bar: 'taz',
- class: 'short wide'
- }, b );
- expect( stringify( p ) ).to.equal( '<p bar="taz" baz="qux" class="short wide"><b foo="bar">foobar</b></p>' );
- } );
- it( 'should write selection ranges inside elements', () => {
- const text1 = new Text( 'foobar' );
- const text2 = new Text( 'bazqux' );
- const b1 = new Element( 'b', null, text1 );
- const b2 = new Element( 'b', null, text2 );
- const p = new Element( 'p', null, [ b1, b2 ] );
- const range = Range.createFromParentsAndOffsets( p, 1, p, 2 );
- const selection = new Selection();
- selection.addRange( range );
- expect( stringify( p, selection ) ).to.equal( '<p><b>foobar</b>[<b>bazqux</b>]</p>' );
- } );
- it( 'should support unicode', () => {
- const text = new Text( 'நிலைக்கு' );
- const b = new Element( 'b', null, text );
- const p = new Element( 'p', null, b );
- const range = Range.createFromParentsAndOffsets( p, 0, text, 4 );
- const selection = new Selection();
- selection.addRange( range );
- expect( stringify( p, selection ) ).to.equal( '<p>[<b>நிலை}க்கு</b></p>' );
- } );
- it( 'should write collapsed selection ranges inside elements', () => {
- const text = new Text( 'foobar' );
- const p = new Element( 'p', null, text );
- const range = Range.createFromParentsAndOffsets( p, 0, p, 0 );
- const selection = new Selection();
- selection.addRange( range );
- expect( stringify( p, selection ) ).to.equal( '<p>[]foobar</p>' );
- } );
- it( 'should write selection ranges inside text', () => {
- const text1 = new Text( 'foobar' );
- const text2 = new Text( 'bazqux' );
- const b1 = new Element( 'b', null, text1 );
- const b2 = new Element( 'b', null, text2 );
- const p = new Element( 'p', null, [ b1, b2 ] );
- const range = Range.createFromParentsAndOffsets( text1, 1, text1, 5 );
- const selection = new Selection();
- selection.addRange( range );
- expect( stringify( p, selection ) ).to.equal( '<p><b>f{ooba}r</b><b>bazqux</b></p>' );
- } );
- it( 'should write collapsed selection ranges inside texts', () => {
- const text = new Text( 'foobar' );
- const p = new Element( 'p', null, text );
- const range = Range.createFromParentsAndOffsets( text, 0, text, 0 );
- const selection = new Selection();
- selection.addRange( range );
- expect( stringify( p, selection ) ).to.equal( '<p>{}foobar</p>' );
- } );
- it( 'should write ranges that start inside text end ends between elements', () => {
- const text1 = new Text( 'foobar' );
- const text2 = new Text( 'bazqux' );
- const b1 = new Element( 'b', null, text1 );
- const b2 = new Element( 'b', null, text2 );
- const p = new Element( 'p', null, [ b1, b2 ] );
- const range = Range.createFromParentsAndOffsets( p, 0, text2, 5 );
- const selection = new Selection();
- selection.addRange( range );
- expect( stringify( p, selection ) ).to.equal( '<p>[<b>foobar</b><b>bazqu}x</b></p>' );
- } );
- it( 'should write elements types as namespaces when needed', () => {
- const text = new Text( 'foobar' );
- const b = new AttributeElement( 'b', null, text );
- const p = new ContainerElement( 'p', null, b );
- expect( stringify( p, null, { showType: true } ) )
- .to.equal( '<container:p><attribute:b>foobar</attribute:b></container:p>' );
- } );
- it( 'should not write element type when type is not specified', () => {
- const p = new Element( 'p' );
- expect( stringify( p, null, { showType: true } ) ).to.equal( '<p></p>' );
- } );
- it( 'should write elements priorities when needed', () => {
- const text = new Text( 'foobar' );
- const b = new AttributeElement( 'b', null, text );
- const p = new ContainerElement( 'p', null, b );
- expect( stringify( p, null, { showPriority: true } ) )
- .to.equal( '<p><b:10>foobar</b:10></p>' );
- } );
- it( 'should parse DocumentFragment as root', () => {
- const text1 = new Text( 'foobar' );
- const text2 = new Text( 'bazqux' );
- const b1 = new Element( 'b', null, text1 );
- const b2 = new Element( 'b', null, text2 );
- const fragment = new DocumentFragment( [ b1, b2 ] );
- expect( stringify( fragment, null ) ).to.equal( '<b>foobar</b><b>bazqux</b>' );
- } );
- it( 'should not write ranges outside elements - end position outside element', () => {
- const text = new Text( 'foobar' );
- const b = new Element( 'b', null, text );
- const p = new Element( 'p', null, b );
- const range = Range.createFromParentsAndOffsets( p, 0, p, 5 );
- expect( stringify( p, range ) ).to.equal( '<p>[<b>foobar</b></p>' );
- } );
- it( 'should not write ranges outside elements - start position outside element', () => {
- const text = new Text( 'foobar' );
- const b = new Element( 'b', null, text );
- const p = new Element( 'p', null, b );
- const range = Range.createFromParentsAndOffsets( p, -1, p, 1 );
- expect( stringify( p, range ) ).to.equal( '<p><b>foobar</b>]</p>' );
- } );
- it( 'should not write ranges outside elements - end position outside text', () => {
- const text = new Text( 'foobar' );
- const b = new Element( 'b', null, text );
- const p = new Element( 'p', null, b );
- const range = Range.createFromParentsAndOffsets( text, 0, text, 7 );
- expect( stringify( p, range ) ).to.equal( '<p><b>{foobar</b></p>' );
- } );
- it( 'should not write ranges outside elements - start position outside text', () => {
- const text = new Text( 'foobar' );
- const b = new Element( 'b', null, text );
- const p = new Element( 'p', null, b );
- const range = Range.createFromParentsAndOffsets( text, -1, text, 2 );
- expect( stringify( p, range ) ).to.equal( '<p><b>fo}obar</b></p>' );
- } );
- it( 'should write multiple ranges from selection #1', () => {
- const text1 = new Text( 'foobar' );
- const text2 = new Text( 'bazqux' );
- const b1 = new Element( 'b', null, text1 );
- const b2 = new Element( 'b', null, text2 );
- const p = new Element( 'p', null, [ b1, b2 ] );
- const range1 = Range.createFromParentsAndOffsets( p, 0, p, 1 );
- const range2 = Range.createFromParentsAndOffsets( p, 1, p, 1 );
- const selection = new Selection();
- selection.setRanges( [ range2, range1 ] );
- expect( stringify( p, selection ) ).to.equal( '<p>[<b>foobar</b>][]<b>bazqux</b></p>' );
- } );
- it( 'should write multiple ranges from selection #2', () => {
- const text1 = new Text( 'foobar' );
- const text2 = new Text( 'bazqux' );
- const b = new Element( 'b', null, text1 );
- const p = new Element( 'p', null, [ b, text2 ] );
- const range1 = Range.createFromParentsAndOffsets( p, 0, p, 1 );
- const range2 = Range.createFromParentsAndOffsets( text2, 0, text2, 3 );
- const range3 = Range.createFromParentsAndOffsets( text2, 3, text2, 4 );
- const range4 = Range.createFromParentsAndOffsets( p, 1, p, 1 );
- const selection = new Selection();
- selection.setRanges( [ range1, range2, range3, range4 ] );
- expect( stringify( p, selection ) ).to.equal( '<p>[<b>foobar</b>][]{baz}{q}ux</p>' );
- } );
- it( 'should use Position instance instead of Selection', () => {
- const text = new Text( 'foobar' );
- const position = new Position( text, 3 );
- const string = stringify( text, position );
- expect( string ).to.equal( 'foo{}bar' );
- } );
- it( 'should use Range instance instead of Selection', () => {
- const text = new Text( 'foobar' );
- const range = Range.createFromParentsAndOffsets( text, 3, text, 4 );
- const string = stringify( text, range );
- expect( string ).to.equal( 'foo{b}ar' );
- } );
- } );
- describe( 'parse', () => {
- it( 'should return empty DocumentFragment for empty string', () => {
- const fragment = parse( '' );
- expect( fragment ).to.be.instanceOf( DocumentFragment );
- expect( fragment.childCount ).to.equal( 0 );
- } );
- it( 'should return empty DocumentFragment and Selection for string containing range only', () => {
- const { view, selection } = parse( '[]' );
- expect( view ).to.be.instanceOf( DocumentFragment );
- expect( selection.rangeCount ).to.equal( 1 );
- expect( selection.getFirstRange().isEqual( Range.createFromParentsAndOffsets( view, 0, view, 0 ) ) ).to.be.true;
- } );
- it( 'should return Element if range is around single element', () => {
- const { view, selection } = parse( '[<b>foobar</b>]' );
- const parent = view.parent;
- expect( view ).to.be.instanceOf( Element );
- expect( parent ).to.be.instanceOf( DocumentFragment );
- expect( selection.rangeCount ).to.equal( 1 );
- expect( selection.getFirstRange().isEqual( Range.createFromParentsAndOffsets( parent, 0, parent, 1 ) ) ).to.be.true;
- } );
- it( 'should create DocumentFragment when multiple elements on root', () => {
- const view = parse( '<b></b><i></i>' );
- expect( view ).to.be.instanceOf( DocumentFragment );
- expect( view.childCount ).to.equal( 2 );
- expect( view.getChild( 0 ).isSimilar( new Element( 'b' ) ) ).to.be.true;
- expect( view.getChild( 1 ).isSimilar( new Element( 'i' ) ) ).to.be.true;
- } );
- it( 'should parse text', () => {
- const text = parse( 'foobar' );
- expect( text ).to.be.instanceOf( Text );
- expect( text.data ).to.equal( 'foobar' );
- } );
- it( 'should parse text with spaces', () => {
- const text = parse( 'foo bar' );
- expect( text ).to.be.instanceOf( Text );
- expect( text.data ).to.equal( 'foo bar' );
- } );
- it( 'should parse elements and texts', () => {
- const view = parse( '<b>foobar</b>' );
- const element = new Element( 'b' );
- expect( view ).to.be.instanceof( Element );
- expect( view.isSimilar( element ) ).to.be.true;
- expect( view.childCount ).to.equal( 1 );
- const text = view.getChild( 0 );
- expect( text ).to.be.instanceof( Text );
- expect( text.data ).to.equal( 'foobar' );
- } );
- it( 'should parse element attributes', () => {
- const view = parse( '<b name="foo" title="bar" class="foo bar" style="color:red;"></b>' );
- const element = new Element( 'b', { name: 'foo', title: 'bar', class: 'foo bar', style: 'color:red;' } );
- expect( view ).to.be.instanceof( Element );
- expect( view.isSimilar( element ) ).to.be.true;
- expect( view.childCount ).to.equal( 0 );
- } );
- it( 'should parse element type', () => {
- const view1 = parse( '<attribute:b></attribute:b>' );
- const attribute = new AttributeElement( 'b' );
- const view2 = parse( '<container:p></container:p>' );
- const container = new ContainerElement( 'p' );
- expect( view1 ).to.be.instanceof( AttributeElement );
- expect( view1.isSimilar( attribute ) ).to.be.true;
- expect( view2 ).to.be.instanceof( ContainerElement );
- expect( view2.isSimilar( container ) ).to.be.true;
- } );
- it( 'should parse element priority', () => {
- const parsed1 = parse( '<b:12></b:12>' );
- const attribute1 = new AttributeElement( 'b' );
- attribute1.priority = 12;
- const parsed2 = parse( '<attribute:b:44></attribute:b:44>' );
- const attribute2 = new AttributeElement( 'b' );
- attribute2.priority = 44;
- parsed1.isSimilar( attribute1 );
- expect( parsed1.isSimilar( attribute1 ) ).to.be.true;
- expect( parsed2.isSimilar( attribute2 ) ).to.be.true;
- } );
- it( 'should paste nested elements and texts', () => {
- const parsed = parse( '<container:p>foo<b:12>bar<i:25>qux</i:25></b:12></container:p>' );
- expect( parsed.isSimilar( new ContainerElement( 'p' ) ) ).to.be.true;
- expect( parsed.childCount ).to.equal( 2 );
- expect( parsed.getChild( 0 ) ).to.be.instanceof( Text ).and.have.property( 'data' ).that.equal( 'foo' );
- const b = parsed.getChild( 1 );
- expect( b ).to.be.instanceof( AttributeElement );
- expect( b.priority ).to.equal( 12 );
- expect( b.childCount ).to.equal( 2 );
- expect( b.getChild( 0 ) ).to.be.instanceof( Text ).and.have.property( 'data' ).that.equal( 'bar' );
- const i = b.getChild( 1 );
- expect( i ).to.be.instanceof( AttributeElement );
- expect( i.priority ).to.equal( 25 );
- expect( i.getChild( 0 ) ).to.be.instanceof( Text ).and.have.property( 'data' ).that.equal( 'qux' );
- } );
- it( 'should parse selection range inside text', () => {
- const { view, selection } = parse( 'f{oo}b{}ar' );
- expect( view ).to.be.instanceof( Text );
- expect( view.data ).to.equal( 'foobar' );
- expect( selection.rangeCount ).to.equal( 2 );
- const ranges = [ ...selection.getRanges() ];
- expect( ranges[ 0 ].isEqual( Range.createFromParentsAndOffsets( view, 1, view, 3 ) ) ).to.be.true;
- expect( ranges[ 1 ].isEqual( Range.createFromParentsAndOffsets( view, 4, view, 4 ) ) ).to.be.true;
- } );
- it( 'should parse selection range between elements', () => {
- const { view, selection } = parse( '<p>[<b>foobar]</b>[]</p>' );
- expect( view ).to.be.instanceof( Element );
- expect( view.childCount ).to.equal( 1 );
- const b = view.getChild( 0 );
- expect( b ).to.be.instanceof( Element );
- expect( b.name ).to.equal( 'b' );
- expect( b.childCount ).to.equal( 1 );
- const text = b.getChild( 0 );
- expect( text ).to.be.instanceof( Text );
- expect( text.data ).to.equal( 'foobar' );
- expect( selection.rangeCount ).to.equal( 2 );
- const ranges = [ ...selection.getRanges() ];
- expect( ranges[ 0 ].isEqual( Range.createFromParentsAndOffsets( view, 0, b, 1 ) ) ).to.be.true;
- expect( ranges[ 1 ].isEqual( Range.createFromParentsAndOffsets( view, 1, view, 1 ) ) ).to.be.true;
- } );
- it( 'should support unicode', () => {
- const { view, selection } = parse( '<p>[<b>நிலை}க்கு</b></p>' );
- expect( view ).to.be.instanceof( Element );
- expect( view.name ).to.equal( 'p' );
- expect( view.childCount ).to.equal( 1 );
- const b = view.getChild( 0 );
- expect( b.name ).to.equal( 'b' );
- expect( b.childCount ).to.equal( 1 );
- const text = b.getChild( 0 );
- expect( text.data ).to.equal( 'நிலைக்கு' );
- expect( selection.rangeCount ).to.equal( 1 );
- const range = selection.getFirstRange();
- expect( range.start.parent ).to.equal( view );
- expect( range.start.offset ).to.equal( 0 );
- expect( range.end.parent ).to.equal( text );
- expect( range.end.offset ).to.equal( 4 );
- } );
- it( 'should parse ranges #1', () => {
- const { view, selection } = parse( '<container:p>foo{bar]</container:p>' );
- expect( view.isSimilar( new ContainerElement( 'p' ) ) ).to.be.true;
- expect( view.childCount ).to.equal( 1 );
- const text = view.getChild( 0 );
- expect( text ).to.be.instanceof( Text );
- expect( text.data ).to.equal( 'foobar' );
- expect( selection.rangeCount ).to.equal( 1 );
- expect( selection.getFirstRange().isEqual( Range.createFromParentsAndOffsets( text, 3, view, 1 ) ) ).to.be.true;
- } );
- it( 'should parse ranges #2', () => {
- const { view, selection } = parse( '<attribute:b>[foob}ar<i>{baz</i>]</attribute:b>' );
- expect( view.isSimilar( new AttributeElement( 'b' ) ) ).to.be.true;
- expect( view.childCount ).to.equal( 2 );
- const text1 = view.getChild( 0 );
- expect( text1 ).to.be.instanceof( Text );
- expect( text1.data ).to.equal( 'foobar' );
- const i = view.getChild( 1 );
- expect( i.isSimilar( new Element( 'i' ) ) ).to.be.true;
- expect( i.childCount ).to.equal( 1 );
- const text2 = i.getChild( 0 );
- expect( text2 ).to.be.instanceof( Text );
- expect( text2.data ).to.equal( 'baz' );
- expect( selection.rangeCount ).to.equal( 2 );
- const ranges = [ ...selection.getRanges() ];
- expect( ranges[ 0 ].isEqual( Range.createFromParentsAndOffsets( view, 0, text1, 4 ) ) ).to.be.true;
- expect( ranges[ 1 ].isEqual( Range.createFromParentsAndOffsets( text2, 0, view, 2 ) ) ).to.be.true;
- } );
- it( 'should use ranges order when provided', () => {
- const { view, selection } = parse( '{f}oo{b}arb{a}z', { order: [ 3, 1, 2 ] } );
- expect( selection.rangeCount ).to.equal( 3 );
- const ranges = [ ...selection.getRanges() ];
- expect( ranges[ 0 ].isEqual( Range.createFromParentsAndOffsets( view, 3, view, 4 ) ) ).to.be.true;
- expect( ranges[ 1 ].isEqual( Range.createFromParentsAndOffsets( view, 7, view, 8 ) ) ).to.be.true;
- expect( ranges[ 2 ].isEqual( Range.createFromParentsAndOffsets( view, 0, view, 1 ) ) ).to.be.true;
- expect( selection.anchor.isEqual( ranges[ 2 ].start ) ).to.be.true;
- expect( selection.focus.isEqual( ranges[ 2 ].end ) ).to.be.true;
- } );
- it( 'should set last range backward if needed', () => {
- const { view, selection } = parse( '{f}oo{b}arb{a}z', { order: [ 3, 1, 2 ], lastRangeBackward: true } );
- expect( selection.rangeCount ).to.equal( 3 );
- const ranges = [ ...selection.getRanges() ];
- expect( ranges[ 0 ].isEqual( Range.createFromParentsAndOffsets( view, 3, view, 4 ) ) ).to.be.true;
- expect( ranges[ 1 ].isEqual( Range.createFromParentsAndOffsets( view, 7, view, 8 ) ) ).to.be.true;
- expect( ranges[ 2 ].isEqual( Range.createFromParentsAndOffsets( view, 0, view, 1 ) ) ).to.be.true;
- expect( selection.anchor.isEqual( ranges[ 2 ].end ) ).to.be.true;
- expect( selection.focus.isEqual( ranges[ 2 ].start ) ).to.be.true;
- } );
- it( 'should throw when ranges order does not include all ranges', () => {
- expect( () => {
- parse( '{}foobar{}', { order: [ 1 ] } );
- } ).to.throw( Error );
- } );
- it( 'should throw when ranges order is invalid', () => {
- expect( () => {
- parse( '{}foobar{}', { order: [ 1, 4 ] } );
- } ).to.throw( Error );
- } );
- it( 'should throw when element range delimiter is inside text node', () => {
- expect( () => {
- parse( 'foo[bar' );
- } ).to.throw( Error );
- } );
- it( 'should throw when text range delimiter is inside empty text node', () => {
- expect( () => {
- parse( '<b>foo</b>}' );
- } ).to.throw( Error );
- } );
- it( 'should throw when end of range is found before start', () => {
- expect( () => {
- parse( 'fo}obar' );
- } ).to.throw( Error );
- } );
- it( 'should throw when intersecting ranges found', () => {
- expect( () => {
- parse( '[fo{o}bar]' );
- } ).to.throw( Error );
- } );
- it( 'should throw when opened ranges are left', () => {
- expect( () => {
- parse( 'fo{obar' );
- } ).to.throw( Error );
- } );
- it( 'should throw when wrong tag name is provided #1', () => {
- expect( () => {
- parse( '<b:bar></b:bar>' );
- } ).to.throw( Error );
- } );
- it( 'should throw when wrong tag name is provided #2', () => {
- expect( () => {
- parse( '<container:b:bar></container:b:bar>' );
- } ).to.throw( Error );
- } );
- it( 'should throw when wrong tag name is provided #3', () => {
- expect( () => {
- parse( '<container:b:10:test></container:b:10:test>' );
- } ).to.throw( Error );
- } );
- it( 'should use provided root element #1', () => {
- const root = new Element( 'p' );
- const data = parse( '<span>text</span>', { rootElement: root } );
- expect( stringify( data ) ).to.equal( '<p><span>text</span></p>' );
- } );
- it( 'should use provided root element #2', () => {
- const root = new Element( 'p' );
- const data = parse( '<span>text</span><b>test</b>', { rootElement: root } );
- expect( stringify( data ) ).to.equal( '<p><span>text</span><b>test</b></p>' );
- } );
- } );
- } );
|