mediawiki-extensions-Visual.../tests/es/es.TransactionProcessor.test.js

352 lines
10 KiB
JavaScript
Raw Normal View History

module( 'es' );
test( 'es.TransactionProcessor', 29, function() {
var documentModel = es.DocumentModel.newFromPlainObject( esTest.obj );
// FIXME: These tests shouldn't use prepareFoo() because those functions
// normalize the transactions they create and are tested separately.
// We should be creating transactions directly and feeding those into
// commit()/rollback() --Roan
var elementAttributeChange = documentModel.prepareElementAttributeChange(
0, 'set', 'test', 1
);
// Test 1
es.TransactionProcessor.commit( documentModel, elementAttributeChange );
deepEqual(
documentModel.getData( new es.Range( 0, 5 ) ),
[
{ 'type': 'paragraph', 'attributes': { 'test': 1 } },
'a',
['b', { 'type': 'textStyle/bold', 'hash': '#textStyle/bold' }],
['c', { 'type': 'textStyle/italic', 'hash': '#textStyle/italic' }],
{ 'type': '/paragraph' }
],
'commit applies an element attribute change transaction to the content'
);
// Test 2
es.TransactionProcessor.rollback( documentModel, elementAttributeChange );
deepEqual(
documentModel.getData( new es.Range( 0, 5 ) ),
[
{ 'type': 'paragraph' },
'a',
['b', { 'type': 'textStyle/bold', 'hash': '#textStyle/bold' }],
['c', { 'type': 'textStyle/italic', 'hash': '#textStyle/italic' }],
{ 'type': '/paragraph' }
],
'rollback reverses the effect of an element attribute change transaction on the content'
);
var contentAnnotation = documentModel.prepareContentAnnotation(
new es.Range( 1, 4 ), 'set', { 'type': 'textStyle/bold' }
);
// Test 3
es.TransactionProcessor.commit( documentModel, contentAnnotation );
deepEqual(
documentModel.getData( new es.Range( 0, 5 ) ),
[
{ 'type': 'paragraph' },
['a', { 'type': 'textStyle/bold', 'hash': '#textStyle/bold' }],
['b', { 'type': 'textStyle/bold', 'hash': '#textStyle/bold' }],
[
'c',
{ 'type': 'textStyle/italic', 'hash': '#textStyle/italic' },
{ 'type': 'textStyle/bold', 'hash': '#textStyle/bold' }
],
{ 'type': '/paragraph' }
],
'commit applies a content annotation transaction to the content'
);
// Test 4
es.TransactionProcessor.rollback( documentModel, contentAnnotation );
deepEqual(
documentModel.getData( new es.Range( 0, 5 ) ),
[
{ 'type': 'paragraph' },
'a',
['b', { 'type': 'textStyle/bold', 'hash': '#textStyle/bold' }],
['c', { 'type': 'textStyle/italic', 'hash': '#textStyle/italic' }],
{ 'type': '/paragraph' }
],
'rollback reverses the effect of a content annotation transaction on the content'
);
var insertion = documentModel.prepareInsertion( 3, ['d'] );
// Test 5
es.TransactionProcessor.commit( documentModel, insertion );
deepEqual(
documentModel.getData( new es.Range( 0, 6 ) ),
[
{ 'type': 'paragraph' },
'a',
['b', { 'type': 'textStyle/bold', 'hash': '#textStyle/bold' }],
'd',
['c', { 'type': 'textStyle/italic', 'hash': '#textStyle/italic' }],
{ 'type': '/paragraph' }
],
'commit applies an insertion transaction to the content'
);
// Test 6
deepEqual(
documentModel.getChildren()[0].getContent(),
[
'a',
['b', { 'type': 'textStyle/bold', 'hash': '#textStyle/bold' }],
'd',
['c', { 'type': 'textStyle/italic', 'hash': '#textStyle/italic' }]
],
'commit keeps model tree up to date with insertions'
);
// Test 7
es.TransactionProcessor.rollback( documentModel, insertion );
deepEqual(
documentModel.getData( new es.Range( 0, 5 ) ),
[
{ 'type': 'paragraph' },
'a',
['b', { 'type': 'textStyle/bold', 'hash': '#textStyle/bold' }],
['c', { 'type': 'textStyle/italic', 'hash': '#textStyle/italic' }],
{ 'type': '/paragraph' }
],
'rollback reverses the effect of an insertion transaction on the content'
);
// Test 8
deepEqual(
documentModel.getChildren()[0].getContent(),
[
'a',
['b', { 'type': 'textStyle/bold', 'hash': '#textStyle/bold' }],
['c', { 'type': 'textStyle/italic', 'hash': '#textStyle/italic' }]
],
'rollback keeps model tree up to date with insertions'
);
var removal = documentModel.prepareRemoval( new es.Range( 2, 4 ) );
// Test 9
es.TransactionProcessor.commit( documentModel, removal );
deepEqual(
documentModel.getData( new es.Range( 0, 3 ) ),
[
{ 'type': 'paragraph' },
'a',
{ 'type': '/paragraph' }
],
'commit applies a removal transaction to the content'
);
// Test 10
deepEqual(
documentModel.getChildren()[0].getContent(),
['a'],
'commit keeps model tree up to date with removals'
);
// Test 11
es.TransactionProcessor.rollback( documentModel, removal );
deepEqual(
documentModel.getData( new es.Range( 0, 5 ) ),
[
{ 'type': 'paragraph' },
'a',
['b', { 'type': 'textStyle/bold', 'hash': '#textStyle/bold' }],
['c', { 'type': 'textStyle/italic', 'hash': '#textStyle/italic' }],
{ 'type': '/paragraph' }
],
'rollback reverses the effect of a removal transaction on the content'
);
// Test 12
deepEqual(
documentModel.getChildren()[0].getContent(),
[
'a',
['b', { 'type': 'textStyle/bold', 'hash': '#textStyle/bold' }],
['c', { 'type': 'textStyle/italic', 'hash': '#textStyle/italic' }]
],
'rollback keeps model tree up to date with removals'
);
var paragraphBreak = documentModel.prepareInsertion(
2, [{ 'type': '/paragraph' }, { 'type': 'paragraph' }]
);
// Test 13
es.TransactionProcessor.commit( documentModel, paragraphBreak );
deepEqual(
documentModel.getData( new es.Range( 0, 7 ) ),
[
{ 'type': 'paragraph' },
'a',
{ 'type': '/paragraph' },
{ 'type': 'paragraph' },
['b', { 'type': 'textStyle/bold', 'hash': '#textStyle/bold' }],
['c', { 'type': 'textStyle/italic', 'hash': '#textStyle/italic' }],
{ 'type': '/paragraph' }
],
'commit applies an insertion transaction that splits the paragraph'
);
// Test 14
deepEqual(
documentModel.getChildren()[0].getContent(),
['a'],
'commit keeps model tree up to date with paragraph split (paragraph 1)'
);
// Test 15
deepEqual(
documentModel.getChildren()[1].getContent(),
[
['b', { 'type': 'textStyle/bold', 'hash': '#textStyle/bold' }],
['c', { 'type': 'textStyle/italic', 'hash': '#textStyle/italic' }]
],
'commit keeps model tree up to date with paragraph split (paragraph 2)'
);
// Test 16
es.TransactionProcessor.rollback( documentModel, paragraphBreak );
deepEqual(
documentModel.getData( new es.Range( 0, 5 ) ),
[
{ 'type': 'paragraph' },
'a',
['b', { 'type': 'textStyle/bold', 'hash': '#textStyle/bold' }],
['c', { 'type': 'textStyle/italic', 'hash': '#textStyle/italic' }],
{ 'type': '/paragraph' }
],
'rollback reverses the effect of a paragraph split on the content'
);
// Test 17
deepEqual(
documentModel.getChildren()[0].getContent(),
[
'a',
['b', { 'type': 'textStyle/bold', 'hash': '#textStyle/bold' }],
['c', { 'type': 'textStyle/italic', 'hash': '#textStyle/italic' }]
],
'rollback keeps model tree up to date with paragraph split (paragraphs are merged back)'
);
// Test 18
deepEqual(
documentModel.getChildren()[1].getElementType(),
'table',
'rollback keeps model tree up to date with paragraph split (table follows the paragraph)'
);
var listItemMerge = documentModel.prepareRemoval( new es.Range( 14, 19 ) );
// Test 19
es.TransactionProcessor.commit( documentModel, listItemMerge );
deepEqual(
documentModel.getData( new es.Range( 12, 22 ) ),
[
{ 'type': 'listItem', 'attributes': { 'styles': ['bullet'] } },
{ 'type': 'paragraph' },
'f',
{ 'type': '/paragraph' },
{ 'type': '/listItem' },
{ 'type': 'listItem', 'attributes': { 'styles': ['number'] } },
{ 'type': 'paragraph' },
'g',
{ 'type': '/paragraph' },
{ 'type': '/listItem' }
],
'removal merges two list items with paragraphs'
);
// Test 20
deepEqual( documentModel.children[1].children[0].children[0].children[1].children.length, 2,
'removal keeps model tree up to date with list item merge (number of children)'
);
// Test 21
deepEqual(
documentModel.children[1].children[0].children[0].children[1].children[0].children[0].getContent(),
[ 'f' ],
'removal keeps model tree up to date with list item merge (first list item)'
);
// Test 22
deepEqual(
documentModel.children[1].children[0].children[0].children[1].children[1].children[0].getContent(),
[ 'g' ],
'removal keeps model tree up to date with list item merge (second list item)'
);
// Test 23
deepEqual(
documentModel.children[2].getContent(),
[ 'h' ],
'rollback keeps model tree up to date with list item split (final paragraph)'
);
// Test 24
es.TransactionProcessor.rollback( documentModel, listItemMerge );
deepEqual(
documentModel.getData( new es.Range( 12, 27 ) ),
[
{ 'type': 'listItem', 'attributes': { 'styles': ['bullet'] } },
{ 'type': 'paragraph' },
'e',
{ 'type': '/paragraph' },
{ 'type': '/listItem' },
{ 'type': 'listItem', 'attributes': { 'styles': ['bullet', 'bullet'] } },
{ 'type': 'paragraph' },
'f',
{ 'type': '/paragraph' },
{ 'type': '/listItem' },
{ 'type': 'listItem', 'attributes': { 'styles': ['number'] } },
{ 'type': 'paragraph' },
'g',
{ 'type': '/paragraph' },
{ 'type': '/listItem' }
],
'rollback reverses list item merge (splits the list items)'
);
// Test 25
deepEqual( documentModel.children[1].children[0].children[0].children[1].children.length, 3,
'rollback keeps model tree up to date with list item split (number of children)'
);
// Test 26
deepEqual(
documentModel.children[1].children[0].children[0].children[1].children[0].children[0].getContent(),
[ 'e' ],
'rollback keeps model tree up to date with list item split (first list item)'
);
// Test 27
deepEqual(
documentModel.children[1].children[0].children[0].children[1].children[1].children[0].getContent(),
[ 'f' ],
'rollback keeps model tree up to date with list item split (second list item)'
);
// Test 28
deepEqual(
documentModel.children[1].children[0].children[0].children[1].children[2].children[0].getContent(),
[ 'g' ],
'rollback keeps model tree up to date with list item split (third list item)'
);
// Test 29
deepEqual(
documentModel.children[2].getContent(),
[ 'h' ],
'rollback keeps model tree up to date with list item split (final paragraph)'
);
} );