Add two new debug log groups
[lhc/web/wiklou.git] / tests / phpunit / includes / installer / InstallDocFormatterTest.php
1 <?php
2 /*
3 * To change this template, choose Tools | Templates
4 * and open the template in the editor.
5 */
6
7 class InstallDocFormatterTest extends MediaWikiTestCase {
8 /**
9 * @covers InstallDocFormatter::format
10 * @dataProvider provideDocFormattingTests
11 */
12 public function testFormat( $expected, $unformattedText, $message = '' ) {
13 $this->assertEquals(
14 $expected,
15 InstallDocFormatter::format( $unformattedText ),
16 $message
17 );
18 }
19
20 /**
21 * Provider for testFormat()
22 */
23 public static function provideDocFormattingTests() {
24 # Format: (expected string, unformattedText string, optional message)
25 return array(
26 # Escape some wikitext
27 array( 'Install &lt;tag>', 'Install <tag>', 'Escaping <' ),
28 array( 'Install &#123;&#123;template}}', 'Install {{template}}', 'Escaping [[' ),
29 array( 'Install &#91;&#91;page]]', 'Install [[page]]', 'Escaping {{' ),
30 array( 'Install &#95;&#95;TOC&#95;&#95;', 'Install __TOC__', 'Escaping __' ),
31 array( 'Install ', "Install \r", 'Removing \r' ),
32
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' ),
36
37 # Transform 'bug 123' links
38 array(
39 '<span class="config-plainlink">[https://bugzilla.wikimedia.org/123 bug 123]</span>',
40 'bug 123', 'Testing bug 123 links' ),
41 array(
42 '(<span class="config-plainlink">[https://bugzilla.wikimedia.org/987654 bug 987654]</span>)',
43 '(bug 987654)', 'Testing (bug 987654) links' ),
44
45 # "bug abc" shouldn't work
46 array( 'bug foobar', 'bug foobar', "Don't match bug followed by non-digits" ),
47 array( 'bug !!fakefake!!', 'bug !!fakefake!!', "Don't match bug followed by non-digits" ),
48
49 # Transform '$wgFooBar' links
50 array(
51 '<span class="config-plainlink">[http://www.mediawiki.org/wiki/Manual:$wgFooBar $wgFooBar]</span>',
52 '$wgFooBar', 'Testing basic $wgFooBar' ),
53 array(
54 '<span class="config-plainlink">[http://www.mediawiki.org/wiki/Manual:$wgFooBar45 $wgFooBar45]</span>',
55 '$wgFooBar45', 'Testing $wgFooBar45 (with numbers)' ),
56 array(
57 '<span class="config-plainlink">[http://www.mediawiki.org/wiki/Manual:$wgFoo_Bar $wgFoo_Bar]</span>',
58 '$wgFoo_Bar', 'Testing $wgFoo_Bar (with underscore)' ),
59
60 # Icky variables that shouldn't link
61 array( '$myAwesomeVariable', '$myAwesomeVariable', 'Testing $myAwesomeVariable (not starting with $wg)' ),
62 array( '$()not!a&Var', '$()not!a&Var', 'Testing $()not!a&Var (obviously not a variable)' ),
63 );
64 }
65 }