Merge "Revert "Overriding Vector's footer margin when in print mode""
[lhc/web/wiklou.git] / tests / phpunit / skins / SideBarTest.php
1 <?php
2
3 /**
4 * @group Skin
5 */
6 class SideBarTest extends MediaWikiLangTestCase {
7
8 /** A skin template, reinitialized before each test */
9 private $skin;
10 /** Local cache for sidebar messages */
11 private $messages;
12
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',
23 );
24
25 foreach ( $URL_messages as $m ) {
26 $titleName = MessageCache::singleton()->get( $m );
27 $title = Title::newFromText( $titleName );
28 $this->messages[$m]['href'] = $title->getLocalURL();
29 }
30 }
31
32 protected function setUp() {
33 parent::setUp();
34 $this->initMessagesHref();
35 $this->skin = new SkinTemplate();
36 $this->skin->getContext()->setLanguage( Language::factory( 'en' ) );
37 }
38
39 protected function tearDown() {
40 parent::tearDown();
41 $this->skin = null;
42 }
43
44 /**
45 * Internal helper to test the sidebar
46 * @param $expected
47 * @param $text
48 * @param $message (Default: '')
49 */
50 private function assertSideBar( $expected, $text, $message = '' ) {
51 $bar = array();
52 $this->skin->addToSidebarPlain( $bar, $text );
53 $this->assertEquals( $expected, $bar, $message );
54 }
55
56 function testSidebarWithOnlyTwoTitles() {
57 $this->assertSideBar(
58 array(
59 'Title1' => array(),
60 'Title2' => array(),
61 ),
62 '* Title1
63 * Title2
64 '
65 );
66 }
67
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
76 )
77 ) ),
78 '* Title
79 ** helppage|help
80 '
81 );
82 }
83
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',
94 ),
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/
101 '
102 );
103
104 }
105
106 /**
107 * bug 33321 - Make sure there's a | after transforming.
108 * @group Database
109 */
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,
122 ),
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,
128 ),
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}}
135 '
136 );
137 }
138
139
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';
145
146 $bar = array();
147 $this->skin->addToSideBarPlain( $bar, $text );
148
149 return $bar['Title'][0];
150 }
151
152 /**
153 * Simple test to verify our helper assertAttribs() is functional
154 * Please note this assume MediaWiki default settings:
155 * $wgNoFollowLinks = true
156 * $wgExternalLinkTarget = false
157 */
158 function testTestAttributesAssertionHelper() {
159 $attribs = $this->getAttribs();
160
161 $this->assertArrayHasKey( 'rel', $attribs );
162 $this->assertEquals( 'nofollow', $attribs['rel'] );
163
164 $this->assertArrayNotHasKey( 'target', $attribs );
165 }
166
167 /**
168 * Test $wgNoFollowLinks in sidebar
169 */
170 function testRespectWgnofollowlinks() {
171 global $wgNoFollowLinks;
172 $saved = $wgNoFollowLinks;
173 $wgNoFollowLinks = false;
174
175 $attribs = $this->getAttribs();
176 $this->assertArrayNotHasKey( 'rel', $attribs,
177 'External URL in sidebar do not have rel=nofollow when $wgNoFollowLinks = false'
178 );
179
180 // Restore global
181 $wgNoFollowLinks = $saved;
182 }
183
184 /**
185 * Test $wgExternaLinkTarget in sidebar
186 */
187 function testRespectExternallinktarget() {
188 global $wgExternalLinkTarget;
189 $saved = $wgExternalLinkTarget;
190
191 $wgExternalLinkTarget = '_blank';
192 $attribs = $this->getAttribs();
193 $this->assertArrayHasKey( 'target', $attribs );
194 $this->assertEquals( $attribs['target'], '_blank' );
195
196 $wgExternalLinkTarget = '_self';
197 $attribs = $this->getAttribs();
198 $this->assertArrayHasKey( 'target', $attribs );
199 $this->assertEquals( $attribs['target'], '_self' );
200
201 // Restore global
202 $wgExternalLinkTarget = $saved;
203 }
204
205 }