mediawiki-extensions-Visual.../modules/ve/test/ce/nodes/ve.ce.TextNode.test.js
Ed Sanders e01e2e045b Always use #getDocumentNode.
Because if you only sometimes use a getter you're just wasting your time!

Change-Id: Idd38976f77b58e322d527cecca9f9c36e3ad9318
2013-12-04 22:55:26 +00:00

146 lines
4.2 KiB
JavaScript

/*!
* VisualEditor ContentEditable TextNode tests.
*
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
QUnit.module( 've.ce.TextNode' );
/* Tests */
QUnit.test( 'getAnnotatedHtml', function ( assert ) {
var i, len, cases, doc,
store = new ve.dm.IndexValueStore();
cases = [
{
'data': [
{ 'type': 'paragraph' },
'a',
'b',
'c',
{ 'type': '/paragraph' }
],
'html': [ 'a', 'b', 'c' ]
},
{
'data': [
{ 'type': 'paragraph' },
['a', [ { 'type': 'textStyle/bold' } ]],
['b', [ { 'type': 'textStyle/bold' } ]],
['c', [ { 'type': 'textStyle/bold' } ]],
{ 'type': '/paragraph' }
],
'html': [
['a', [ { 'type': 'textStyle/bold' } ]],
['b', [ { 'type': 'textStyle/bold' } ]],
['c', [ { 'type': 'textStyle/bold' } ]]
]
},
{
'data': [
{ 'type': 'paragraph' },
['a', [ { 'type': 'textStyle/bold' } ]],
'b',
['c', [ { 'type': 'textStyle/italic' } ]],
{ 'type': '/paragraph' }
],
'html': [
['a', [ { 'type': 'textStyle/bold' } ]],
'b',
['c', [ { 'type': 'textStyle/italic' } ]]
]
},
{
// [ ]
'data': [{ 'type': 'paragraph' },' ',{ 'type': '/paragraph' }],
'html': [ '\u00a0' ]
},
{
// [ ][ ]
'data': [{ 'type': 'paragraph' },' ', ' ',{ 'type': '/paragraph' }],
'html': [ '\u00a0', '\u00a0' ]
},
{
// [ ][ ][ ]
'data': [{ 'type': 'paragraph' },' ', ' ', ' ',{ 'type': '/paragraph' }],
'html': [ '\u00a0', ' ', '\u00a0' ]
},
{
// [ ][ ][ ][ ]
'data': [{ 'type': 'paragraph' },' ', ' ', ' ', ' ',{ 'type': '/paragraph' }],
'html': [ '\u00a0', ' ', '\u00a0', '\u00a0' ]
},
{
// [ ][ ][ ][ ][ ]
'data': [{ 'type': 'paragraph' },' ', ' ', ' ', ' ', ' ',{ 'type': '/paragraph' }],
'html': [ '\u00a0', ' ', '\u00a0', ' ', '\u00a0' ]
},
{
// [ ][ ][ ][ ][ ][ ]
'data': [{ 'type': 'paragraph' },' ', ' ', ' ', ' ', ' ', ' ',{ 'type': '/paragraph' }],
'html': [ '\u00a0', ' ', '\u00a0', ' ', '\u00a0', '\u00a0' ]
},
{
// [ ][A][ ][ ][ ][ ]
'data': [{ 'type': 'paragraph' },' ', 'A', ' ', ' ', ' ', ' ',{ 'type': '/paragraph' }],
'html': [ '\u00a0', 'A', ' ', '\u00a0', ' ', '\u00a0' ]
},
{
// [ ][ ][A][ ][ ][ ]
'data': [{ 'type': 'paragraph' },' ', ' ', 'A', ' ', ' ', ' ',{ 'type': '/paragraph' }],
'html': [ '\u00a0', ' ', 'A', ' ', '\u00a0', '\u00a0' ]
},
{
// [ ][ ][ ][A][ ][ ]
'data': [{ 'type': 'paragraph' },' ', ' ', ' ', 'A', ' ', ' ',{ 'type': '/paragraph' }],
'html': [ '\u00a0', ' ', '\u00a0', 'A', ' ', '\u00a0' ]
},
{
// [ ][ ][ ][ ][A][ ]
'data': [{ 'type': 'paragraph' },' ', ' ', ' ', ' ', 'A', ' ',{ 'type': '/paragraph' }],
'html': [ '\u00a0', ' ', '\u00a0', ' ', 'A', '\u00a0' ]
},
{
// [ ][ ][ ][ ][ ][A]
'data': [{ 'type': 'paragraph' },' ', ' ', ' ', ' ', ' ', 'A',{ 'type': '/paragraph' }],
'html': [ '\u00a0', ' ', '\u00a0', ' ', '\u00a0', 'A' ]
},
{
'data': [{ 'type': 'paragraph' }, '\n', 'A', '\n', 'B', '\n', { 'type': '/paragraph' }],
'html': [ '\u21b5', 'A', '\u21b5', 'B', '\u21b5' ]
},
{
'data': [{ 'type': 'paragraph' }, '\t', 'A', '\t', 'B', '\t', { 'type': '/paragraph' }],
'html': [ '\u279e', 'A', '\u279e', 'B', '\u279e' ]
},
{
'data': [{ 'type': 'preformatted' }, '\n', 'A', '\n', 'B', '\n', { 'type': '/preformatted' }],
'html': [ '\n', 'A', '\n', 'B', '\n' ]
},
{
'data': [{ 'type': 'preformatted' }, '\t', 'A', '\t', 'B', '\t', { 'type': '/preformatted' }],
'html': [ '\t', 'A', '\t', 'B', '\t' ]
},
{
// [ ][ ][ ][A][ ][ ]
'data': [{ 'type': 'preformatted' },' ', ' ', ' ', 'A', ' ', ' ',{ 'type': '/preformatted' }],
'html': [ ' ', ' ', ' ', 'A', ' ', ' ' ]
},
{
'data': [{ 'type': 'paragraph' }, '&', '<', '>', '\'', '"', { 'type': '/paragraph' }],
'html': [ '&', '<', '>', '\'', '"' ]
}
];
QUnit.expect( cases.length );
for ( i = 0, len = cases.length; i < len; i++ ) {
doc = new ve.dm.Document( ve.dm.example.preprocessAnnotations( cases[i].data, store ) );
ve.dm.example.preprocessAnnotations( cases[i].html, store );
assert.deepEqual(
( new ve.ce.TextNode( doc.getDocumentNode().getChildren()[0].getChildren()[0] ) ).getAnnotatedHtml(),
cases[i].html
);
}
} );