/*! * VisualEditor MW-specific DiffElement tests. * * @copyright See AUTHORS.txt */ QUnit.module( 've.ui.DiffElement (MW)', ve.test.utils.newMwEnvironment() ); QUnit.test.each( 'Diffing', [ { msg: 'Change template param', oldDoc: ve.test.utils.addBaseTag( ve.dm.mwExample.MWTransclusion.blockOpen + ve.dm.mwExample.MWTransclusion.blockContent, ve.dm.example.baseUri ), newDoc: ve.test.utils.addBaseTag( ve.dm.mwExample.MWTransclusion.blockOpenModified + ve.dm.mwExample.MWTransclusion.blockContent, ve.dm.example.baseUri ), expected: ( ve.dm.mwExample.MWTransclusion.blockOpenModified + ve.dm.mwExample.MWTransclusion.blockContent ) // FIXME: Use DOM modification instead of string replaces .replace( /#mwt1"/g, '#mwt1" data-diff-action="structural-change" data-diff-id="0"' ), expectedDescriptions: [ ve.dm.example.singleLine`
visualeditor-changedesc-mwtransclusion
` ] }, { msg: 'Changed width of block image', oldDoc: ve.test.utils.addBaseTag( ve.dm.mwExample.MWBlockImage.html, ve.dm.example.baseUri ), newDoc: ve.test.utils.addBaseTag( ve.dm.mwExample.MWBlockImage.html.replace( 'width="1"', 'width="3"' ), ve.dm.example.baseUri ), expected: ve.dm.mwExample.MWBlockImage.html // FIXME: Use DOM modification instead of string replaces .replace( 'width="1"', 'width="3"' ) .replace( 'href="./Foo"', 'href="' + new URL( './Foo', ve.dm.example.baseUri ) + '"' ) .replace( 'foobar"', 'foobar" data-diff-action="structural-change" data-diff-id="0"' ), expectedDescriptions: [ ve.dm.example.singleLine`
visualeditor-changedesc-image-size, 1visualeditor-dimensionswidget-times2visualeditor-dimensionswidget-px, 3visualeditor-dimensionswidget-times2visualeditor-dimensionswidget-px
` ] } ], ( assert, caseItem ) => { ve.test.utils.runDiffElementTest( assert, caseItem ); } );