Just methods where adding "static" to the declaration was enough, I didn't do anything with providers that used $this. Initially by search and replace. There were many mistakes which I found mostly by running the PHPStorm inspection which searches for $this usage in a static method. Later I used the PHPStorm "make static" action which avoids the more obvious mistakes. Bug: T332865 Change-Id: I47ed6692945607dfa5c139d42edbd934fa4f3a36
143 lines
4.2 KiB
PHP
143 lines
4.2 KiB
PHP
<?php
|
|
|
|
/**
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
*
|
|
* @file
|
|
*
|
|
* @ingroup Site
|
|
* @ingroup Test
|
|
*
|
|
* @group Site
|
|
*
|
|
* @covers SiteExporter
|
|
*
|
|
* @author Daniel Kinzler
|
|
*/
|
|
class SiteExporterTest extends MediaWikiIntegrationTestCase {
|
|
|
|
public function testConstructor_InvalidArgument() {
|
|
$this->expectException( InvalidArgumentException::class );
|
|
|
|
new SiteExporter( 'Foo' );
|
|
}
|
|
|
|
public function testExportSites() {
|
|
$foo = Site::newForType( Site::TYPE_UNKNOWN );
|
|
$foo->setGlobalId( 'Foo' );
|
|
|
|
$acme = Site::newForType( Site::TYPE_UNKNOWN );
|
|
$acme->setGlobalId( 'acme.com' );
|
|
$acme->setGroup( 'Test' );
|
|
$acme->addLocalId( Site::ID_INTERWIKI, 'acme' );
|
|
$acme->setPath( Site::PATH_LINK, 'http://acme.com/' );
|
|
|
|
$tmp = tmpfile();
|
|
$exporter = new SiteExporter( $tmp );
|
|
|
|
$exporter->exportSites( [ $foo, $acme ] );
|
|
|
|
fseek( $tmp, 0 );
|
|
$xml = fread( $tmp, 16 * 1024 );
|
|
|
|
$this->assertStringContainsString( '<sites ', $xml );
|
|
$this->assertStringContainsString( '<site>', $xml );
|
|
$this->assertStringContainsString( '<globalid>Foo</globalid>', $xml );
|
|
$this->assertStringContainsString( '</site>', $xml );
|
|
$this->assertStringContainsString( '<globalid>acme.com</globalid>', $xml );
|
|
$this->assertStringContainsString( '<group>Test</group>', $xml );
|
|
$this->assertStringContainsString( '<localid type="interwiki">acme</localid>', $xml );
|
|
$this->assertStringContainsString( '<path type="link">http://acme.com/</path>', $xml );
|
|
$this->assertStringContainsString( '</sites>', $xml );
|
|
|
|
$xsdFile = __DIR__ . '/../../../../docs/sitelist-1.0.xsd';
|
|
$xsdData = file_get_contents( $xsdFile );
|
|
|
|
$document = new DOMDocument();
|
|
$document->loadXML( $xml, LIBXML_NONET );
|
|
$document->schemaValidateSource( $xsdData );
|
|
}
|
|
|
|
private function newSiteStore( SiteList $sites ) {
|
|
$store = $this->createMock( SiteStore::class );
|
|
|
|
$store->expects( $this->once() )
|
|
->method( 'saveSites' )
|
|
->willReturnCallback( static function ( $moreSites ) use ( $sites ) {
|
|
foreach ( $moreSites as $site ) {
|
|
$sites->setSite( $site );
|
|
}
|
|
} );
|
|
|
|
$store->method( 'getSites' )
|
|
->willReturn( new SiteList() );
|
|
|
|
return $store;
|
|
}
|
|
|
|
public static function provideRoundTrip() {
|
|
$foo = Site::newForType( Site::TYPE_UNKNOWN );
|
|
$foo->setGlobalId( 'Foo' );
|
|
|
|
$acme = Site::newForType( Site::TYPE_UNKNOWN );
|
|
$acme->setGlobalId( 'acme.com' );
|
|
$acme->setGroup( 'Test' );
|
|
$acme->addLocalId( Site::ID_INTERWIKI, 'acme' );
|
|
$acme->setPath( Site::PATH_LINK, 'http://acme.com/' );
|
|
|
|
$dewiki = Site::newForType( Site::TYPE_MEDIAWIKI );
|
|
$dewiki->setGlobalId( 'dewiki' );
|
|
$dewiki->setGroup( 'wikipedia' );
|
|
$dewiki->setForward( true );
|
|
$dewiki->addLocalId( Site::ID_INTERWIKI, 'wikipedia' );
|
|
$dewiki->addLocalId( Site::ID_EQUIVALENT, 'de' );
|
|
$dewiki->setPath( Site::PATH_LINK, 'http://de.wikipedia.org/w/' );
|
|
$dewiki->setPath( MediaWikiSite::PATH_PAGE, 'http://de.wikipedia.org/wiki/' );
|
|
$dewiki->setSource( 'meta.wikimedia.org' );
|
|
|
|
return [
|
|
'empty' => [
|
|
new SiteList()
|
|
],
|
|
|
|
'some' => [
|
|
new SiteList( [ $foo, $acme, $dewiki ] ),
|
|
],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @dataProvider provideRoundTrip()
|
|
*/
|
|
public function testRoundTrip( SiteList $sites ) {
|
|
$tmp = tmpfile();
|
|
$exporter = new SiteExporter( $tmp );
|
|
|
|
$exporter->exportSites( $sites );
|
|
|
|
fseek( $tmp, 0 );
|
|
$xml = fread( $tmp, 16 * 1024 );
|
|
|
|
$actualSites = new SiteList();
|
|
$store = $this->newSiteStore( $actualSites );
|
|
|
|
$importer = new SiteImporter( $store );
|
|
$importer->importFromXML( $xml );
|
|
|
|
$this->assertEquals( $sites, $actualSites );
|
|
}
|
|
|
|
}
|