Remove superfluous re- from confirmemail_body_set
[mediawiki.git] / tests / phpunit / includes / site / MediaWikiSiteTest.php
blobe0092a55a271b42f67259cd4ad55733fd67c4022
1 <?php
3 /**
4 * Tests for the MediaWikiSite class.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 * http://www.gnu.org/copyleft/gpl.html
21 * @file
22 * @since 1.21
24 * @ingroup Site
25 * @ingroup Test
27 * @group Site
29 * @licence GNU GPL v2+
30 * @author Jeroen De Dauw < jeroendedauw@gmail.com >
32 class MediaWikiSiteTest extends SiteTest {
34 public function testNormalizePageTitle() {
35 $site = new MediaWikiSite();
36 $site->setGlobalId( 'enwiki' );
38 //NOTE: this does not actually call out to the enwiki site to perform the normalization,
39 // but uses a local Title object to do so. This is hardcoded on SiteLink::normalizePageTitle
40 // for the case that MW_PHPUNIT_TEST is set.
41 $this->assertEquals( 'Foo', $site->normalizePageName( ' foo ' ) );
44 public function fileUrlProvider() {
45 return array(
46 // url, filepath, path arg, expected
47 array( 'https://en.wikipedia.org', '/w/$1', 'api.php', 'https://en.wikipedia.org/w/api.php' ),
48 array( 'https://en.wikipedia.org', '/w/', 'api.php', 'https://en.wikipedia.org/w/' ),
49 array( 'https://en.wikipedia.org', '/foo/page.php?name=$1', 'api.php', 'https://en.wikipedia.org/foo/page.php?name=api.php' ),
50 array( 'https://en.wikipedia.org', '/w/$1', '', 'https://en.wikipedia.org/w/' ),
51 array( 'https://en.wikipedia.org', '/w/$1', 'foo/bar/api.php', 'https://en.wikipedia.org/w/foo/bar/api.php' ),
55 /**
56 * @dataProvider fileUrlProvider
58 public function testGetFileUrl( $url, $filePath, $pathArgument, $expected ) {
59 $site = new MediaWikiSite();
60 $site->setFilePath( $url . $filePath );
62 $this->assertEquals( $expected, $site->getFileUrl( $pathArgument ) );
65 public static function provideGetPageUrl() {
66 return array(
67 // path, page, expected substring
68 array( 'http://acme.test/wiki/$1', 'Berlin', '/wiki/Berlin' ),
69 array( 'http://acme.test/wiki/', 'Berlin', '/wiki/' ),
70 array( 'http://acme.test/w/index.php?title=$1', 'Berlin', '/w/index.php?title=Berlin' ),
71 array( 'http://acme.test/wiki/$1', '', '/wiki/' ),
72 array( 'http://acme.test/wiki/$1', 'Berlin/sub page', '/wiki/Berlin/sub_page' ),
73 array( 'http://acme.test/wiki/$1', 'Cork (city) ', '/Cork_(city)' ),
74 array( 'http://acme.test/wiki/$1', 'M&M', '/wiki/M%26M' ),
78 /**
79 * @dataProvider provideGetPageUrl
81 public function testGetPageUrl( $path, $page, $expected ) {
82 $site = new MediaWikiSite();
83 $site->setLinkPath( $path );
85 $this->assertContains( $path, $site->getPageUrl() );
86 $this->assertContains( $expected, $site->getPageUrl( $page ) );