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 * @licence GNU GPL v2+
30 * @author Jeroen De Dauw < jeroendedauw@gmail.com >
39 public static function getSites() {
43 $site->setGlobalId( 'foobar' );
46 $site = new MediaWikiSite();
47 $site->setGlobalId( 'enwiktionary' );
48 $site->setGroup( 'wiktionary' );
49 $site->setLanguageCode( 'en' );
50 $site->addNavigationId( 'enwiktionary' );
51 $site->setPath( MediaWikiSite
::PATH_PAGE
, "https://en.wiktionary.org/wiki/$1" );
52 $site->setPath( MediaWikiSite
::PATH_FILE
, "https://en.wiktionary.org/w/$1" );
55 $site = new MediaWikiSite();
56 $site->setGlobalId( 'dewiktionary' );
57 $site->setGroup( 'wiktionary' );
58 $site->setLanguageCode( 'de' );
59 $site->addInterwikiId( 'dewiktionary' );
60 $site->addInterwikiId( 'wiktionaryde' );
61 $site->setPath( MediaWikiSite
::PATH_PAGE
, "https://de.wiktionary.org/wiki/$1" );
62 $site->setPath( MediaWikiSite
::PATH_FILE
, "https://de.wiktionary.org/w/$1" );
66 $site->setGlobalId( 'spam' );
67 $site->setGroup( 'spam' );
68 $site->setLanguageCode( 'en' );
69 $site->addNavigationId( 'spam' );
70 $site->addNavigationId( 'spamz' );
71 $site->addInterwikiId( 'spamzz' );
72 $site->setLinkPath( "http://spamzz.test/testing/" );
75 foreach ( array( 'en', 'de', 'nl', 'sv', 'sr', 'no', 'nn' ) as $langCode ) {
76 $site = new MediaWikiSite();
77 $site->setGlobalId( $langCode . 'wiki' );
78 $site->setGroup( 'wikipedia' );
79 $site->setLanguageCode( $langCode );
80 $site->addInterwikiId( $langCode );
81 $site->addNavigationId( $langCode );
82 $site->setPath( MediaWikiSite
::PATH_PAGE
, "https://$langCode.wikipedia.org/wiki/$1" );
83 $site->setPath( MediaWikiSite
::PATH_FILE
, "https://$langCode.wikipedia.org/w/$1" );
91 * Inserts sites into the database for the unit tests that need them.
95 public static function insertIntoDb() {
96 $sitesTable = SiteSQLStore
::newInstance();
98 $sitesTable->saveSites( TestSites
::getSites() );