4 * Holds sites for testing purposes.
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
29 * @author Jeroen De Dauw < jeroendedauw@gmail.com >
38 public static function getSites() {
42 $site->setGlobalId( 'foobar' );
45 $site = new MediaWikiSite();
46 $site->setGlobalId( 'enwiktionary' );
47 $site->setGroup( 'wiktionary' );
48 $site->setLanguageCode( 'en' );
49 $site->addNavigationId( 'enwiktionary' );
50 $site->setPath( MediaWikiSite
::PATH_PAGE
, "https://en.wiktionary.org/wiki/$1" );
51 $site->setPath( MediaWikiSite
::PATH_FILE
, "https://en.wiktionary.org/w/$1" );
54 $site = new MediaWikiSite();
55 $site->setGlobalId( 'dewiktionary' );
56 $site->setGroup( 'wiktionary' );
57 $site->setLanguageCode( 'de' );
58 $site->addInterwikiId( 'dewiktionary' );
59 $site->addInterwikiId( 'wiktionaryde' );
60 $site->setPath( MediaWikiSite
::PATH_PAGE
, "https://de.wiktionary.org/wiki/$1" );
61 $site->setPath( MediaWikiSite
::PATH_FILE
, "https://de.wiktionary.org/w/$1" );
65 $site->setGlobalId( 'spam' );
66 $site->setGroup( 'spam' );
67 $site->setLanguageCode( 'en' );
68 $site->addNavigationId( 'spam' );
69 $site->addNavigationId( 'spamz' );
70 $site->addInterwikiId( 'spamzz' );
71 $site->setLinkPath( "http://spamzz.test/testing/" );
75 * Add at least one right-to-left language (current RTL languages in MediaWiki core are:
76 * aeb, ar, arc, arz, azb, bcc, bqi, ckb, dv, en_rtl, fa, glk, he, khw, kk_arab, kk_cn,
77 * ks_arab, ku_arab, lrc, mzn, pnb, ps, sd, ug_arab, ur, yi).
82 'fa', // right-to-left
89 foreach ( $languageCodes as $langCode ) {
90 $site = new MediaWikiSite();
91 $site->setGlobalId( $langCode . 'wiki' );
92 $site->setGroup( 'wikipedia' );
93 $site->setLanguageCode( $langCode );
94 $site->addInterwikiId( $langCode );
95 $site->addNavigationId( $langCode );
96 $site->setPath( MediaWikiSite
::PATH_PAGE
, "https://$langCode.wikipedia.org/wiki/$1" );
97 $site->setPath( MediaWikiSite
::PATH_FILE
, "https://$langCode.wikipedia.org/w/$1" );
105 * Inserts sites into the database for the unit tests that need them.
109 public static function insertIntoDb() {
110 $sitesTable = \MediaWiki\MediaWikiServices
::getInstance()->getSiteStore();
111 $sitesTable->clear();
112 $sitesTable->saveSites( TestSites
::getSites() );