3 * To change this template, choose Tools | Templates
4 * and open the template in the editor.
7 class InstallDocFormatterTest
extends MediaWikiTestCase
{
9 * @covers InstallDocFormatter::format
10 * @dataProvider provideDocFormattingTests
12 public function testFormat( $expected, $unformattedText, $message = '' ) {
15 InstallDocFormatter
::format( $unformattedText ),
21 * Provider for testFormat()
23 public static function provideDocFormattingTests() {
24 # Format: (expected string, unformattedText string, optional message)
26 # Escape some wikitext
27 array( 'Install <tag>', 'Install <tag>', 'Escaping <' ),
28 array( 'Install {{template}}', 'Install {{template}}', 'Escaping [[' ),
29 array( 'Install [[page]]', 'Install [[page]]', 'Escaping {{' ),
30 array( 'Install __TOC__', 'Install __TOC__', 'Escaping __' ),
31 array( 'Install ', "Install \r", 'Removing \r' ),
33 # Transform \t{1,2} into :{1,2}
34 array( ':One indentation', "\tOne indentation", 'Replacing a single \t' ),
35 array( '::Two indentations', "\t\tTwo indentations", 'Replacing 2 x \t' ),
37 # Transform 'T123' links
39 '<span class="config-plainlink">[https://phabricator.wikimedia.org/T123 T123]</span>',
40 'T123', 'Testing T123 links' ),
42 'bug <span class="config-plainlink">[https://phabricator.wikimedia.org/T123 T123]</span>',
43 'bug T123', 'Testing bug T123 links' ),
45 '(<span class="config-plainlink">[https://phabricator.wikimedia.org/T987654 T987654]</span>)',
46 '(T987654)', 'Testing (T987654) links' ),
48 # "Tabc" shouldn't work
49 array( 'Tfoobar', 'Tfoobar', "Don't match T followed by non-digits" ),
50 array( 'T!!fakefake!!', 'T!!fakefake!!', "Don't match T followed by non-digits" ),
52 # Transform 'bug 123' links
54 '<span class="config-plainlink">[https://bugzilla.wikimedia.org/123 bug 123]</span>',
55 'bug 123', 'Testing bug 123 links' ),
57 '(<span class="config-plainlink">[https://bugzilla.wikimedia.org/987654 bug 987654]</span>)',
58 '(bug 987654)', 'Testing (bug 987654) links' ),
60 # "bug abc" shouldn't work
61 array( 'bug foobar', 'bug foobar', "Don't match bug followed by non-digits" ),
62 array( 'bug !!fakefake!!', 'bug !!fakefake!!', "Don't match bug followed by non-digits" ),
64 # Transform '$wgFooBar' links
66 '<span class="config-plainlink">'
67 . '[https://www.mediawiki.org/wiki/Manual:$wgFooBar $wgFooBar]</span>',
68 '$wgFooBar', 'Testing basic $wgFooBar' ),
70 '<span class="config-plainlink">'
71 . '[https://www.mediawiki.org/wiki/Manual:$wgFooBar45 $wgFooBar45]</span>',
72 '$wgFooBar45', 'Testing $wgFooBar45 (with numbers)' ),
74 '<span class="config-plainlink">'
75 . '[https://www.mediawiki.org/wiki/Manual:$wgFoo_Bar $wgFoo_Bar]</span>',
76 '$wgFoo_Bar', 'Testing $wgFoo_Bar (with underscore)' ),
78 # Icky variables that shouldn't link
82 'Testing $myAwesomeVariable (not starting with $wg)'
84 array( '$()not!a&Var', '$()not!a&Var', 'Testing $()not!a&Var (obviously not a variable)' ),