mediawiki-extensions-Cite/modules/ve-cite/tests/ve.ui.DiffElement.test.js
WMDE-Fisch 2a02f5311d build: Update linter libs
* "eslint-config-wikimedia": "0.26.0"
* "grunt-eslint": "24.3.0"
* "grunt-stylelint": "0.19.0"
* "stylelint-config-wikimedia": "0.16.1"

Including auto fixes.

Change-Id: Iadacfc781a48675022144bb8c9489073d0bc19e3
2023-12-12 14:21:07 +01:00

54 lines
1.7 KiB
JavaScript

'use strict';
/*!
* VisualEditor Cite-specific DiffElement tests.
*
* @copyright 2011-2018 VisualEditor Team and others; see http://ve.mit-license.org
*/
QUnit.module( 've.ui.DiffElement (Cite)' );
QUnit.test( 'Diffing', function ( assert ) {
const spacer = '<div class="ve-ui-diffElement-spacer">⋮</div>',
ref = function ( text, num ) {
const dataMw = {
name: 'ref',
body: { html: text }
// attrs doesn't get set in preview mode
};
return '<sup typeof="mw:Extension/ref" data-mw="' + JSON.stringify( dataMw ).replace( /"/g, '&quot;' ) + '" class="mw-ref reference">' +
'<a style="counter-reset: mw-Ref ' + num + ';"><span class="mw-reflink-text">[' + num + ']</span></a>' +
'</sup>';
},
cases = [
{
msg: 'Simple ref change',
oldDoc: ve.dm.example.singleLine`
<p>${ ref( 'Foo' ) }${ ref( 'Bar' ) }${ ref( 'Baz' ) }</p>
<h2>Notes</h2>
<div typeof="mw:Extension/references" data-mw="{&quot;name&quot;:&quot;references&quot;}"></div>
`,
newDoc: ve.dm.example.singleLine`
<p>${ ref( 'Foo' ) }${ ref( 'Bar ish' ) }${ ref( 'Baz' ) }</p>
<h2>Notes</h2>
<div typeof="mw:Extension/references" data-mw="{&quot;name&quot;:&quot;references&quot;}"></div>
`,
expected: ve.dm.example.singleLine`
${ spacer }
<h2 data-diff-action="none">Notes</h2>
<ol>
<li value="1"><p data-diff-action="none">Foo</p></li>
<li value="2"><p>Bar<ins data-diff-action="insert"> ish</ins></p></li>
<li value="3"><p data-diff-action="none">Baz</p></li>
</ol>
`
}
];
cases.forEach( function ( caseItem ) {
ve.test.utils.runDiffElementTest( assert, caseItem );
} );
} );