Add parser method to call parser functions
[mediawiki.git] / tests / phpunit / skins / SideBarTest.php
blob3902b68620ce60c6ecc91d190482ec4a4d36ef72
1 <?php
3 /**
4 * @group Skin
5 */
6 class SideBarTest extends MediaWikiLangTestCase {
8 /** A skin template, reinitialized before each test */
9 private $skin;
10 /** Local cache for sidebar messages */
11 private $messages;
13 /** Build $this->messages array */
14 private function initMessagesHref() {
15 # List of default messages for the sidebar:
16 $URL_messages = array(
17 'mainpage',
18 'portal-url',
19 'currentevents-url',
20 'recentchanges-url',
21 'randompage-url',
22 'helppage',
25 foreach ( $URL_messages as $m ) {
26 $titleName = MessageCache::singleton()->get( $m );
27 $title = Title::newFromText( $titleName );
28 $this->messages[$m]['href'] = $title->getLocalURL();
32 protected function setUp() {
33 parent::setUp();
34 $this->initMessagesHref();
35 $this->skin = new SkinTemplate();
36 $this->skin->getContext()->setLanguage( Language::factory( 'en' ) );
39 protected function tearDown() {
40 parent::tearDown();
41 $this->skin = null;
44 /**
45 * Internal helper to test the sidebar
46 * @param $expected
47 * @param $text
48 * @param $message (Default: '')
50 private function assertSideBar( $expected, $text, $message = '' ) {
51 $bar = array();
52 $this->skin->addToSidebarPlain( $bar, $text );
53 $this->assertEquals( $expected, $bar, $message );
56 function testSidebarWithOnlyTwoTitles() {
57 $this->assertSideBar(
58 array(
59 'Title1' => array(),
60 'Title2' => array(),
62 '* Title1
63 * Title2
68 function testExpandMessages() {
69 $this->assertSidebar(
70 array( 'Title' => array(
71 array(
72 'text' => 'Help',
73 'href' => $this->messages['helppage']['href'],
74 'id' => 'n-help',
75 'active' => null
77 ) ),
78 '* Title
79 ** helppage|help
84 function testExternalUrlsRequireADescription() {
85 $this->assertSidebar(
86 array( 'Title' => array(
87 # ** http://www.mediawiki.org/| Home
88 array(
89 'text' => 'Home',
90 'href' => 'http://www.mediawiki.org/',
91 'id' => 'n-Home',
92 'active' => null,
93 'rel' => 'nofollow',
95 # ** http://valid.no.desc.org/
96 # ... skipped since it is missing a pipe with a description
97 ) ),
98 '* Title
99 ** http://www.mediawiki.org/| Home
100 ** http://valid.no.desc.org/
107 * bug 33321 - Make sure there's a | after transforming.
108 * @group Database
110 function testTrickyPipe() {
111 $this->assertSidebar(
112 array( 'Title' => array(
113 # The first 2 are skipped
114 # Doesn't really test the url properly
115 # because it will vary with $wgArticlePath et al.
116 # ** Baz|Fred
117 array(
118 'text' => 'Fred',
119 'href' => Title::newFromText( 'Baz' )->getLocalUrl(),
120 'id' => 'n-Fred',
121 'active' => null,
123 array(
124 'text' => 'title-to-display',
125 'href' => Title::newFromText( 'page-to-go-to' )->getLocalUrl(),
126 'id' => 'n-title-to-display',
127 'active' => null,
129 ) ),
130 '* Title
131 ** {{PAGENAME|Foo}}
132 ** Bar
133 ** Baz|Fred
134 ** {{PLURAL:1|page-to-go-to{{int:pipe-separator/en}}title-to-display|branch not taken}}
140 #### Attributes for external links ##########################
141 private function getAttribs() {
142 # Sidebar text we will use everytime
143 $text = '* Title
144 ** http://www.mediawiki.org/| Home';
146 $bar = array();
147 $this->skin->addToSideBarPlain( $bar, $text );
149 return $bar['Title'][0];
153 * Simple test to verify our helper assertAttribs() is functional
154 * Please note this assume MediaWiki default settings:
155 * $wgNoFollowLinks = true
156 * $wgExternalLinkTarget = false
158 function testTestAttributesAssertionHelper() {
159 $attribs = $this->getAttribs();
161 $this->assertArrayHasKey( 'rel', $attribs );
162 $this->assertEquals( 'nofollow', $attribs['rel'] );
164 $this->assertArrayNotHasKey( 'target', $attribs );
168 * Test $wgNoFollowLinks in sidebar
170 function testRespectWgnofollowlinks() {
171 global $wgNoFollowLinks;
172 $saved = $wgNoFollowLinks;
173 $wgNoFollowLinks = false;
175 $attribs = $this->getAttribs();
176 $this->assertArrayNotHasKey( 'rel', $attribs,
177 'External URL in sidebar do not have rel=nofollow when $wgNoFollowLinks = false'
180 // Restore global
181 $wgNoFollowLinks = $saved;
185 * Test $wgExternaLinkTarget in sidebar
187 function testRespectExternallinktarget() {
188 global $wgExternalLinkTarget;
189 $saved = $wgExternalLinkTarget;
191 $wgExternalLinkTarget = '_blank';
192 $attribs = $this->getAttribs();
193 $this->assertArrayHasKey( 'target', $attribs );
194 $this->assertEquals( $attribs['target'], '_blank' );
196 $wgExternalLinkTarget = '_self';
197 $attribs = $this->getAttribs();
198 $this->assertArrayHasKey( 'target', $attribs );
199 $this->assertEquals( $attribs['target'], '_self' );
201 // Restore global
202 $wgExternalLinkTarget = $saved;