2013-05-15 20:45:14 +00:00
|
|
|
/*!
|
2013-06-11 19:16:04 +00:00
|
|
|
* VisualEditor DataModel MWTransclusionNode tests.
|
2013-05-15 20:45:14 +00:00
|
|
|
*
|
2023-12-01 16:06:11 +00:00
|
|
|
* @copyright See AUTHORS.txt
|
2013-05-15 20:45:14 +00:00
|
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
2021-08-25 08:31:34 +00:00
|
|
|
QUnit.module( 've.dm.MWTransclusionNode' );
|
2013-05-15 20:45:14 +00:00
|
|
|
|
2024-05-01 17:25:33 +00:00
|
|
|
QUnit.test.each( 'getWikitext', {
|
|
|
|
'mix of numbered and named parameters': {
|
2014-08-22 20:50:48 +00:00
|
|
|
mw: {
|
|
|
|
target: { wt: 'foo' },
|
|
|
|
params: {
|
|
|
|
1: { wt: 'bar' },
|
|
|
|
baz: { wt: 'quux' }
|
2013-05-15 20:45:14 +00:00
|
|
|
}
|
|
|
|
},
|
2014-08-22 20:50:48 +00:00
|
|
|
wikitext: '{{foo|1=bar|baz=quux}}'
|
2013-05-15 20:45:14 +00:00
|
|
|
},
|
2024-05-01 17:25:33 +00:00
|
|
|
'parameter with self-closing nowiki': {
|
2014-08-22 20:50:48 +00:00
|
|
|
mw: {
|
|
|
|
target: { wt: 'foo' },
|
|
|
|
params: {
|
|
|
|
bar: { wt: 'l\'<nowiki />\'\'\'Étranger\'\'\'' }
|
2013-05-15 20:45:14 +00:00
|
|
|
}
|
|
|
|
},
|
2014-08-22 20:50:48 +00:00
|
|
|
wikitext: '{{foo|bar=l\'<nowiki />\'\'\'Étranger\'\'\'}}'
|
2013-05-15 20:45:14 +00:00
|
|
|
},
|
2024-05-01 17:25:33 +00:00
|
|
|
'parameter with self-closing nowiki without space': {
|
2014-08-22 20:50:48 +00:00
|
|
|
mw: {
|
|
|
|
target: { wt: 'foo' },
|
|
|
|
params: {
|
|
|
|
bar: { wt: 'l\'<nowiki/>\'\'\'Étranger\'\'\'' }
|
2013-05-15 20:45:14 +00:00
|
|
|
}
|
|
|
|
},
|
2014-08-22 20:50:48 +00:00
|
|
|
wikitext: '{{foo|bar=l\'<nowiki/>\'\'\'Étranger\'\'\'}}'
|
2013-05-15 20:45:14 +00:00
|
|
|
},
|
2024-05-01 17:25:33 +00:00
|
|
|
'parameter with spanning-nowiki': {
|
2014-08-22 20:50:48 +00:00
|
|
|
mw: {
|
|
|
|
target: { wt: 'foo' },
|
|
|
|
params: {
|
|
|
|
bar: { wt: 'You should use <nowiki>\'\'\'</nowiki> to make things bold.' }
|
2013-05-15 20:45:14 +00:00
|
|
|
}
|
|
|
|
},
|
2014-08-22 20:50:48 +00:00
|
|
|
wikitext: '{{foo|bar=You should use <nowiki>\'\'\'</nowiki> to make things bold.}}'
|
2013-05-15 20:45:14 +00:00
|
|
|
},
|
2024-05-01 17:25:33 +00:00
|
|
|
'parameter with spanning-nowiki and nested transclusion': {
|
2014-08-22 20:50:48 +00:00
|
|
|
mw: {
|
|
|
|
target: { wt: 'foo' },
|
|
|
|
params: {
|
|
|
|
bar: { wt: 'You should try using <nowiki>{{ping|foo=bar|2=1}}</nowiki> as a transclusion!' }
|
2013-05-15 20:45:14 +00:00
|
|
|
}
|
|
|
|
},
|
2014-08-22 20:50:48 +00:00
|
|
|
wikitext: '{{foo|bar=You should try using <nowiki>{{ping|foo=bar|2=1}}</nowiki> as a transclusion!}}'
|
2013-06-27 19:12:44 +00:00
|
|
|
},
|
2024-05-01 17:25:33 +00:00
|
|
|
'parameter containing another template invocation': {
|
2014-08-22 20:50:48 +00:00
|
|
|
mw: {
|
|
|
|
target: { wt: 'foo' },
|
|
|
|
params: {
|
|
|
|
bar: { wt: '{{ping|foo=bar|2=1}}' }
|
2013-06-27 19:12:44 +00:00
|
|
|
}
|
|
|
|
},
|
2014-08-22 20:50:48 +00:00
|
|
|
wikitext: '{{foo|bar={{ping|foo=bar|2=1}}}}'
|
2013-06-27 19:12:44 +00:00
|
|
|
},
|
2024-05-01 17:25:33 +00:00
|
|
|
'parameter containing another parameter': {
|
2014-08-22 20:50:48 +00:00
|
|
|
mw: {
|
|
|
|
target: { wt: 'foo' },
|
|
|
|
params: {
|
|
|
|
bar: { wt: '{{{1}}}' }
|
2013-06-27 19:12:44 +00:00
|
|
|
}
|
|
|
|
},
|
2014-08-22 20:50:48 +00:00
|
|
|
wikitext: '{{foo|bar={{{1}}}}}'
|
2013-06-27 19:12:44 +00:00
|
|
|
},
|
2024-05-01 17:25:33 +00:00
|
|
|
'parameter containing unmatched close brackets and floating pipes': {
|
2014-08-22 20:50:48 +00:00
|
|
|
mw: {
|
|
|
|
target: { wt: 'foo' },
|
|
|
|
params: {
|
|
|
|
bar: { wt: '}} | {{a|{{b}}}} |' }
|
2013-06-27 19:12:44 +00:00
|
|
|
}
|
|
|
|
},
|
2014-08-22 20:50:48 +00:00
|
|
|
wikitext: '{{foo|bar=<nowiki>}}</nowiki> <nowiki>|</nowiki> {{a|{{b}}}} <nowiki>|</nowiki>}}'
|
2013-07-11 14:45:18 +00:00
|
|
|
},
|
2024-05-01 17:25:33 +00:00
|
|
|
'parameter containing piped link': {
|
2014-08-22 20:50:48 +00:00
|
|
|
mw: {
|
|
|
|
target: { wt: 'foo' },
|
|
|
|
params: {
|
|
|
|
bar: { wt: '[[baz|quux]]' }
|
2013-07-11 14:45:18 +00:00
|
|
|
}
|
|
|
|
},
|
2014-08-22 20:50:48 +00:00
|
|
|
wikitext: '{{foo|bar=[[baz|quux]]}}'
|
2024-05-01 17:25:33 +00:00
|
|
|
}
|
|
|
|
}, ( assert, caseItem ) => {
|
2021-04-29 14:42:18 +00:00
|
|
|
const node = new ve.dm.MWTransclusionNode(
|
2024-05-01 13:02:29 +00:00
|
|
|
{ type: 'mwTransclusion', attributes: { mw: caseItem.mw } }
|
2013-05-15 20:45:14 +00:00
|
|
|
);
|
2024-05-01 17:25:33 +00:00
|
|
|
assert.strictEqual( node.getWikitext(), caseItem.wikitext );
|
|
|
|
}
|
|
|
|
);
|