| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258 |
- /**
- * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
- import Model from '../../src/model/model';
- import DocumentFragment from '../../src/model/documentfragment';
- import Element from '../../src/model/element';
- import Text from '../../src/model/text';
- import TextProxy from '../../src/model/textproxy';
- import Position from '../../src/model/position';
- import Range from '../../src/model/range';
- import MarkerOperation from '../../src/model/operation/markeroperation';
- import AttributeOperation from '../../src/model/operation/attributeoperation';
- import InsertOperation from '../../src/model/operation/insertoperation';
- import MoveOperation from '../../src/model/operation/moveoperation';
- import RenameOperation from '../../src/model/operation/renameoperation';
- import MergeOperation from '../../src/model/operation/mergeoperation';
- import SplitOperation from '../../src/model/operation/splitoperation';
- import testUtils from '@ckeditor/ckeditor5-core/tests/_utils/utils';
- import LivePosition from '../../src/model/liveposition';
- import { expectToThrowCKEditorError } from '@ckeditor/ckeditor5-utils/tests/_utils/utils';
- describe( 'Position', () => {
- let doc, model, root, otherRoot, p, ul, li1, li2, f, o, z, b, a, r, foz, bar;
- testUtils.createSinonSandbox();
- // root
- // |- p Before: [ 0 ] After: [ 1 ]
- // |- ul Before: [ 1 ] After: [ 2 ]
- // |- li Before: [ 1, 0 ] After: [ 1, 1 ]
- // | |- f Before: [ 1, 0, 0 ] After: [ 1, 0, 1 ]
- // | |- o Before: [ 1, 0, 1 ] After: [ 1, 0, 2 ]
- // | |- z Before: [ 1, 0, 2 ] After: [ 1, 0, 3 ]
- // |- li Before: [ 1, 1 ] After: [ 1, 2 ]
- // |- b Before: [ 1, 1, 0 ] After: [ 1, 1, 1 ]
- // |- a Before: [ 1, 1, 1 ] After: [ 1, 1, 2 ]
- // |- r Before: [ 1, 1, 2 ] After: [ 1, 1, 3 ]
- beforeEach( () => {
- model = new Model();
- doc = model.document;
- root = doc.createRoot();
- otherRoot = doc.createRoot( '$root', 'otherRoot' );
- foz = new Text( 'foz' );
- li1 = new Element( 'li', [], foz );
- f = new TextProxy( foz, 0, 1 );
- o = new TextProxy( foz, 1, 1 );
- z = new TextProxy( foz, 2, 1 );
- bar = new Text( 'bar' );
- li2 = new Element( 'li', [], bar );
- b = new TextProxy( bar, 0, 1 );
- a = new TextProxy( bar, 1, 1 );
- r = new TextProxy( bar, 2, 1 );
- ul = new Element( 'ul', [], [ li1, li2 ] );
- p = new Element( 'p' );
- root._insertChild( 0, [ p, ul ] );
- } );
- describe( 'constructor()', () => {
- it( 'should create a position with path and document', () => {
- const position = new Position( root, [ 0 ] );
- expect( position ).to.have.property( 'path' ).that.deep.equals( [ 0 ] );
- expect( position ).to.have.property( 'root' ).that.equals( root );
- } );
- it( 'should accept DocumentFragment as a root', () => {
- const frag = new DocumentFragment();
- const pos = new Position( frag, [ 0 ] );
- expect( pos ).to.have.property( 'root', frag );
- } );
- it( 'should accept detached Element as a root', () => {
- const el = new Element( 'p' );
- const pos = new Position( el, [ 0 ] );
- expect( pos ).to.have.property( 'root', el );
- expect( pos.path ).to.deep.equal( [ 0 ] );
- } );
- it( 'should normalize attached Element as a root', () => {
- const pos = new Position( li1, [ 0, 2 ] );
- expect( pos ).to.have.property( 'root', root );
- expect( pos.isEqual( Position._createAt( li1, 0, 2 ) ) );
- } );
- it( 'should normalize Element from a detached branch as a root', () => {
- const rootEl = new Element( 'p', null, [ new Element( 'a' ) ] );
- const elA = rootEl.getChild( 0 );
- const pos = new Position( elA, [ 0 ] );
- expect( pos ).to.have.property( 'root', rootEl );
- expect( pos.isEqual( Position._createAt( elA, 0 ) ) );
- } );
- it( 'should throw error if given path is incorrect', () => {
- expectToThrowCKEditorError( () => {
- new Position( root, {} ); // eslint-disable-line no-new
- }, /model-position-path-incorrect-format/, model );
- expectToThrowCKEditorError( () => {
- new Position( root, [] ); // eslint-disable-line no-new
- }, /model-position-path-incorrect-format/, model );
- } );
- it( 'should throw error if given root is invalid', () => {
- expectToThrowCKEditorError( () => {
- new Position( new Text( 'a' ) ); // eslint-disable-line no-new
- }, /model-position-root-invalid/ );
- expect( () => {
- new Position(); // eslint-disable-line no-new
- } ).to.throw();
- } );
- } );
- describe( 'static creators', () => {
- describe( '_createAt()', () => {
- it( 'should throw if no offset is passed', () => {
- expectToThrowCKEditorError( () => {
- Position._createAt( ul );
- }, /model-createPositionAt-offset-required/, model );
- } );
- it( 'should create positions from positions', () => {
- const position = Position._createAt( ul, 0 );
- const positionCopy = Position._createAt( position );
- expect( positionCopy ).to.have.property( 'path' ).that.deep.equals( [ 1, 0 ] );
- expect( positionCopy ).to.have.property( 'root' ).that.equals( position.root );
- expect( positionCopy ).to.not.equal( position );
- } );
- it( 'should create positions from LivePosition', () => {
- const position = new LivePosition( root, [ 0, 0 ] );
- const created = Position._createAt( position );
- expect( created.isEqual( position ) ).to.be.true;
- expect( created ).to.not.be.equal( position );
- expect( created ).to.be.instanceof( Position );
- expect( created ).to.not.be.instanceof( LivePosition );
- } );
- it( 'should create positions from node and offset', () => {
- expect( Position._createAt( root, 0 ) ).to.have.property( 'path' ).that.deep.equals( [ 0 ] );
- expect( Position._createAt( root, 1 ) ).to.have.property( 'path' ).that.deep.equals( [ 1 ] );
- expect( Position._createAt( root, 2 ) ).to.have.property( 'path' ).that.deep.equals( [ 2 ] );
- expect( Position._createAt( p, 0 ) ).to.have.property( 'path' ).that.deep.equals( [ 0, 0 ] );
- expect( Position._createAt( ul, 0 ) ).to.have.property( 'path' ).that.deep.equals( [ 1, 0 ] );
- expect( Position._createAt( ul, 1 ) ).to.have.property( 'path' ).that.deep.equals( [ 1, 1 ] );
- expect( Position._createAt( ul, 2 ) ).to.have.property( 'path' ).that.deep.equals( [ 1, 2 ] );
- expect( Position._createAt( li1, 0 ) ).to.have.property( 'path' ).that.deep.equals( [ 1, 0, 0 ] );
- expect( Position._createAt( li1, 1 ) ).to.have.property( 'path' ).that.deep.equals( [ 1, 0, 1 ] );
- expect( Position._createAt( li1, 2 ) ).to.have.property( 'path' ).that.deep.equals( [ 1, 0, 2 ] );
- expect( Position._createAt( li1, 3 ) ).to.have.property( 'path' ).that.deep.equals( [ 1, 0, 3 ] );
- } );
- it( 'should create positions from node and flag', () => {
- expect( Position._createAt( root, 'end' ) ).to.have.property( 'path' ).that.deep.equals( [ 2 ] );
- expect( Position._createAt( p, 'before' ) ).to.have.property( 'path' ).that.deep.equals( [ 0 ] );
- expect( Position._createAt( a, 'before' ) ).to.have.property( 'path' ).that.deep.equals( [ 1, 1, 1 ] );
- expect( Position._createAt( p, 'after' ) ).to.have.property( 'path' ).that.deep.equals( [ 1 ] );
- expect( Position._createAt( a, 'after' ) ).to.have.property( 'path' ).that.deep.equals( [ 1, 1, 2 ] );
- expect( Position._createAt( ul, 'end' ) ).to.have.property( 'path' ).that.deep.equals( [ 1, 2 ] );
- } );
- it( 'should set stickiness (if not cloning other position)', () => {
- expect( Position._createAt( root, 'end', 'toPrevious' ) ).to.have.property( 'stickiness' ).that.equals( 'toPrevious' );
- } );
- it( 'throws when parent is not an element', () => {
- expectToThrowCKEditorError( () => {
- Position._createAt( b, 0 );
- }, /^model-position-parent-incorrect/, model );
- } );
- it( 'works with a doc frag', () => {
- const frag = new DocumentFragment();
- expect( Position._createAt( frag, 0 ) ).to.have.property( 'root', frag );
- } );
- } );
- describe( '_createBefore()', () => {
- it( 'should create positions before elements', () => {
- expect( Position._createBefore( p ) ).to.have.property( 'path' ).that.deep.equals( [ 0 ] );
- expect( Position._createBefore( ul ) ).to.have.property( 'path' ).that.deep.equals( [ 1 ] );
- expect( Position._createBefore( li1 ) ).to.have.property( 'path' ).that.deep.equals( [ 1, 0 ] );
- expect( Position._createBefore( f ) ).to.have.property( 'path' ).that.deep.equals( [ 1, 0, 0 ] );
- expect( Position._createBefore( o ) ).to.have.property( 'path' ).that.deep.equals( [ 1, 0, 1 ] );
- expect( Position._createBefore( z ) ).to.have.property( 'path' ).that.deep.equals( [ 1, 0, 2 ] );
- expect( Position._createBefore( li2 ) ).to.have.property( 'path' ).that.deep.equals( [ 1, 1 ] );
- expect( Position._createBefore( b ) ).to.have.property( 'path' ).that.deep.equals( [ 1, 1, 0 ] );
- expect( Position._createBefore( a ) ).to.have.property( 'path' ).that.deep.equals( [ 1, 1, 1 ] );
- expect( Position._createBefore( r ) ).to.have.property( 'path' ).that.deep.equals( [ 1, 1, 2 ] );
- } );
- it( 'should set stickiness', () => {
- expect( Position._createBefore( p, 'toPrevious' ) ).to.have.property( 'stickiness' ).that.equals( 'toPrevious' );
- } );
- it( 'should throw error if one try to create positions before root', () => {
- expectToThrowCKEditorError( () => {
- Position._createBefore( root );
- }, /model-position-before-root/, model );
- } );
- } );
- describe( '_createAfter()', () => {
- it( 'should create positions after elements', () => {
- expect( Position._createAfter( p ) ).to.have.property( 'path' ).that.deep.equals( [ 1 ] );
- expect( Position._createAfter( ul ) ).to.have.property( 'path' ).that.deep.equals( [ 2 ] );
- expect( Position._createAfter( li1 ) ).to.have.property( 'path' ).that.deep.equals( [ 1, 1 ] );
- expect( Position._createAfter( f ) ).to.have.property( 'path' ).that.deep.equals( [ 1, 0, 1 ] );
- expect( Position._createAfter( o ) ).to.have.property( 'path' ).that.deep.equals( [ 1, 0, 2 ] );
- expect( Position._createAfter( z ) ).to.have.property( 'path' ).that.deep.equals( [ 1, 0, 3 ] );
- expect( Position._createAfter( li2 ) ).to.have.property( 'path' ).that.deep.equals( [ 1, 2 ] );
- expect( Position._createAfter( b ) ).to.have.property( 'path' ).that.deep.equals( [ 1, 1, 1 ] );
- expect( Position._createAfter( a ) ).to.have.property( 'path' ).that.deep.equals( [ 1, 1, 2 ] );
- expect( Position._createAfter( r ) ).to.have.property( 'path' ).that.deep.equals( [ 1, 1, 3 ] );
- } );
- it( 'should set stickiness', () => {
- expect( Position._createAfter( p, 'toPrevious' ) ).to.have.property( 'stickiness' ).that.equals( 'toPrevious' );
- } );
- it( 'should throw error if one try to make positions after root', () => {
- expectToThrowCKEditorError( () => {
- Position._createAfter( root );
- }, /model-position-after-root/, model );
- } );
- } );
- } );
- describe( '#parent', () => {
- it( 'should have parent', () => {
- expect( new Position( root, [ 0 ] ) ).to.have.property( 'parent' ).that.equals( root );
- expect( new Position( root, [ 1 ] ) ).to.have.property( 'parent' ).that.equals( root );
- expect( new Position( root, [ 2 ] ) ).to.have.property( 'parent' ).that.equals( root );
- expect( new Position( root, [ 0, 0 ] ) ).to.have.property( 'parent' ).that.equals( p );
- expect( new Position( root, [ 1, 0 ] ) ).to.have.property( 'parent' ).that.equals( ul );
- expect( new Position( root, [ 1, 1 ] ) ).to.have.property( 'parent' ).that.equals( ul );
- expect( new Position( root, [ 1, 2 ] ) ).to.have.property( 'parent' ).that.equals( ul );
- expect( new Position( root, [ 1, 0, 0 ] ) ).to.have.property( 'parent' ).that.equals( li1 );
- expect( new Position( root, [ 1, 0, 1 ] ) ).to.have.property( 'parent' ).that.equals( li1 );
- expect( new Position( root, [ 1, 0, 2 ] ) ).to.have.property( 'parent' ).that.equals( li1 );
- expect( new Position( root, [ 1, 0, 3 ] ) ).to.have.property( 'parent' ).that.equals( li1 );
- } );
- it( 'should work with positions rooted in document fragment', () => {
- const docFrag = new DocumentFragment();
- expect( new Position( docFrag, [ 0 ] ) ).to.have.property( 'parent' ).that.equals( docFrag );
- } );
- it( 'should throw when path out of bounds', () => {
- const position = new Position( root, [ 0, 0 ] );
- expect( position ).to.have.property( 'parent' ).that.equals( p );
- root._removeChildren( 0, 2 );
- expectToThrowCKEditorError( () => {
- position.parent;
- }, /^model-position-path-incorrect:/, position, { position } );
- } );
- it( 'should throw when based on a path, the parent would be a text node', () => {
- // 1,0,0 points at: <p></p><ul><li>^foz</li>...
- const position = new Position( root, [ 1, 0, 0, 0 ] );
- expectToThrowCKEditorError( () => {
- position.parent;
- }, /^model-position-path-incorrect:/, position, { position } );
- } );
- } );
- describe( '#offset', () => {
- it( 'should have offset', () => {
- expect( new Position( root, [ 0 ] ) ).to.have.property( 'offset' ).that.equals( 0 );
- expect( new Position( root, [ 1 ] ) ).to.have.property( 'offset' ).that.equals( 1 );
- expect( new Position( root, [ 2 ] ) ).to.have.property( 'offset' ).that.equals( 2 );
- expect( new Position( root, [ 0, 0 ] ) ).to.have.property( 'offset' ).that.equals( 0 );
- expect( new Position( root, [ 1, 0 ] ) ).to.have.property( 'offset' ).that.equals( 0 );
- expect( new Position( root, [ 1, 1 ] ) ).to.have.property( 'offset' ).that.equals( 1 );
- expect( new Position( root, [ 1, 2 ] ) ).to.have.property( 'offset' ).that.equals( 2 );
- expect( new Position( root, [ 1, 0, 0 ] ) ).to.have.property( 'offset' ).that.equals( 0 );
- expect( new Position( root, [ 1, 0, 1 ] ) ).to.have.property( 'offset' ).that.equals( 1 );
- expect( new Position( root, [ 1, 0, 2 ] ) ).to.have.property( 'offset' ).that.equals( 2 );
- expect( new Position( root, [ 1, 0, 3 ] ) ).to.have.property( 'offset' ).that.equals( 3 );
- } );
- } );
- describe( '#index', () => {
- it( 'should have index', () => {
- expect( new Position( root, [ 0 ] ) ).to.have.property( 'index' ).that.equals( 0 );
- expect( new Position( root, [ 1 ] ) ).to.have.property( 'index' ).that.equals( 1 );
- expect( new Position( root, [ 2 ] ) ).to.have.property( 'index' ).that.equals( 2 );
- expect( new Position( root, [ 0, 0 ] ) ).to.have.property( 'index' ).that.equals( 0 );
- expect( new Position( root, [ 1, 0 ] ) ).to.have.property( 'index' ).that.equals( 0 );
- expect( new Position( root, [ 1, 1 ] ) ).to.have.property( 'index' ).that.equals( 1 );
- expect( new Position( root, [ 1, 2 ] ) ).to.have.property( 'index' ).that.equals( 2 );
- expect( new Position( root, [ 1, 0, 0 ] ) ).to.have.property( 'index' ).that.equals( 0 );
- expect( new Position( root, [ 1, 0, 1 ] ) ).to.have.property( 'index' ).that.equals( 0 );
- expect( new Position( root, [ 1, 0, 2 ] ) ).to.have.property( 'index' ).that.equals( 0 );
- expect( new Position( root, [ 1, 0, 3 ] ) ).to.have.property( 'index' ).that.equals( 1 );
- } );
- it( 'should be able to set offset', () => {
- const position = new Position( root, [ 1, 0, 2 ] );
- position.offset = 4;
- expect( position.offset ).to.equal( 4 );
- expect( position.path ).to.deep.equal( [ 1, 0, 4 ] );
- } );
- it( 'should throw when path out of bounds', () => {
- const position = new Position( root, [ 0, 0 ] );
- expect( position ).to.have.property( 'index' ).that.equals( 0 );
- root._removeChildren( 0, 2 );
- expectToThrowCKEditorError( () => {
- position.index;
- }, /^model-position-path-incorrect:/, position, { position } );
- } );
- } );
- describe( '#nodeBefore', () => {
- it( 'should have nodeBefore if it is not inside a text node', () => {
- expect( new Position( root, [ 0 ] ).nodeBefore ).to.be.null;
- expect( new Position( root, [ 1 ] ).nodeBefore ).to.equal( p );
- expect( new Position( root, [ 2 ] ).nodeBefore ).to.equal( ul );
- expect( new Position( root, [ 0, 0 ] ).nodeBefore ).to.null;
- expect( new Position( root, [ 1, 0 ] ).nodeBefore ).to.be.null;
- expect( new Position( root, [ 1, 1 ] ).nodeBefore ).to.equal( li1 );
- expect( new Position( root, [ 1, 2 ] ).nodeBefore ).to.equal( li2 );
- expect( new Position( root, [ 1, 0, 0 ] ).nodeBefore ).to.be.null;
- expect( new Position( root, [ 1, 0, 1 ] ).nodeBefore ).to.be.null;
- expect( new Position( root, [ 1, 0, 2 ] ).nodeBefore ).to.be.null;
- expect( new Position( root, [ 1, 0, 3 ] ).nodeBefore.data ).to.equal( 'foz' );
- } );
- it( 'should throw when path out of bounds', () => {
- const position = new Position( root, [ 1, 1 ] );
- expect( position ).to.have.property( 'nodeBefore' ).that.equals( li1 );
- root._removeChildren( 0, 2 );
- expectToThrowCKEditorError( () => {
- position.nodeBefore;
- }, /^model-nodelist-offset-out-of-bounds:/, position );
- } );
- } );
- describe( '#nodeAfter', () => {
- it( 'should have nodeAfter if it is not inside a text node', () => {
- expect( new Position( root, [ 0 ] ).nodeAfter ).to.equal( p );
- expect( new Position( root, [ 1 ] ).nodeAfter ).to.equal( ul );
- expect( new Position( root, [ 2 ] ).nodeAfter ).to.be.null;
- expect( new Position( root, [ 0, 0 ] ).nodeAfter ).to.be.null;
- expect( new Position( root, [ 1, 0 ] ).nodeAfter ).to.equal( li1 );
- expect( new Position( root, [ 1, 1 ] ).nodeAfter ).to.equal( li2 );
- expect( new Position( root, [ 1, 2 ] ).nodeAfter ).to.be.null;
- expect( new Position( root, [ 1, 0, 0 ] ).nodeAfter.data ).to.equal( 'foz' );
- expect( new Position( root, [ 1, 0, 1 ] ).nodeAfter ).to.be.null;
- expect( new Position( root, [ 1, 0, 2 ] ).nodeAfter ).to.be.null;
- expect( new Position( root, [ 1, 0, 3 ] ).nodeAfter ).to.be.null;
- } );
- it( 'should throw when path out of bounds', () => {
- const position = new Position( root, [ 1, 1 ] );
- expect( position ).to.have.property( 'nodeAfter' ).that.equals( li2 );
- root._removeChildren( 0, 2 );
- expectToThrowCKEditorError( () => {
- position.nodeAfter;
- }, /^model-nodelist-offset-out-of-bounds:/, position );
- } );
- } );
- describe( '#textNode', () => {
- it( 'should have a text node property if it is in text node', () => {
- expect( new Position( root, [ 0 ] ).textNode ).to.be.null;
- expect( new Position( root, [ 1 ] ).textNode ).to.be.null;
- expect( new Position( root, [ 2 ] ).textNode ).to.be.null;
- expect( new Position( root, [ 0, 0 ] ).textNode ).to.be.null;
- expect( new Position( root, [ 1, 0 ] ).textNode ).to.be.null;
- expect( new Position( root, [ 1, 1 ] ).textNode ).to.be.null;
- expect( new Position( root, [ 1, 2 ] ).textNode ).to.be.null;
- expect( new Position( root, [ 1, 0, 0 ] ).textNode ).to.be.null;
- expect( new Position( root, [ 1, 0, 1 ] ).textNode ).to.equal( foz );
- expect( new Position( root, [ 1, 0, 2 ] ).textNode ).to.equal( foz );
- expect( new Position( root, [ 1, 0, 3 ] ).textNode ).to.be.null;
- expect( new Position( root, [ 1, 1, 0 ] ).textNode ).to.be.null;
- expect( new Position( root, [ 1, 1, 1 ] ).textNode ).to.equal( bar );
- expect( new Position( root, [ 1, 1, 2 ] ).textNode ).to.equal( bar );
- expect( new Position( root, [ 1, 1, 3 ] ).textNode ).to.be.null;
- } );
- it( 'should throw when path out of bounds', () => {
- const position = new Position( root, [ 1, 0, 1 ] );
- expect( position ).to.have.property( 'textNode' ).that.equals( foz );
- root._removeChildren( 0, 2 );
- expectToThrowCKEditorError( () => {
- position.textNode;
- }, /^model-nodelist-offset-out-of-bounds:/, position );
- } );
- } );
- it( 'should have proper parent path', () => {
- const position = new Position( root, [ 1, 2, 3 ] );
- expect( position.getParentPath() ).to.deep.equal( [ 1, 2 ] );
- } );
- describe( 'isBefore()', () => {
- it( 'should return true if given position has same root and is before this position', () => {
- const position = new Position( root, [ 1, 1, 2 ] );
- const beforePosition = new Position( root, [ 1, 0 ] );
- expect( position.isAfter( beforePosition ) ).to.be.true;
- } );
- it( 'should return false if given position has same root and is not before this position', () => {
- const position = new Position( root, [ 1, 1, 2 ] );
- const afterPosition = new Position( root, [ 1, 2 ] );
- expect( position.isAfter( afterPosition ) ).to.be.false;
- } );
- it( 'should return false if given position has different root', () => {
- const position = new Position( root, [ 1, 1, 2 ] );
- const differentPosition = new Position( otherRoot, [ 1, 0 ] );
- expect( position.isAfter( differentPosition ) ).to.be.false;
- } );
- } );
- describe( 'isEqual()', () => {
- it( 'should return true if given position has same path and root', () => {
- const position = new Position( root, [ 1, 1, 2 ] );
- const samePosition = new Position( root, [ 1, 1, 2 ] );
- expect( position.isEqual( samePosition ) ).to.be.true;
- } );
- it( 'should return false if given position has different path', () => {
- const position = new Position( root, [ 1, 1, 1 ] );
- const differentPosition = new Position( root, [ 1, 2, 2 ] );
- expect( position.isEqual( differentPosition ) ).to.be.false;
- } );
- it( 'should return false if given position has different root', () => {
- const position = new Position( root, [ 1, 1, 1 ] );
- const differentPosition = new Position( otherRoot, [ 1, 1, 1 ] );
- expect( position.isEqual( differentPosition ) ).to.be.false;
- } );
- } );
- describe( 'isAfter()', () => {
- it( 'should return true if given position has same root and is after this position', () => {
- const position = new Position( root, [ 1, 1, 2 ] );
- const afterPosition = new Position( root, [ 1, 2 ] );
- expect( position.isBefore( afterPosition ) ).to.be.true;
- } );
- it( 'should return false if given position has same root and is not after this position', () => {
- const position = new Position( root, [ 1, 1, 2 ] );
- const beforePosition = new Position( root, [ 1, 0 ] );
- expect( position.isBefore( beforePosition ) ).to.be.false;
- } );
- it( 'should return false if given position has different root', () => {
- const position = new Position( root, [ 1, 1, 2 ] );
- const differentPosition = new Position( otherRoot, [ 1, 2 ] );
- expect( position.isBefore( differentPosition ) ).to.be.false;
- } );
- } );
- describe( 'isTouching()', () => {
- it( 'should return true if positions are same', () => {
- const position = new Position( root, [ 1, 1, 1 ] );
- const result = position.isTouching( new Position( root, [ 1, 1, 1 ] ) );
- expect( result ).to.be.true;
- } );
- it( 'should return true if given position is in next node and there are no whole nodes before it', () => {
- const positionA = new Position( root, [ 1 ] );
- const positionB = new Position( root, [ 1, 0, 0 ] );
- expect( positionA.isTouching( positionB ) ).to.be.true;
- expect( positionB.isTouching( positionA ) ).to.be.true;
- } );
- it( 'should return true if given position is in previous node and there are no whole nodes after it', () => {
- const positionA = new Position( root, [ 2 ] );
- const positionB = new Position( root, [ 1, 1, 3 ] );
- expect( positionA.isTouching( positionB ) ).to.be.true;
- expect( positionB.isTouching( positionA ) ).to.be.true;
- } );
- it( 'should return true if positions are in different sub-trees but there are no whole nodes between them', () => {
- const positionA = new Position( root, [ 1, 0, 3 ] );
- const positionB = new Position( root, [ 1, 1, 0 ] );
- expect( positionA.isTouching( positionB ) ).to.be.true;
- expect( positionB.isTouching( positionA ) ).to.be.true;
- } );
- it( 'should return false if there are whole nodes between positions', () => {
- const positionA = new Position( root, [ 2 ] );
- const positionB = new Position( root, [ 1, 0, 3 ] );
- expect( positionA.isTouching( positionB ) ).to.be.false;
- expect( positionB.isTouching( positionA ) ).to.be.false;
- } );
- it( 'should return false if there are whole nodes between positions (same depth)', () => {
- const positionA = new Position( root, [ 1, 0 ] );
- const positionB = new Position( root, [ 1, 1 ] );
- expect( positionA.isTouching( positionB ) ).to.be.false;
- expect( positionB.isTouching( positionA ) ).to.be.false;
- } );
- it( 'should return false if there are whole nodes between positions', () => {
- const positionA = new Position( root, [ 1, 0, 3 ] );
- const positionB = new Position( root, [ 1, 1, 1 ] );
- expect( positionA.isTouching( positionB ) ).to.be.false;
- expect( positionB.isTouching( positionA ) ).to.be.false;
- } );
- it( 'should return false if positions are in different roots', () => {
- const positionA = new Position( root, [ 1, 0, 3 ] );
- const positionB = new Position( otherRoot, [ 1, 1, 0 ] );
- expect( positionA.isTouching( positionB ) ).to.be.false;
- expect( positionB.isTouching( positionA ) ).to.be.false;
- } );
- } );
- describe( 'hasSameParentAs()', () => {
- it( 'should return false if positions have different roots', () => {
- const posA = new Position( root, [ 1, 2 ] );
- const posB = new Position( doc.graveyard, [ 1, 0 ] );
- expect( posA.hasSameParentAs( posB ) ).to.be.false;
- expect( posB.hasSameParentAs( posA ) ).to.be.false;
- } );
- it( 'should return false if positions have different parents', () => {
- const posA = new Position( root, [ 0, 1 ] );
- const posB = new Position( root, [ 1, 1 ] );
- expect( posA.hasSameParentAs( posB ) ).to.be.false;
- expect( posB.hasSameParentAs( posA ) ).to.be.false;
- } );
- it( 'should return true if positions have same parent', () => {
- const posA = new Position( root, [ 0, 4, 8 ] );
- const posB = new Position( root, [ 0, 4, 2 ] );
- expect( posA.hasSameParentAs( posB ) ).to.be.true;
- expect( posB.hasSameParentAs( posA ) ).to.be.true;
- } );
- } );
- describe( 'isAtStart()', () => {
- it( 'should return true if position is at the beginning of its parent', () => {
- expect( new Position( root, [ 0 ] ).isAtStart ).to.be.true;
- expect( new Position( root, [ 1 ] ).isAtStart ).to.be.false;
- } );
- } );
- describe( 'isAtEnd()', () => {
- it( 'should return true if position is at the end of its parent', () => {
- expect( new Position( root, [ root.maxOffset ] ).isAtEnd ).to.be.true;
- expect( new Position( root, [ 0 ] ).isAtEnd ).to.be.false;
- } );
- } );
- describe( 'getAncestors()', () => {
- it( 'should return position parent element and it\'s ancestors', () => {
- expect( new Position( root, [ 1, 1, 1 ] ).getAncestors() ).to.deep.equal( [ root, ul, li2 ] );
- } );
- it( 'should return DocumentFragment if position is directly in document fragment', () => {
- const docFrag = new DocumentFragment();
- expect( new Position( docFrag, [ 0 ] ).getAncestors() ).to.deep.equal( [ docFrag ] );
- } );
- } );
- describe( 'getCommonPath()', () => {
- it( 'returns the common part', () => {
- const pos1 = new Position( root, [ 1, 0, 0 ] );
- const pos2 = new Position( root, [ 1, 0, 1 ] );
- expect( pos1.getCommonPath( pos2 ) ).to.deep.equal( [ 1, 0 ] );
- } );
- it( 'returns the common part when paths are equal', () => {
- const pos1 = new Position( root, [ 1, 0, 1 ] );
- const pos2 = new Position( root, [ 1, 0, 1 ] );
- const commonPath = pos1.getCommonPath( pos2 );
- // Ensure that we have a clone
- expect( commonPath ).to.not.equal( pos1.path );
- expect( commonPath ).to.not.equal( pos2.path );
- expect( commonPath ).to.deep.equal( [ 1, 0, 1 ] );
- } );
- it( 'returns empty array when paths totally differ', () => {
- const pos1 = new Position( root, [ 1, 1 ] );
- const pos2 = new Position( root, [ 0 ] );
- expect( pos1.getCommonPath( pos2 ) ).to.deep.equal( [] );
- } );
- it( 'returns empty array when roots differ, but paths are the same', () => {
- const pos1 = new Position( root, [ 1, 1 ] );
- const pos2 = new Position( otherRoot, [ 1, 1 ] );
- expect( pos1.getCommonPath( pos2 ) ).to.deep.equal( [] );
- } );
- } );
- describe( 'compareWith()', () => {
- it( 'should return same if positions are same', () => {
- const position = new Position( root, [ 1, 2, 3 ] );
- const compared = new Position( root, [ 1, 2, 3 ] );
- expect( position.compareWith( compared ) ).to.equal( 'same' );
- } );
- it( 'should return before if the position is before compared one', () => {
- const position = new Position( root, [ 1, 2, 3 ] );
- const compared = new Position( root, [ 1, 3 ] );
- expect( position.compareWith( compared ) ).to.equal( 'before' );
- } );
- it( 'should return after if the position is after compared one', () => {
- const position = new Position( root, [ 1, 2, 3, 4 ] );
- const compared = new Position( root, [ 1, 2, 3 ] );
- expect( position.compareWith( compared ) ).to.equal( 'after' );
- } );
- it( 'should return different if positions are in different roots', () => {
- const position = new Position( root, [ 1, 2, 3 ] );
- const compared = new Position( otherRoot, [ 1, 2, 3 ] );
- expect( position.compareWith( compared ) ).to.equal( 'different' );
- } );
- } );
- describe( 'getLastMatchingPosition()', () => {
- it( 'should skip forward', () => {
- let position = new Position( root, [ 1, 0, 0 ] );
- position = position.getLastMatchingPosition( value => value.type == 'text' );
- expect( position.path ).to.deep.equal( [ 1, 0, 3 ] );
- } );
- it( 'should skip backward', () => {
- let position = new Position( root, [ 1, 0, 2 ] );
- position = position.getLastMatchingPosition( value => value.type == 'text', { direction: 'backward' } );
- expect( position.path ).to.deep.equal( [ 1, 0, 0 ] );
- } );
- } );
- describe( 'clone()', () => {
- it( 'should return new instance of position', () => {
- const position = Position._createAt( ul, 0 );
- const positionCopy = position.clone();
- expect( positionCopy ).to.have.property( 'path' ).that.deep.equals( [ 1, 0 ] );
- expect( positionCopy ).to.have.property( 'root' ).that.equals( position.root );
- expect( positionCopy ).to.not.equal( position );
- } );
- } );
- // Note: We don't create model element structure in these tests because this method
- // is used by OT so it must not check the structure.
- describe( 'getTransformedByOperation()', () => {
- let pos;
- beforeEach( () => {
- pos = new Position( root, [ 3, 2 ] );
- } );
- describe( 'by AttributeOperation', () => {
- it( 'nothing should change', () => {
- const range = new Range( Position._createAt( root, 1 ), Position._createAt( root, 6 ) );
- const op = new AttributeOperation( range, 'key', true, false, 1 );
- const transformed = pos.getTransformedByOperation( op );
- expect( transformed.path ).to.deep.equal( [ 3, 2 ] );
- } );
- } );
- describe( 'by InsertOperation', () => {
- it( 'should use _getTransformedByInsertion', () => {
- sinon.spy( pos, '_getTransformedByInsertion' );
- const op = new InsertOperation( new Position( root, [ 1 ] ), [ new Element( 'paragraph' ) ], 1 );
- pos.getTransformedByOperation( op );
- expect( pos._getTransformedByInsertion.calledWithExactly( op.position, op.howMany ) ).to.be.true;
- } );
- } );
- describe( 'by MarkerOperation', () => {
- it( 'nothing should change', () => {
- const op = new MarkerOperation(
- 'marker', null, new Range( Position._createAt( root, 1 ), Position._createAt( root, 6 ) ), model.markers, true, 1
- );
- const transformed = pos.getTransformedByOperation( op );
- expect( transformed.path ).to.deep.equal( [ 3, 2 ] );
- } );
- } );
- describe( 'by MoveOperation', () => {
- it( 'should use _getTransformedByMove', () => {
- sinon.spy( pos, '_getTransformedByMove' );
- const op = new MoveOperation( new Position( root, [ 1 ] ), 2, new Position( root, [ 5 ] ), 1 );
- pos.getTransformedByOperation( op );
- expect( pos._getTransformedByMove.calledWithExactly( op.sourcePosition, op.targetPosition, op.howMany ) ).to.be.true;
- } );
- } );
- describe( 'by RenameOperation', () => {
- it( 'nothing should change', () => {
- const op = new RenameOperation( new Position( root, [ 3 ] ), 'old', 'new', 1 );
- const transformed = pos.getTransformedByOperation( op );
- expect( transformed.path ).to.deep.equal( [ 3, 2 ] );
- } );
- } );
- describe( 'by SplitOperation', () => {
- it( 'transformed position is at the split position', () => {
- const op = new SplitOperation( new Position( root, [ 3, 2 ] ), 3, null, 1 );
- const transformed = pos.getTransformedByOperation( op );
- expect( transformed.path ).to.deep.equal( [ 3, 2 ] );
- } );
- it( 'transformed position is after the split position', () => {
- const op = new SplitOperation( new Position( root, [ 3, 1 ] ), 3, null, 1 );
- const transformed = pos.getTransformedByOperation( op );
- expect( transformed.path ).to.deep.equal( [ 4, 1 ] );
- } );
- it( 'transformed position is before the split position', () => {
- const op = new SplitOperation( new Position( root, [ 3, 3 ] ), 3, null, 1 );
- const transformed = pos.getTransformedByOperation( op );
- expect( transformed.path ).to.deep.equal( [ 3, 2 ] );
- } );
- it( 'transformed position is after the split element', () => {
- const op = new SplitOperation( new Position( root, [ 3, 1, 5 ] ), 3, null, 1 );
- const transformed = pos.getTransformedByOperation( op );
- expect( transformed.path ).to.deep.equal( [ 3, 3 ] );
- } );
- it( 'transformed position is before the split element', () => {
- const op = new SplitOperation( new Position( root, [ 3, 3, 5 ] ), 3, null, 1 );
- const transformed = pos.getTransformedByOperation( op );
- expect( transformed.path ).to.deep.equal( [ 3, 2 ] );
- } );
- it( 'transformed position is in graveyard and split position uses graveyard element', () => {
- pos = new Position( doc.graveyard, [ 1 ] );
- const op = new SplitOperation( new Position( root, [ 3, 2 ] ), 3, new Position( doc.graveyard, [ 0 ] ), 1 );
- const transformed = pos.getTransformedByOperation( op );
- expect( transformed.path ).to.deep.equal( [ 0 ] );
- } );
- } );
- describe( 'by MergeOperation', () => {
- it( 'position is inside merged element', () => {
- const op = new MergeOperation(
- new Position( root, [ 3, 0 ] ), 3, new Position( root, [ 2, 2 ] ), new Position( doc.graveyard, [ 0 ] ), 1
- );
- const transformed = pos.getTransformedByOperation( op );
- expect( transformed.path ).to.deep.equal( [ 2, 4 ] );
- } );
- it( 'position is inside merged-to element', () => {
- const op = new MergeOperation(
- new Position( root, [ 4, 0 ] ), 3, new Position( root, [ 3, 5 ] ), new Position( doc.graveyard, [ 0 ] ), 1
- );
- const transformed = pos.getTransformedByOperation( op );
- expect( transformed.path ).to.deep.equal( [ 3, 2 ] );
- } );
- it( 'position is before merged element', () => {
- const op = new MergeOperation(
- new Position( root, [ 3, 2, 0 ] ), 3, new Position( root, [ 3, 1, 2 ] ), new Position( doc.graveyard, [ 0 ] ), 1
- );
- const transformed = pos.getTransformedByOperation( op );
- expect( transformed.path ).to.deep.equal( [ 3, 2 ] );
- } );
- it( 'position is after merged element', () => {
- const op = new MergeOperation(
- new Position( root, [ 3, 1, 0 ] ), 3, new Position( root, [ 3, 0, 2 ] ), new Position( doc.graveyard, [ 0 ] ), 1
- );
- const transformed = pos.getTransformedByOperation( op );
- expect( transformed.path ).to.deep.equal( [ 3, 1 ] );
- } );
- it( 'position is inside graveyard', () => {
- pos = new Position( doc.graveyard, [ 0 ] );
- const op = new MergeOperation(
- new Position( root, [ 3, 1, 0 ] ), 3, new Position( root, [ 3, 0, 2 ] ), new Position( doc.graveyard, [ 0 ] ), 1
- );
- const transformed = pos.getTransformedByOperation( op );
- expect( transformed.path ).to.deep.equal( [ 1 ] );
- } );
- it( 'merge source position is before merge target position and position is in merged element', () => {
- const op = new MergeOperation(
- new Position( root, [ 3, 0 ] ), 3, new Position( root, [ 4, 5 ] ), new Position( doc.graveyard, [ 0 ] ), 1
- );
- const transformed = pos.getTransformedByOperation( op );
- expect( transformed.path ).to.deep.equal( [ 3, 7 ] );
- } );
- } );
- } );
- describe( '_getTransformedByInsertion()', () => {
- it( 'should return a new Position instance', () => {
- const position = new Position( root, [ 0 ] );
- const transformed = position._getTransformedByInsertion( new Position( root, [ 2 ] ), 4 );
- expect( transformed ).not.to.equal( position );
- expect( transformed ).to.be.instanceof( Position );
- } );
- it( 'should increment offset if insertion is in the same parent and closer offset', () => {
- const position = new Position( root, [ 1, 2, 3 ] );
- const transformed = position._getTransformedByInsertion( new Position( root, [ 1, 2, 2 ] ), 2 );
- expect( transformed.offset ).to.equal( 5 );
- } );
- it( 'should not increment offset if insertion position is in different root', () => {
- const position = new Position( root, [ 1, 2, 3 ] );
- const transformed = position._getTransformedByInsertion( new Position( otherRoot, [ 1, 2, 2 ] ), 2 );
- expect( transformed.offset ).to.equal( 3 );
- } );
- it( 'should increment offset if insertion is in the same parent and the same offset', () => {
- const position = new Position( root, [ 1, 2, 3 ] );
- const transformed = position._getTransformedByInsertion( new Position( root, [ 1, 2, 3 ] ), 2 );
- expect( transformed.offset ).to.equal( 5 );
- } );
- it( 'should increment offset if insertion is in the same parent and the same offset and it is inserted before', () => {
- const position = new Position( root, [ 1, 2, 3 ] );
- position.stickiness = 'toNext';
- const transformed = position._getTransformedByInsertion( new Position( root, [ 1, 2, 3 ] ), 2 );
- expect( transformed.offset ).to.equal( 5 );
- } );
- it( 'should not increment offset if insertion is in the same parent and further offset', () => {
- const position = new Position( root, [ 1, 2, 3 ] );
- const transformed = position._getTransformedByInsertion( new Position( root, [ 1, 2, 4 ] ), 2 );
- expect( transformed.offset ).to.equal( 3 );
- } );
- it( 'should update path if insertion position parent is a node from that path and offset is before next node on that path', () => {
- const position = new Position( root, [ 1, 2, 3 ] );
- const transformed = position._getTransformedByInsertion( new Position( root, [ 1, 2 ] ), 2 );
- expect( transformed.path ).to.deep.equal( [ 1, 4, 3 ] );
- } );
- it( 'should not update path if insertion position parent is a node from that path and offset is ' +
- 'after next node on that path', () => {
- const position = new Position( root, [ 1, 2, 3 ] );
- const transformed = position._getTransformedByInsertion( new Position( root, [ 1, 3 ] ), 2 );
- expect( transformed.path ).to.deep.equal( [ 1, 2, 3 ] );
- } );
- it( 'should not update if insertion is in different path', () => {
- const position = new Position( root, [ 1, 1 ] );
- const transformed = position._getTransformedByInsertion( new Position( root, [ 2, 0 ] ), 2 );
- expect( transformed.path ).to.deep.equal( [ 1, 1 ] );
- } );
- } );
- describe( '_getTransformedByDeletion()', () => {
- it( 'should return a new Position instance', () => {
- const position = new Position( root, [ 0 ] );
- const transformed = position._getTransformedByDeletion( new Position( root, [ 2 ] ), 4 );
- expect( transformed ).not.to.equal( position );
- expect( transformed ).to.be.instanceof( Position );
- } );
- it( 'should return null if original position is inside one of removed nodes', () => {
- const position = new Position( root, [ 1, 2 ] );
- const transformed = position._getTransformedByDeletion( new Position( root, [ 0 ] ), 2 );
- expect( transformed ).to.be.null;
- } );
- it( 'should decrement offset if deletion is in the same parent and closer offset', () => {
- const position = new Position( root, [ 1, 2, 7 ] );
- const transformed = position._getTransformedByDeletion( new Position( root, [ 1, 2, 2 ] ), 2 );
- expect( transformed.offset ).to.equal( 5 );
- } );
- it( 'should return null if original position is between removed nodes', () => {
- const position = new Position( root, [ 1, 2, 4 ] );
- const transformed = position._getTransformedByDeletion( new Position( root, [ 1, 2, 3 ] ), 5 );
- expect( transformed ).to.be.null;
- } );
- it( 'should not decrement offset if deletion position is in different root', () => {
- const position = new Position( root, [ 1, 2, 3 ] );
- const transformed = position._getTransformedByDeletion( new Position( otherRoot, [ 1, 2, 1 ] ), 2 );
- expect( transformed.offset ).to.equal( 3 );
- } );
- it( 'should not decrement offset if deletion is in the same parent and further offset', () => {
- const position = new Position( root, [ 1, 2, 3 ] );
- const transformed = position._getTransformedByDeletion( new Position( root, [ 1, 2, 4 ] ), 2 );
- expect( transformed.offset ).to.equal( 3 );
- } );
- it( 'should update path if deletion position parent is a node from that path and offset is before next node on that path', () => {
- const position = new Position( root, [ 1, 2, 3 ] );
- const transformed = position._getTransformedByDeletion( new Position( root, [ 1, 0 ] ), 2 );
- expect( transformed.path ).to.deep.equal( [ 1, 0, 3 ] );
- } );
- it( 'should not update path if deletion position parent is a node from that path and ' +
- 'offset is after next node on that path', () => {
- const position = new Position( root, [ 1, 2, 3 ] );
- const transformed = position._getTransformedByDeletion( new Position( root, [ 1, 3 ] ), 2 );
- expect( transformed.path ).to.deep.equal( [ 1, 2, 3 ] );
- } );
- } );
- describe( '_getTransformedByMove()', () => {
- it( 'should increment offset if a range was moved to the same parent and closer offset', () => {
- const position = new Position( root, [ 1, 2, 3 ] );
- const transformed = position._getTransformedByMove( new Position( root, [ 2 ] ), new Position( root, [ 1, 2, 0 ] ), 3, false );
- expect( transformed.path ).to.deep.equal( [ 1, 2, 6 ] );
- } );
- it( 'should decrement offset if a range was moved from the same parent and closer offset', () => {
- const position = new Position( root, [ 1, 2, 6 ] );
- const transformed = position._getTransformedByMove( new Position( root, [ 1, 2, 0 ] ), new Position( root, [ 2 ] ), 3, false );
- expect( transformed.path ).to.deep.equal( [ 1, 2, 3 ] );
- } );
- it( 'should decrement offset if position was at the end of a range and move was not sticky', () => {
- const position = new Position( root, [ 1, 2, 3 ] );
- const transformed = position._getTransformedByMove( new Position( root, [ 1, 2, 0 ] ), new Position( root, [ 2 ] ), 3, false );
- expect( transformed.path ).to.deep.equal( [ 1, 2, 0 ] );
- } );
- it( 'should update path if position was at the end of a range and move was sticky', () => {
- const position = new Position( root, [ 1, 2, 3 ] );
- position.stickiness = 'toPrevious';
- const transformed = position._getTransformedByMove( new Position( root, [ 1, 2, 0 ] ), new Position( root, [ 2 ] ), 3, false );
- expect( transformed.path ).to.deep.equal( [ 5 ] );
- } );
- it( 'should update path if a range contained this position', () => {
- const position = new Position( root, [ 1, 2, 3 ] );
- const transformed = position._getTransformedByMove( new Position( root, [ 1, 1 ] ), new Position( root, [ 2, 1 ] ), 3, false );
- expect( transformed.path ).to.deep.equal( [ 2, 2, 3 ] );
- } );
- it( 'should not update if targetPosition is equal to sourcePosition (because nothing is really moving)', () => {
- const position = new Position( root, [ 3 ] );
- const transformed = position._getTransformedByMove( new Position( root, [ 3 ] ), new Position( root, [ 3 ] ), 3, false );
- expect( transformed.path ).to.deep.equal( [ 3 ] );
- } );
- it( 'should update if position is before moved range and sticks to next node', () => {
- const position = new Position( root, [ 2, 1 ] );
- position.stickiness = 'toNext';
- const transformed = position._getTransformedByMove( new Position( root, [ 2, 1 ] ), new Position( root, [ 3, 3 ] ), 2, false );
- expect( transformed.path ).to.deep.equal( [ 3, 3 ] );
- } );
- } );
- describe( '_getCombined()', () => {
- it( 'should return correct combination of this and given positions', () => {
- const position = new Position( root, [ 1, 3, 4, 2 ] );
- const sourcePosition = new Position( root, [ 1, 1 ] );
- const targetPosition = new Position( root, [ 2, 5 ] );
- const combined = position._getCombined( sourcePosition, targetPosition );
- expect( combined.path ).to.deep.equal( [ 2, 7, 4, 2 ] );
- } );
- } );
- describe( 'getShiftedBy()', () => {
- it( 'should return a new instance of Position with offset changed by shift value', () => {
- const position = new Position( root, [ 1, 2, 3 ] );
- const shifted = position.getShiftedBy( 2 );
- expect( shifted ).to.be.instanceof( Position );
- expect( shifted ).to.not.equal( position );
- expect( shifted.path ).to.deep.equal( [ 1, 2, 5 ] );
- } );
- it( 'should accept negative values', () => {
- const position = new Position( root, [ 1, 2, 3 ] );
- const shifted = position.getShiftedBy( -2 );
- expect( shifted.path ).to.deep.equal( [ 1, 2, 1 ] );
- } );
- it( 'should not let setting offset lower than zero', () => {
- const position = new Position( root, [ 1, 2, 3 ] );
- const shifted = position.getShiftedBy( -7 );
- expect( shifted.path ).to.deep.equal( [ 1, 2, 0 ] );
- } );
- } );
- describe( 'toJSON()', () => {
- it( 'should serialize position', () => {
- const position = new Position( root, [ 0 ] );
- const serialized = position.toJSON();
- expect( serialized ).to.deep.equal( { root: 'main', path: [ 0 ], stickiness: 'toNone' } );
- } );
- it( 'should serialize position from graveyard', () => {
- const position = new Position( doc.graveyard, [ 0 ] );
- position.stickiness = 'toPrevious';
- const serialized = position.toJSON();
- expect( serialized ).to.deep.equal( { root: '$graveyard', path: [ 0 ], stickiness: 'toPrevious' } );
- } );
- } );
- describe( 'fromJSON()', () => {
- it( 'should create object with given document', () => {
- const deserialized = Position.fromJSON( { root: 'main', path: [ 0, 1, 2 ] }, doc );
- expect( deserialized.root ).to.equal( root );
- expect( deserialized.path ).to.deep.equal( [ 0, 1, 2 ] );
- } );
- it( 'should create object from graveyard', () => {
- const deserialized = Position.fromJSON( { root: '$graveyard', path: [ 0, 1, 2 ] }, doc );
- expect( deserialized.root ).to.equal( doc.graveyard );
- expect( deserialized.path ).to.deep.equal( [ 0, 1, 2 ] );
- } );
- it( 'should throw error when creating object in document that does not have provided root', () => {
- expectToThrowCKEditorError( () => {
- Position.fromJSON( { root: 'noroot', path: [ 0 ] }, doc );
- }, /model-position-fromjson-no-root/, model );
- } );
- } );
- describe( 'getCommonAncestor()', () => {
- it( 'returns null when roots of both positions are not the same', () => {
- const pos1 = new Position( root, [ 0 ] );
- const pos2 = new Position( otherRoot, [ 0 ] );
- test( pos1, pos2, null );
- } );
- it( 'for two the same positions returns the parent element #1', () => {
- const fPosition = new Position( root, [ 1, 0, 0 ] );
- const otherPosition = new Position( root, [ 1, 0, 0 ] );
- test( fPosition, otherPosition, li1 );
- } );
- it( 'for two the same positions returns the parent element #2', () => {
- const model = new Model();
- const doc = model.document;
- const root = doc.createRoot();
- const p = new Element( 'p', null, 'foobar' );
- root._appendChild( p );
- const postion = new Position( root, [ 0, 3 ] ); // <p>foo^bar</p>
- test( postion, postion, p );
- } );
- it( 'for two positions in the same element returns the element', () => {
- const fPosition = new Position( root, [ 1, 0, 0 ] );
- const zPosition = new Position( root, [ 1, 0, 2 ] );
- test( fPosition, zPosition, li1 );
- } );
- it( 'works when one positions is nested deeper than the other', () => {
- const zPosition = new Position( root, [ 1, 0, 2 ] );
- const liPosition = new Position( root, [ 1, 1 ] );
- test( liPosition, zPosition, ul );
- } );
- // Checks if by mistake someone didn't use getCommonPath() + getNodeByPath().
- it( 'works if position is located before an element', () => {
- const model = new Model();
- const doc = model.document;
- const root = doc.createRoot();
- const p = new Element( 'p', null, new Element( 'a' ) );
- root._appendChild( p );
- const postion = new Position( root, [ 0, 0 ] ); // <p>^<a></a></p>
- test( postion, postion, p );
- } );
- it( 'works fine with positions located in DocumentFragment', () => {
- const docFrag = new DocumentFragment( [ p, ul ] );
- const zPosition = new Position( docFrag, [ 1, 0, 2 ] );
- const afterLiPosition = new Position( docFrag, [ 1, 2 ] );
- test( zPosition, afterLiPosition, ul );
- } );
- function test( positionA, positionB, lca ) {
- expect( positionA.getCommonAncestor( positionB ) ).to.equal( lca );
- expect( positionB.getCommonAncestor( positionA ) ).to.equal( lca );
- }
- } );
- } );
|