4 * Tests for the SiteList 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
29 * @licence GNU GPL v2+
30 * @author Jeroen De Dauw < jeroendedauw@gmail.com >
32 class SiteListTest
extends MediaWikiTestCase
{
35 * Returns instances of SiteList implementing objects.
38 public function siteListProvider() {
39 $sitesArrays = $this->siteArrayProvider();
41 $listInstances = array();
43 foreach ( $sitesArrays as $sitesArray ) {
44 $listInstances[] = new SiteList( $sitesArray[0] );
47 return $this->arrayWrap( $listInstances );
51 * Returns arrays with instances of Site implementing objects.
54 public function siteArrayProvider() {
55 $sites = TestSites
::getSites();
57 $siteArrays = array();
59 $siteArrays[] = $sites;
61 $siteArrays[] = array( array_shift( $sites ) );
63 $siteArrays[] = array( array_shift( $sites ), array_shift( $sites ) );
65 return $this->arrayWrap( $siteArrays );
69 * @dataProvider siteListProvider
70 * @param SiteList $sites
72 public function testIsEmpty( SiteList
$sites ) {
73 $this->assertEquals( count( $sites ) === 0, $sites->isEmpty() );
77 * @dataProvider siteListProvider
78 * @param SiteList $sites
80 public function testGetSiteByGlobalId( SiteList
$sites ) {
81 if ( $sites->isEmpty() ) {
82 $this->assertTrue( true );
87 foreach ( $sites as $site ) {
88 $this->assertEquals( $site, $sites->getSite( $site->getGlobalId() ) );
94 * @dataProvider siteListProvider
95 * @param SiteList $sites
97 public function testGetSiteByInternalId( $sites ) {
101 foreach ( $sites as $site ) {
102 if ( is_integer( $site->getInternalId() ) ) {
103 $this->assertEquals( $site, $sites->getSiteByInternalId( $site->getInternalId() ) );
107 $this->assertTrue( true );
111 * @dataProvider siteListProvider
112 * @param SiteList $sites
114 public function testHasGlobalId( $sites ) {
115 $this->assertFalse( $sites->hasSite( 'non-existing-global-id' ) );
116 $this->assertFalse( $sites->hasInternalId( 720101010 ) );
118 if ( !$sites->isEmpty() ) {
122 foreach ( $sites as $site ) {
123 $this->assertTrue( $sites->hasSite( $site->getGlobalId() ) );
129 * @dataProvider siteListProvider
130 * @param SiteList $sites
132 public function testHasInternallId( $sites ) {
136 foreach ( $sites as $site ) {
137 if ( is_integer( $site->getInternalId() ) ) {
138 $this->assertTrue( $site, $sites->hasInternalId( $site->getInternalId() ) );
142 $this->assertFalse( $sites->hasInternalId( -1 ) );
146 * @dataProvider siteListProvider
147 * @param SiteList $sites
149 public function testGetGlobalIdentifiers( SiteList
$sites ) {
150 $identifiers = $sites->getGlobalIdentifiers();
152 $this->assertTrue( is_array( $identifiers ) );
159 foreach ( $sites as $site ) {
160 $expected[] = $site->getGlobalId();
163 $this->assertArrayEquals( $expected, $identifiers );
167 * @dataProvider siteListProvider
171 * @param SiteList $list
173 public function testSerialization( SiteList
$list ) {
174 $serialization = serialize( $list );
176 * @var SiteArray $copy
178 $copy = unserialize( $serialization );
180 $this->assertArrayEquals( $list->getGlobalIdentifiers(), $copy->getGlobalIdentifiers() );
185 foreach ( $list as $site ) {
186 $this->assertTrue( $copy->hasInternalId( $site->getInternalId() ) );