1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
|
/*!
* VisualEditor DataModel Converter tests.
*
* @copyright See AUTHORS.txt
*/
QUnit.module( 've.dm.Converter' );
/* Tests */
QUnit.test( 'getModelFromDom', ( assert ) => {
const cases = ve.dm.example.domToDataCases;
for ( const msg in cases ) {
const caseItem = ve.copy( cases[ msg ] );
caseItem.base = caseItem.base || ve.dm.example.baseUri;
ve.test.utils.runGetModelFromDomTest( assert, caseItem, msg );
}
} );
QUnit.test( 'getModelFromDom with store argument', ( assert ) => {
const store = new ve.dm.HashValueStore();
const model = ve.dm.converter.getModelFromDom(
ve.createDocumentFromHtml( '<p>foo</p>' ),
{ lang: 'en', dir: 'ltr' },
store
);
assert.strictEqual( model.getStore(), store, 'Document store is reference-equal to store argument' );
} );
QUnit.test( 'getDomFromModel', ( assert ) => {
const cases = ve.dm.example.domToDataCases;
for ( const msg in cases ) {
const caseItem = ve.copy( cases[ msg ] );
caseItem.base = caseItem.base || ve.dm.example.baseUri;
ve.test.utils.runGetDomFromModelTest( assert, caseItem, msg );
}
} );
QUnit.test( 'getFullData', ( assert ) => {
const cases = [
{
msg: 'Metadata in ContentBranchNode gets moved outside by any change',
beforeHtml: '<p>x</p><!-- w --><meta foo="x"><p>ab<meta foo="y">cd</p><p>ef<meta foo="z">gh</p>',
transaction: function ( doc ) {
return ve.dm.TransactionBuilder.static.newFromRemoval( doc, new ve.Range( 13, 14 ) );
},
afterHtml: '<p>x</p><!-- w --><meta foo="x"><p>abc</p><meta foo="y"><p>ef<meta foo="z">gh</p>'
},
{
msg: 'Metadata in ContentBranchNode is NOT removed when the whole node is removed',
beforeHtml: '<p>x</p><!-- w --><meta foo="x"><p>ab<meta foo="y">cd</p><p>ef<meta foo="z">gh</p>',
transaction: function ( doc ) {
return ve.dm.TransactionBuilder.static.newFromRemoval( doc, new ve.Range( 7, 15 ) );
},
afterHtml: '<p>x</p><!-- w --><meta foo="x"><meta foo="y"><p>ef<meta foo="z">gh</p>',
// BUG! <meta foo="y"> is not restored to the correct place after undoing
// EXPECTED: Same as beforeHtml
beforeHtmlUndo: '<p>x</p><!-- w --><meta foo="x"><p>abcd</p><meta foo="y"><p>ef<meta foo="z">gh</p>'
},
{
msg: 'Removable metadata (empty annotation) in ContentBranchNode is removed by any change',
beforeHtml: '<p>x</p><p>ab<i></i>cd</p><p>efgh</p>',
transaction: function ( doc ) {
return ve.dm.TransactionBuilder.static.newFromRemoval( doc, new ve.Range( 7, 8 ) );
},
afterHtml: '<p>x</p><p>abc</p><p>efgh</p>'
},
{
msg: 'Removable metadata (empty annotation) in ContentBranchNode is removed when the whole node is removed',
beforeHtml: '<p>x</p><p>ab<i></i>cd</p><p>efgh</p>',
transaction: function ( doc ) {
return ve.dm.TransactionBuilder.static.newFromRemoval( doc, new ve.Range( 3, 9 ) );
},
afterHtml: '<p>x</p><p>efgh</p>',
// BUG! <i></i> is not restored
// EXPECTED: Same as beforeHtml
beforeHtmlUndo: '<p>x</p><p>abcd</p><p>efgh</p>'
}
];
cases.forEach( ( caseItem ) => {
const doc = ve.dm.converter.getModelFromDom( ve.createDocumentFromHtml( caseItem.beforeHtml ) ),
tx = caseItem.transaction( doc );
doc.commit( tx );
assert.strictEqual(
ve.dm.converter.getDomFromModel( doc ).body.innerHTML,
caseItem.afterHtml,
caseItem.msg
);
doc.commit( tx.reversed() );
assert.strictEqual(
ve.dm.converter.getDomFromModel( doc ).body.innerHTML,
caseItem.beforeHtmlUndo || caseItem.beforeHtml,
caseItem.msg + ' (undo)'
);
} );
} );
QUnit.test( 'roundTripMetadata', ( assert ) => {
const beforeHtml = '<!-- w --><meta foo="x"><p>ab<meta foo="y">cd</p><p>ef<meta foo="z">gh</p>',
afterHtml = '<!-- w --><meta foo="x"><p>abc</p><meta foo="y"><p>ef<meta foo="z">gh</p>';
const doc = ve.dm.converter.getModelFromDom( ve.createDocumentFromHtml( beforeHtml ) );
const tx = ve.dm.TransactionBuilder.static.newFromRemoval( doc, new ve.Range( 10, 11 ) );
doc.commit( tx );
assert.strictEqual(
ve.dm.converter.getDomFromModel( doc ).body.innerHTML,
afterHtml,
'Metadata in ContentBranchNode gets moved outside by change to ContentBranchNode'
);
doc.commit( tx.reversed() );
assert.strictEqual(
ve.dm.converter.getDomFromModel( doc ).body.innerHTML,
beforeHtml,
'Undo restores metadata to inside ContentBranchNode'
);
} );
|