MediaWiki REL1_33
SideBarTest.php
Go to the documentation of this file.
1<?php
2
7
12 private $skin;
14 private $messages;
15
17 private function initMessagesHref() {
18 # List of default messages for the sidebar. The sidebar doesn't care at
19 # all whether they are full URLs, interwiki links or local titles.
20 $URL_messages = [
21 'mainpage',
22 'portal-url',
23 'currentevents-url',
24 'recentchanges-url',
25 'randompage-url',
26 'helppage',
27 ];
28
29 # We're assuming that isValidURI works as advertised: it's also
30 # tested separately, in tests/phpunit/includes/HttpTest.php.
31 foreach ( $URL_messages as $m ) {
32 $titleName = MessageCache::singleton()->get( $m );
33 if ( Http::isValidURI( $titleName ) ) {
34 $this->messages[$m]['href'] = $titleName;
35 } else {
36 $title = Title::newFromText( $titleName );
37 $this->messages[$m]['href'] = $title->getLocalURL();
38 }
39 }
40 }
41
42 protected function setUp() {
43 parent::setUp();
44 $this->initMessagesHref();
45 $this->skin = new SkinTemplate();
46 $this->skin->getContext()->setLanguage( Language::factory( 'en' ) );
47 }
48
56 private function assertSideBar( $expected, $text, $message = '' ) {
57 $bar = [];
58 $this->skin->addToSidebarPlain( $bar, $text );
59 $this->assertEquals( $expected, $bar, $message );
60 }
61
65 public function testSidebarWithOnlyTwoTitles() {
66 $this->assertSideBar(
67 [
68 'Title1' => [],
69 'Title2' => [],
70 ],
71 '* Title1
72* Title2
73'
74 );
75 }
76
80 public function testExpandMessages() {
81 $this->assertSideBar(
82 [ 'Title' => [
83 [
84 'text' => 'Help',
85 'href' => $this->messages['helppage']['href'],
86 'id' => 'n-help',
87 'active' => null
88 ]
89 ] ],
90 '* Title
91** helppage|help
92'
93 );
94 }
95
100 $this->setMwGlobals( [
101 'wgNoFollowLinks' => true,
102 'wgNoFollowDomainExceptions' => [],
103 'wgNoFollowNsExceptions' => [],
104 ] );
105 $this->assertSideBar(
106 [ 'Title' => [
107 # ** https://www.mediawiki.org/| Home
108 [
109 'text' => 'Home',
110 'href' => 'https://www.mediawiki.org/',
111 'id' => 'n-Home',
112 'active' => null,
113 'rel' => 'nofollow',
114 ],
115 # ** http://valid.no.desc.org/
116 # ... skipped since it is missing a pipe with a description
117 ] ],
118 '* Title
119** https://www.mediawiki.org/| Home
120** http://valid.no.desc.org/
121'
122 );
123 }
124
130 public function testTrickyPipe() {
131 $this->assertSideBar(
132 [ 'Title' => [
133 # The first 2 are skipped
134 # Doesn't really test the url properly
135 # because it will vary with $wgArticlePath et al.
136 # ** Baz|Fred
137 [
138 'text' => 'Fred',
139 'href' => Title::newFromText( 'Baz' )->getLocalURL(),
140 'id' => 'n-Fred',
141 'active' => null,
142 ],
143 [
144 'text' => 'title-to-display',
145 'href' => Title::newFromText( 'page-to-go-to' )->getLocalURL(),
146 'id' => 'n-title-to-display',
147 'active' => null,
148 ],
149 ] ],
150 '* Title
151** {{PAGENAME|Foo}}
152** Bar
153** Baz|Fred
154** {{PLURAL:1|page-to-go-to{{int:pipe-separator/en}}title-to-display|branch not taken}}
155'
156 );
157 }
158
159 #### Attributes for external links ##########################
160 private function getAttribs() {
161 # Sidebar text we will use everytime
162 $text = '* Title
163** https://www.mediawiki.org/| Home';
164
165 $bar = [];
166 $this->skin->addToSidebarPlain( $bar, $text );
167
168 return $bar['Title'][0];
169 }
170
176 $this->setMwGlobals( [
177 'wgNoFollowLinks' => true,
178 'wgNoFollowDomainExceptions' => [],
179 'wgNoFollowNsExceptions' => [],
180 'wgExternalLinkTarget' => false,
181 ] );
182 $attribs = $this->getAttribs();
183
184 $this->assertArrayHasKey( 'rel', $attribs );
185 $this->assertEquals( 'nofollow', $attribs['rel'] );
186
187 $this->assertArrayNotHasKey( 'target', $attribs );
188 }
189
194 public function testRespectWgnofollowlinks() {
195 $this->setMwGlobals( 'wgNoFollowLinks', false );
196
197 $attribs = $this->getAttribs();
198 $this->assertArrayNotHasKey( 'rel', $attribs,
199 'External URL in sidebar do not have rel=nofollow when $wgNoFollowLinks = false'
200 );
201 }
202
208 public function testRespectExternallinktarget( $externalLinkTarget ) {
209 $this->setMwGlobals( 'wgExternalLinkTarget', $externalLinkTarget );
210
211 $attribs = $this->getAttribs();
212 $this->assertArrayHasKey( 'target', $attribs );
213 $this->assertEquals( $attribs['target'], $externalLinkTarget );
214 }
215
216 public static function dataRespectExternallinktarget() {
217 return [
218 [ '_blank' ],
219 [ '_self' ],
220 ];
221 }
222}
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for and distribution as defined by Sections through of this document Licensor shall mean the copyright owner or entity authorized by the copyright owner that is granting the License Legal Entity shall mean the union of the acting entity and all other entities that control are controlled by or are under common control with that entity For the purposes of this definition control direct or to cause the direction or management of such whether by contract or including but not limited to software source documentation and configuration files Object form shall mean any form resulting from mechanical transformation or translation of a Source including but not limited to compiled object generated and conversions to other media types Work shall mean the work of whether in Source or Object made available under the as indicated by a copyright notice that is included in or attached to the whether in Source or Object that is based or other modifications as a an original work of authorship For the purposes of this Derivative Works shall not include works that remain separable or merely the Work and Derivative Works thereof Contribution shall mean any work of including the original version of the Work and any modifications or additions to that Work or Derivative Works that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner For the purposes of this submitted means any form of or written communication sent to the Licensor or its including but not limited to communication on electronic mailing source code control and issue tracking systems that are managed or on behalf the Licensor for the purpose of discussing and improving the but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as Not a Contribution Contributor shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work Grant of Copyright License Subject to the terms and conditions of this each Contributor hereby grants to You a non no royalty irrevocable copyright license to prepare Derivative Works publicly display
shown</td >< td > a href
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
static isValidURI( $uri)
Check that the given URI is a valid one.
Definition Http.php:149
Base class that store and restore the Language objects.
setMwGlobals( $pairs, $value=null)
Sets a global, maintaining a stashed version of the previous global to be restored in tearDown.
testSidebarWithOnlyTwoTitles()
SkinTemplate::addToSidebarPlain.
SkinTemplate $skin
A skin template, reinitialized before each test.
testExpandMessages()
SkinTemplate::addToSidebarPlain.
testRespectWgnofollowlinks()
Test $wgNoFollowLinks in sidebar Skin::addToSidebarPlain.
testTrickyPipe()
T35321 - Make sure there's a | after transforming.
testTestAttributesAssertionHelper()
Simple test to verify our helper assertAttribs() is functional @coversNothing.
initMessagesHref()
Build $this->messages array.
$messages
Local cache for sidebar messages.
assertSideBar( $expected, $text, $message='')
Internal helper to test the sidebar.
static dataRespectExternallinktarget()
testRespectExternallinktarget( $externalLinkTarget)
Test $wgExternaLinkTarget in sidebar dataRespectExternallinktarget Skin::addToSidebarPlain.
testExternalUrlsRequireADescription()
SkinTemplate::addToSidebarPlain.
Base class for template-based skins.
Represents a title within MediaWiki.
Definition Title.php:40
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses after processing & $attribs
Definition hooks.txt:2012
passed in as a query string parameter to the various URLs constructed here(i.e. $prevlink) $ldel you ll need to handle error messages
Definition hooks.txt:1290
Further assume MyExt::onFoo needs service Bar
scripts txt MediaWiki primary scripts are in the root directory of the software Users should only use these scripts to access the wiki There are also some php that aren t primary scripts but helper files and won t work if they are accessed directly by the web Primary see https
Definition scripts.txt:24
title