MediaWiki REL1_31
SiteExporterTest.php
Go to the documentation of this file.
1<?php
2
32class SiteExporterTest extends PHPUnit\Framework\TestCase {
33
34 use MediaWikiCoversValidator;
35 use PHPUnit4And6Compat;
36
38 $this->setExpectedException( InvalidArgumentException::class );
39
40 new SiteExporter( 'Foo' );
41 }
42
43 public function testExportSites() {
45 $foo->setGlobalId( 'Foo' );
46
48 $acme->setGlobalId( 'acme.com' );
49 $acme->setGroup( 'Test' );
50 $acme->addLocalId( Site::ID_INTERWIKI, 'acme' );
51 $acme->setPath( Site::PATH_LINK, 'http://acme.com/' );
52
53 $tmp = tmpfile();
54 $exporter = new SiteExporter( $tmp );
55
56 $exporter->exportSites( [ $foo, $acme ] );
57
58 fseek( $tmp, 0 );
59 $xml = fread( $tmp, 16 * 1024 );
60
61 $this->assertContains( '<sites ', $xml );
62 $this->assertContains( '<site>', $xml );
63 $this->assertContains( '<globalid>Foo</globalid>', $xml );
64 $this->assertContains( '</site>', $xml );
65 $this->assertContains( '<globalid>acme.com</globalid>', $xml );
66 $this->assertContains( '<group>Test</group>', $xml );
67 $this->assertContains( '<localid type="interwiki">acme</localid>', $xml );
68 $this->assertContains( '<path type="link">http://acme.com/</path>', $xml );
69 $this->assertContains( '</sites>', $xml );
70
71 // NOTE: HHVM (at least on wmf Jenkins) doesn't like file URLs.
72 $xsdFile = __DIR__ . '/../../../../docs/sitelist-1.0.xsd';
73 $xsdData = file_get_contents( $xsdFile );
74
75 $document = new DOMDocument();
76 $document->loadXML( $xml, LIBXML_NONET );
77 $document->schemaValidateSource( $xsdData );
78 }
79
80 private function newSiteStore( SiteList $sites ) {
81 $store = $this->getMockBuilder( SiteStore::class )->getMock();
82
83 $store->expects( $this->once() )
84 ->method( 'saveSites' )
85 ->will( $this->returnCallback( function ( $moreSites ) use ( $sites ) {
86 foreach ( $moreSites as $site ) {
87 $sites->setSite( $site );
88 }
89 } ) );
90
91 $store->expects( $this->any() )
92 ->method( 'getSites' )
93 ->will( $this->returnValue( new SiteList() ) );
94
95 return $store;
96 }
97
98 public function provideRoundTrip() {
100 $foo->setGlobalId( 'Foo' );
101
103 $acme->setGlobalId( 'acme.com' );
104 $acme->setGroup( 'Test' );
105 $acme->addLocalId( Site::ID_INTERWIKI, 'acme' );
106 $acme->setPath( Site::PATH_LINK, 'http://acme.com/' );
107
109 $dewiki->setGlobalId( 'dewiki' );
110 $dewiki->setGroup( 'wikipedia' );
111 $dewiki->setForward( true );
112 $dewiki->addLocalId( Site::ID_INTERWIKI, 'wikipedia' );
113 $dewiki->addLocalId( Site::ID_EQUIVALENT, 'de' );
114 $dewiki->setPath( Site::PATH_LINK, 'http://de.wikipedia.org/w/' );
115 $dewiki->setPath( MediaWikiSite::PATH_PAGE, 'http://de.wikipedia.org/wiki/' );
116 $dewiki->setSource( 'meta.wikimedia.org' );
117
118 return [
119 'empty' => [
120 new SiteList()
121 ],
122
123 'some' => [
124 new SiteList( [ $foo, $acme, $dewiki ] ),
125 ],
126 ];
127 }
128
132 public function testRoundTrip( SiteList $sites ) {
133 $tmp = tmpfile();
134 $exporter = new SiteExporter( $tmp );
135
136 $exporter->exportSites( $sites );
137
138 fseek( $tmp, 0 );
139 $xml = fread( $tmp, 16 * 1024 );
140
141 $actualSites = new SiteList();
142 $store = $this->newSiteStore( $actualSites );
143
144 $importer = new SiteImporter( $store );
145 $importer->importFromXML( $xml );
146
147 $this->assertEquals( $sites, $actualSites );
148 }
149
150}
they could even be mouse clicks or menu items whatever suits your program You should also get your if any
Definition COPYING.txt:326
newSiteStore(SiteList $sites)
testRoundTrip(SiteList $sites)
provideRoundTrip()
setSite(Site $site)
Sets a site in the list.
Definition SiteList.php:263
const TYPE_MEDIAWIKI
Definition Site.php:31
static newForType( $siteType)
Definition Site.php:646
const PATH_LINK
Definition Site.php:40
const TYPE_UNKNOWN
Definition Site.php:30
const ID_EQUIVALENT
Definition Site.php:36
const ID_INTERWIKI
Definition Site.php:35