| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769 |
- /**
- * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
- import Model from '../../../src/model/model';
- import ModelPosition from '../../../src/model/position';
- import ModelRange from '../../../src/model/range';
- import { injectSelectionPostFixer } from '../../../src/model/utils/selection-post-fixer';
- import { getData as getModelData, setData as setModelData } from '../../../src/dev-utils/model';
- describe( 'Selection post-fixer', () => {
- describe( 'injectSelectionPostFixer()', () => {
- it( 'is a function', () => {
- expect( injectSelectionPostFixer ).to.be.a( 'function' );
- } );
- } );
- describe( 'injected behavior', () => {
- let model, modelRoot;
- beforeEach( () => {
- model = new Model();
- modelRoot = model.document.createRoot();
- model.schema.register( 'paragraph', { inheritAllFrom: '$block' } );
- model.schema.register( 'table', {
- allowWhere: '$block',
- isObject: true,
- isLimit: true
- } );
- model.schema.register( 'tableRow', {
- allowIn: 'table',
- isLimit: true
- } );
- model.schema.register( 'tableCell', {
- allowIn: 'tableRow',
- allowContentOf: '$block',
- isLimit: true
- } );
- model.schema.register( 'image', {
- allowIn: '$root',
- isObject: true
- } );
- model.schema.register( 'caption', {
- allowIn: 'image',
- allowContentOf: '$block',
- isLimit: true
- } );
- model.schema.register( 'inlineWidget', {
- isObject: true,
- allowIn: [ '$block', '$clipboardHolder' ]
- } );
- model.schema.register( 'figure', {
- allowIn: '$root',
- allowAttributes: [ 'name', 'title' ]
- } );
- } );
- it( 'should not crash if there is no correct position for model selection', () => {
- setModelData( model, '' );
- expect( getModelData( model ) ).to.equal( '[]' );
- } );
- it( 'should react to structure changes', () => {
- setModelData( model, '<paragraph>[]foo</paragraph><image></image>' );
- model.change( writer => {
- writer.remove( modelRoot.getChild( 0 ) );
- } );
- expect( getModelData( model ) ).to.equal( '[<image></image>]' );
- } );
- it( 'should react to selection changes', () => {
- setModelData( model, '<paragraph>[]foo</paragraph><image></image>' );
- // <paragraph>foo</paragraph>[]<image></image>
- model.change( writer => {
- writer.setSelection(
- ModelRange.createFromParentsAndOffsets( modelRoot, 1, modelRoot, 1 )
- );
- } );
- expect( getModelData( model ) ).to.equal( '<paragraph>foo[]</paragraph><image></image>' );
- } );
- describe( 'non-collapsed selection - table scenarios', () => {
- beforeEach( () => {
- setModelData( model,
- '<paragraph>[]foo</paragraph>' +
- '<table>' +
- '<tableRow><tableCell>aaa</tableCell><tableCell>bbb</tableCell></tableRow>' +
- '</table>' +
- '<paragraph>bar</paragraph>'
- );
- } );
- it( 'should fix #1', () => {
- // <paragraph>f[oo</paragraph><table><tableRow><tableCell></tableCell>]<tableCell>...
- model.change( writer => {
- writer.setSelection( ModelRange.createFromParentsAndOffsets(
- modelRoot.getChild( 0 ), 1,
- modelRoot.getChild( 1 ).getChild( 0 ), 1
- ) );
- } );
- expect( getModelData( model ) ).to.equal(
- '<paragraph>f[oo</paragraph>' +
- '<table>' +
- '<tableRow><tableCell>aaa</tableCell><tableCell>bbb</tableCell></tableRow>' +
- '</table>]' +
- '<paragraph>bar</paragraph>'
- );
- } );
- it( 'should fix #2', () => {
- // ...<table><tableRow><tableCell></tableCell>[<tableCell></tableCell></tableRow></table><paragraph>b]ar</paragraph>
- model.change( writer => {
- writer.setSelection( ModelRange.createFromParentsAndOffsets(
- modelRoot.getChild( 1 ).getChild( 0 ), 1,
- modelRoot.getChild( 2 ), 1
- ) );
- } );
- expect( getModelData( model ) ).to.equal(
- '<paragraph>foo</paragraph>' +
- '[<table>' +
- '<tableRow><tableCell>aaa</tableCell><tableCell>bbb</tableCell></tableRow>' +
- '</table>' +
- '<paragraph>b]ar</paragraph>'
- );
- } );
- it( 'should fix #3', () => {
- // <paragraph>f[oo</paragraph><table>]<tableRow>...
- model.change( writer => {
- writer.setSelection( ModelRange.createFromParentsAndOffsets(
- modelRoot.getChild( 0 ), 1,
- modelRoot.getChild( 1 ), 0
- ) );
- } );
- expect( getModelData( model ) ).to.equal(
- '<paragraph>f[oo</paragraph>' +
- '<table>' +
- '<tableRow><tableCell>aaa</tableCell><tableCell>bbb</tableCell></tableRow>' +
- '</table>]' +
- '<paragraph>bar</paragraph>'
- );
- } );
- it( 'should fix #4', () => {
- // <paragraph>foo</paragraph><table><tableRow><tableCell>a[aa</tableCell><tableCell>b]bb</tableCell>
- model.change( writer => {
- writer.setSelection( ModelRange.createFromParentsAndOffsets(
- modelRoot.getChild( 1 ).getChild( 0 ).getChild( 0 ), 1,
- modelRoot.getChild( 1 ).getChild( 0 ).getChild( 1 ), 2
- ) );
- } );
- expect( getModelData( model ) ).to.equal(
- '<paragraph>foo</paragraph>' +
- '[<table>' +
- '<tableRow><tableCell>aaa</tableCell><tableCell>bbb</tableCell></tableRow>' +
- '</table>]' +
- '<paragraph>bar</paragraph>'
- );
- } );
- it( 'should fix #5', () => {
- setModelData( model,
- '<paragraph>foo</paragraph>' +
- '<table>' +
- '<tableRow><tableCell>aaa</tableCell><tableCell>bbb</tableCell></tableRow>' +
- '</table>' +
- '[]' +
- '<table>' +
- '<tableRow><tableCell>xxx</tableCell><tableCell>yyy</tableCell></tableRow>' +
- '</table>' +
- '<paragraph>baz</paragraph>'
- );
- expect( getModelData( model ) ).to.equal(
- '<paragraph>foo</paragraph>' +
- '[<table>' +
- '<tableRow><tableCell>aaa</tableCell><tableCell>bbb</tableCell></tableRow>' +
- '</table>]' +
- '<table>' +
- '<tableRow><tableCell>xxx</tableCell><tableCell>yyy</tableCell></tableRow>' +
- '</table>' +
- '<paragraph>baz</paragraph>'
- );
- } );
- // There's a chance that this and the following test will not be up to date with
- // how the table feature is really implemented once we'll introduce row/cells/columns selection
- // in which case all these elements will need to be marked as objects.
- it( 'should fix #6 (element selection of not an object)', () => {
- setModelData( model,
- '<paragraph>foo</paragraph>' +
- '<table>' +
- '[<tableRow><tableCell>aaa</tableCell><tableCell>bbb</tableCell></tableRow>]' +
- '</table>' +
- '<paragraph>baz</paragraph>'
- );
- expect( getModelData( model ) ).to.equal(
- '<paragraph>foo</paragraph>' +
- '[<table>' +
- '<tableRow><tableCell>aaa</tableCell><tableCell>bbb</tableCell></tableRow>' +
- '</table>]' +
- '<paragraph>baz</paragraph>'
- );
- } );
- it( 'should fix #7 (element selection of non-objects)', () => {
- setModelData( model,
- '<paragraph>foo</paragraph>' +
- '<table>' +
- '[<tableRow><tableCell>1</tableCell><tableCell>2</tableCell></tableRow>' +
- '<tableRow><tableCell>3</tableCell><tableCell>4</tableCell>]</tableRow>' +
- '<tableRow><tableCell>5</tableCell><tableCell>6</tableCell></tableRow>' +
- '</table>' +
- '<paragraph>baz</paragraph>'
- );
- expect( getModelData( model ) ).to.equal(
- '<paragraph>foo</paragraph>' +
- '[<table>' +
- '<tableRow><tableCell>1</tableCell><tableCell>2</tableCell></tableRow>' +
- '<tableRow><tableCell>3</tableCell><tableCell>4</tableCell></tableRow>' +
- '<tableRow><tableCell>5</tableCell><tableCell>6</tableCell></tableRow>' +
- '</table>]' +
- '<paragraph>baz</paragraph>'
- );
- } );
- it( 'should fix #8 (cross-limit selection which starts in a non-limit elements)', () => {
- model.schema.extend( 'paragraph', { allowIn: 'tableCell' } );
- setModelData( model,
- '<paragraph>foo</paragraph>' +
- '<table>' +
- '<tableRow>' +
- '<tableCell><paragraph>f[oo</paragraph></tableCell>' +
- '<tableCell><paragraph>b]ar</paragraph></tableCell>' +
- '</tableRow>' +
- '</table>' +
- '<paragraph>baz</paragraph>'
- );
- expect( getModelData( model ) ).to.equal(
- '<paragraph>foo</paragraph>' +
- '[<table>' +
- '<tableRow>' +
- '<tableCell><paragraph>foo</paragraph></tableCell>' +
- '<tableCell><paragraph>bar</paragraph></tableCell>' +
- '</tableRow>' +
- '</table>]' +
- '<paragraph>baz</paragraph>'
- );
- } );
- it( 'should not fix #1', () => {
- setModelData( model,
- '<paragraph>foo</paragraph>' +
- '<table>' +
- '<tableRow><tableCell>aaa</tableCell><tableCell>bbb</tableCell></tableRow>' +
- '</table>' +
- '<paragraph>b[ar</paragraph>' +
- '<paragraph>ba]z</paragraph>'
- );
- expect( getModelData( model ) ).to.equal(
- '<paragraph>foo</paragraph>' +
- '<table>' +
- '<tableRow><tableCell>aaa</tableCell><tableCell>bbb</tableCell></tableRow>' +
- '</table>' +
- '<paragraph>b[ar</paragraph>' +
- '<paragraph>ba]z</paragraph>'
- );
- } );
- it( 'should fix multiple ranges #1', () => {
- model.change( writer => {
- const ranges = [
- new ModelRange( new ModelPosition( modelRoot, [ 0, 1 ] ), new ModelPosition( modelRoot, [ 1, 0 ] ) ),
- new ModelRange( new ModelPosition( modelRoot, [ 1, 0, 0, 0 ] ), new ModelPosition( modelRoot, [ 1, 1 ] ) )
- ];
- writer.setSelection( ranges );
- } );
- expect( getModelData( model ) ).to.equal(
- '<paragraph>f[oo</paragraph>' +
- '<table>' +
- '<tableRow><tableCell>aaa</tableCell><tableCell>bbb</tableCell></tableRow>' +
- '</table>]' +
- '<paragraph>bar</paragraph>'
- );
- } );
- it( 'should fix multiple ranges #2', () => {
- model.change( writer => {
- const ranges = [
- new ModelRange( new ModelPosition( modelRoot, [ 0, 1 ] ), new ModelPosition( modelRoot, [ 1, 0 ] ) ),
- new ModelRange( new ModelPosition( modelRoot, [ 1, 0, 0, 0 ] ), new ModelPosition( modelRoot, [ 2, 2 ] ) )
- ];
- writer.setSelection( ranges );
- } );
- expect( getModelData( model ) ).to.equal(
- '<paragraph>f[oo</paragraph>' +
- '<table>' +
- '<tableRow><tableCell>aaa</tableCell><tableCell>bbb</tableCell></tableRow>' +
- '</table>' +
- '<paragraph>ba]r</paragraph>'
- );
- } );
- it( 'should fix multiple ranges #3', () => {
- setModelData( model,
- '<paragraph>foo</paragraph>' +
- '<table>' +
- '<tableRow><tableCell>[aaa</tableCell><tableCell>bbb</tableCell></tableRow>' +
- '<tableRow>]<tableCell>[aaa</tableCell><tableCell>bbb</tableCell></tableRow>' +
- '<tableRow>]<tableCell>[aaa</tableCell><tableCell>bbb</tableCell></tableRow>' +
- '<tableRow>]<tableCell>[aaa</tableCell><tableCell>bbb</tableCell></tableRow>' +
- '</table>' +
- '<paragraph>b]az</paragraph>'
- );
- expect( getModelData( model ) ).to.equal(
- '<paragraph>foo</paragraph>' +
- '[<table>' +
- '<tableRow><tableCell>aaa</tableCell><tableCell>bbb</tableCell></tableRow>' +
- '<tableRow><tableCell>aaa</tableCell><tableCell>bbb</tableCell></tableRow>' +
- '<tableRow><tableCell>aaa</tableCell><tableCell>bbb</tableCell></tableRow>' +
- '<tableRow><tableCell>aaa</tableCell><tableCell>bbb</tableCell></tableRow>' +
- '</table>' +
- '<paragraph>b]az</paragraph>'
- );
- } );
- it( 'should fix multiple ranges #4', () => {
- model.change( writer => {
- const ranges = [
- new ModelRange( new ModelPosition( modelRoot, [ 0, 1 ] ), new ModelPosition( modelRoot, [ 1, 0 ] ) ),
- new ModelRange( new ModelPosition( modelRoot, [ 1, 0, 0, 0 ] ), new ModelPosition( modelRoot, [ 2, 1 ] ) ),
- new ModelRange( new ModelPosition( modelRoot, [ 2, 2 ] ), new ModelPosition( modelRoot, [ 2, 3 ] ) )
- ];
- writer.setSelection( ranges );
- } );
- expect( getModelData( model ) ).to.equal(
- '<paragraph>f[oo</paragraph>' +
- '<table>' +
- '<tableRow><tableCell>aaa</tableCell><tableCell>bbb</tableCell></tableRow>' +
- '</table>' +
- '<paragraph>b]a[r]</paragraph>'
- );
- } );
- } );
- describe( 'non-collapsed selection - image scenarios', () => {
- beforeEach( () => {
- setModelData( model,
- '<paragraph>[]foo</paragraph>' +
- '<image>' +
- '<caption>xxx</caption>' +
- '</image>' +
- '<paragraph>bar</paragraph>'
- );
- } );
- it( 'should fix #1 (crossing object and limit boundaries)', () => {
- model.change( writer => {
- // <paragraph>f[oo</paragraph><image><caption>x]xx</caption>...
- writer.setSelection( ModelRange.createFromParentsAndOffsets(
- modelRoot.getChild( 0 ), 1,
- modelRoot.getChild( 1 ).getChild( 0 ), 1
- ) );
- } );
- expect( getModelData( model ) ).to.equal(
- '<paragraph>f[oo</paragraph>' +
- '<image>' +
- '<caption>xxx</caption>' +
- '</image>]' +
- '<paragraph>bar</paragraph>'
- );
- } );
- it( 'should fix #2 (crossing object boundary)', () => {
- model.change( writer => {
- // <paragraph>f[oo</paragraph><image>]<caption>xxx</caption>...
- writer.setSelection( ModelRange.createFromParentsAndOffsets(
- modelRoot.getChild( 0 ), 1,
- modelRoot.getChild( 1 ), 0
- ) );
- } );
- expect( getModelData( model ) ).to.equal(
- '<paragraph>f[oo</paragraph>' +
- '<image>' +
- '<caption>xxx</caption>' +
- '</image>]' +
- '<paragraph>bar</paragraph>'
- );
- } );
- it( 'should fix #3 (crossing object boundary)', () => {
- model.change( writer => {
- // <paragraph>f[oo</paragraph><image><caption>xxx</caption>]</image>...
- writer.setSelection( ModelRange.createFromParentsAndOffsets(
- modelRoot.getChild( 0 ), 1,
- modelRoot.getChild( 1 ), 1
- ) );
- } );
- expect( getModelData( model ) ).to.equal(
- '<paragraph>f[oo</paragraph>' +
- '<image>' +
- '<caption>xxx</caption>' +
- '</image>]' +
- '<paragraph>bar</paragraph>'
- );
- } );
- it( 'should fix #4 (element selection of not an object)', () => {
- model.change( writer => {
- // <paragraph>foo</paragraph><image>[<caption>xxx</caption>]</image>...
- writer.setSelection( ModelRange.createFromParentsAndOffsets(
- modelRoot.getChild( 1 ), 0,
- modelRoot.getChild( 1 ), 1
- ) );
- } );
- expect( getModelData( model ) ).to.equal(
- '<paragraph>foo</paragraph>' +
- '[<image>' +
- '<caption>xxx</caption>' +
- '</image>]' +
- '<paragraph>bar</paragraph>'
- );
- } );
- it( 'should not fix #1 (element selection of an object)', () => {
- model.change( writer => {
- // <paragraph>foo</paragraph>[<image><caption>xxx</caption></image>]...
- writer.setSelection( ModelRange.createFromParentsAndOffsets(
- modelRoot, 1,
- modelRoot, 2
- ) );
- } );
- expect( getModelData( model ) ).to.equal(
- '<paragraph>foo</paragraph>' +
- '[<image>' +
- '<caption>xxx</caption>' +
- '</image>]' +
- '<paragraph>bar</paragraph>'
- );
- } );
- it( 'should not fix #2 (inside a limit)', () => {
- model.change( writer => {
- const caption = modelRoot.getChild( 1 ).getChild( 0 );
- // <paragraph>foo</paragraph><image><caption>[xxx]</caption></image>...
- writer.setSelection( ModelRange.createFromParentsAndOffsets(
- caption, 0,
- caption, 3
- ) );
- } );
- expect( getModelData( model ) ).to.equal(
- '<paragraph>foo</paragraph>' +
- '<image>' +
- '<caption>[xxx]</caption>' +
- '</image>' +
- '<paragraph>bar</paragraph>'
- );
- } );
- it( 'should not fix #3 (inside a limit - partial text selection)', () => {
- model.change( writer => {
- const caption = modelRoot.getChild( 1 ).getChild( 0 );
- // <paragraph>foo</paragraph><image><caption>[xx]x</caption></image>...
- writer.setSelection( ModelRange.createFromParentsAndOffsets(
- caption, 0,
- caption, 2
- ) );
- } );
- expect( getModelData( model ) ).to.equal(
- '<paragraph>foo</paragraph>' +
- '<image>' +
- '<caption>[xx]x</caption>' +
- '</image>' +
- '<paragraph>bar</paragraph>'
- );
- } );
- it( 'should not fix #4 (inside a limit - partial text selection)', () => {
- model.change( writer => {
- const caption = modelRoot.getChild( 1 ).getChild( 0 );
- // <paragraph>foo</paragraph><image><caption>x[xx]</caption></image>...
- writer.setSelection( ModelRange.createFromParentsAndOffsets(
- caption, 1,
- caption, 3
- ) );
- } );
- expect( getModelData( model ) ).to.equal(
- '<paragraph>foo</paragraph>' +
- '<image>' +
- '<caption>x[xx]</caption>' +
- '</image>' +
- '<paragraph>bar</paragraph>'
- );
- } );
- it( 'should not fix #5 (selection in root on non limit element that doesn\'t allow text)', () => {
- setModelData( model,
- '[<figure></figure>]'
- );
- expect( getModelData( model ) ).to.equal(
- '[<figure></figure>]'
- );
- } );
- } );
- describe( 'non-collapsed selection - other scenarios', () => {
- it( 'should fix #1 (element selection of not an object)', () => {
- setModelData( model,
- '<paragraph>aaa</paragraph>' +
- '[<paragraph>bbb</paragraph>]' +
- '<paragraph>ccc</paragraph>'
- );
- expect( getModelData( model ) ).to.equal(
- '<paragraph>aaa</paragraph>' +
- '<paragraph>[bbb]</paragraph>' +
- '<paragraph>ccc</paragraph>'
- );
- } );
- it( 'should fix #2 (elements selection of not an object)', () => {
- setModelData( model,
- '<paragraph>aaa</paragraph>' +
- '[<paragraph>bbb</paragraph>' +
- '<paragraph>ccc</paragraph>]'
- );
- expect( getModelData( model ) ).to.equal(
- '<paragraph>aaa</paragraph>' +
- '<paragraph>[bbb</paragraph>' +
- '<paragraph>ccc]</paragraph>'
- );
- } );
- it( 'should fix #3 (partial selection of not an object)', () => {
- setModelData( model,
- '<paragraph>aaa</paragraph>' +
- '[<paragraph>bbb</paragraph>' +
- '<paragraph>ccc]</paragraph>'
- );
- expect( getModelData( model ) ).to.equal(
- '<paragraph>aaa</paragraph>' +
- '<paragraph>[bbb</paragraph>' +
- '<paragraph>ccc]</paragraph>'
- );
- } );
- it( 'should fix #4 (partial selection of not an object)', () => {
- setModelData( model,
- '<paragraph>aaa</paragraph>' +
- '<paragraph>b[bb</paragraph>]' +
- '<paragraph>ccc</paragraph>'
- );
- expect( getModelData( model ) ).to.equal(
- '<paragraph>aaa</paragraph>' +
- '<paragraph>b[bb]</paragraph>' +
- '<paragraph>ccc</paragraph>'
- );
- } );
- it( 'should fix #5 (partial selection of not an object)', () => {
- setModelData( model,
- '<paragraph>aaa</paragraph>' +
- '[<paragraph>bb]b</paragraph>' +
- '<paragraph>ccc</paragraph>'
- );
- expect( getModelData( model ) ).to.equal(
- '<paragraph>aaa</paragraph>' +
- '<paragraph>[bb]b</paragraph>' +
- '<paragraph>ccc</paragraph>'
- );
- } );
- it( 'should fix #6 (selection must not cross a limit element; starts in a root)', () => {
- model.schema.register( 'a', { isLimit: true, allowIn: '$root' } );
- model.schema.register( 'b', { isLimit: true, allowIn: 'a' } );
- model.schema.register( 'c', { allowIn: 'b' } );
- model.schema.extend( '$text', { allowIn: 'c' } );
- setModelData( model,
- '<a><b><c>[</c></b></a>]'
- );
- expect( getModelData( model ) ).to.equal( '[<a><b><c></c></b></a>]' );
- } );
- it( 'should fix #7 (selection must not cross a limit element; ends in a root)', () => {
- model.schema.register( 'a', { isLimit: true, allowIn: '$root' } );
- model.schema.register( 'b', { isLimit: true, allowIn: 'a' } );
- model.schema.register( 'c', { allowIn: 'b' } );
- model.schema.extend( '$text', { allowIn: 'c' } );
- setModelData( model,
- '[<a><b><c>]</c></b></a>'
- );
- expect( getModelData( model ) ).to.equal( '[<a><b><c></c></b></a>]' );
- } );
- it( 'should fix #8 (selection must not cross a limit element; starts in a non-limit)', () => {
- model.schema.register( 'div', { allowIn: '$root' } );
- model.schema.register( 'a', { isLimit: true, allowIn: 'div' } );
- model.schema.register( 'b', { isLimit: true, allowIn: 'a' } );
- model.schema.register( 'c', { allowIn: 'b' } );
- model.schema.extend( '$text', { allowIn: 'c' } );
- setModelData( model,
- '<div>[<a><b><c>]</c></b></a></div>'
- );
- expect( getModelData( model ) ).to.equal( '<div>[<a><b><c></c></b></a>]</div>' );
- } );
- it( 'should fix #9 (selection must not cross a limit element; ends in a non-limit)', () => {
- model.schema.register( 'div', { allowIn: '$root' } );
- model.schema.register( 'a', { isLimit: true, allowIn: 'div' } );
- model.schema.register( 'b', { isLimit: true, allowIn: 'a' } );
- model.schema.register( 'c', { allowIn: 'b' } );
- model.schema.extend( '$text', { allowIn: 'c' } );
- setModelData( model,
- '<div><a><b><c>[</c></b></a>]</div>'
- );
- expect( getModelData( model ) ).to.equal( '<div>[<a><b><c></c></b></a>]</div>' );
- } );
- it( 'should not fix #1 (selection on text node)', () => {
- setModelData( model, '<paragraph>foob[a]r</paragraph>', { lastRangeBackward: true } );
- expect( getModelData( model ) ).to.equal( '<paragraph>foob[a]r</paragraph>' );
- } );
- it( 'should not fix #2', () => {
- setModelData( model,
- '<paragraph>[<inlineWidget></inlineWidget>]</paragraph>'
- );
- expect( getModelData( model ) ).to.equal(
- '<paragraph>[<inlineWidget></inlineWidget>]</paragraph>'
- );
- } );
- it( 'should not fix #3', () => {
- setModelData( model,
- '<paragraph>fo[o<inlineWidget></inlineWidget>b]ar</paragraph>'
- );
- expect( getModelData( model ) ).to.equal(
- '<paragraph>fo[o<inlineWidget></inlineWidget>b]ar</paragraph>'
- );
- } );
- } );
- describe( 'collapsed selection', () => {
- beforeEach( () => {
- setModelData( model,
- '<paragraph>[]foo</paragraph>' +
- '<table>' +
- '<tableRow><tableCell>aaa</tableCell><tableCell>bbb</tableCell></tableRow>' +
- '</table>' +
- '<paragraph>bar</paragraph>'
- );
- } );
- it( 'should fix #1', () => {
- // <table>[]<tableRow>...
- model.change( writer => {
- writer.setSelection(
- ModelRange.createFromParentsAndOffsets( modelRoot.getChild( 1 ), 0, modelRoot.getChild( 1 ), 0 )
- );
- } );
- expect( getModelData( model ) ).to.equal(
- '<paragraph>foo[]</paragraph>' +
- '<table>' +
- '<tableRow><tableCell>aaa</tableCell><tableCell>bbb</tableCell></tableRow>' +
- '</table>' +
- '<paragraph>bar</paragraph>'
- );
- } );
- it( 'should fix #2', () => {
- // <table><tableRow>[]<tableCell>...
- model.change( writer => {
- const row = modelRoot.getChild( 1 ).getChild( 0 );
- writer.setSelection(
- ModelRange.createFromParentsAndOffsets( row, 0, row, 0 )
- );
- } );
- expect( getModelData( model ) ).to.equal(
- '<paragraph>foo</paragraph>' +
- '<table>' +
- '<tableRow><tableCell>[]aaa</tableCell><tableCell>bbb</tableCell></tableRow>' +
- '</table>' +
- '<paragraph>bar</paragraph>'
- );
- } );
- it( 'should fix multiple ranges #1', () => {
- // []<paragraph></paragraph>[]<table>...
- model.change( writer => {
- writer.setSelection(
- [
- ModelRange.createFromParentsAndOffsets( modelRoot, 0, modelRoot, 0 ),
- ModelRange.createFromParentsAndOffsets( modelRoot, 1, modelRoot, 1 )
- ]
- );
- } );
- expect( getModelData( model ) ).to.equal(
- '<paragraph>[]foo[]</paragraph>' +
- '<table>' +
- '<tableRow><tableCell>aaa</tableCell><tableCell>bbb</tableCell></tableRow>' +
- '</table>' +
- '<paragraph>bar</paragraph>'
- );
- } );
- } );
- } );
- } );
|