MediaWiki REL1_33
SiteExporterTest.php
Go to the documentation of this file.
1<?php
2
30class SiteExporterTest extends PHPUnit\Framework\TestCase {
31
32 use MediaWikiCoversValidator;
33 use PHPUnit4And6Compat;
34
36 $this->setExpectedException( InvalidArgumentException::class );
37
38 new SiteExporter( 'Foo' );
39 }
40
41 public function testExportSites() {
43 $foo->setGlobalId( 'Foo' );
44
46 $acme->setGlobalId( 'acme.com' );
47 $acme->setGroup( 'Test' );
48 $acme->addLocalId( Site::ID_INTERWIKI, 'acme' );
49 $acme->setPath( Site::PATH_LINK, 'http://acme.com/' );
50
51 $tmp = tmpfile();
52 $exporter = new SiteExporter( $tmp );
53
54 $exporter->exportSites( [ $foo, $acme ] );
55
56 fseek( $tmp, 0 );
57 $xml = fread( $tmp, 16 * 1024 );
58
59 $this->assertContains( '<sites ', $xml );
60 $this->assertContains( '<site>', $xml );
61 $this->assertContains( '<globalid>Foo</globalid>', $xml );
62 $this->assertContains( '</site>', $xml );
63 $this->assertContains( '<globalid>acme.com</globalid>', $xml );
64 $this->assertContains( '<group>Test</group>', $xml );
65 $this->assertContains( '<localid type="interwiki">acme</localid>', $xml );
66 $this->assertContains( '<path type="link">http://acme.com/</path>', $xml );
67 $this->assertContains( '</sites>', $xml );
68
69 // NOTE: HHVM (at least on wmf Jenkins) doesn't like file URLs.
70 $xsdFile = __DIR__ . '/../../../../docs/sitelist-1.0.xsd';
71 $xsdData = file_get_contents( $xsdFile );
72
73 $document = new DOMDocument();
74 $document->loadXML( $xml, LIBXML_NONET );
75 $document->schemaValidateSource( $xsdData );
76 }
77
78 private function newSiteStore( SiteList $sites ) {
79 $store = $this->getMockBuilder( SiteStore::class )->getMock();
80
81 $store->expects( $this->once() )
82 ->method( 'saveSites' )
83 ->will( $this->returnCallback( function ( $moreSites ) use ( $sites ) {
84 foreach ( $moreSites as $site ) {
85 $sites->setSite( $site );
86 }
87 } ) );
88
89 $store->expects( $this->any() )
90 ->method( 'getSites' )
91 ->will( $this->returnValue( new SiteList() ) );
92
93 return $store;
94 }
95
96 public function provideRoundTrip() {
98 $foo->setGlobalId( 'Foo' );
99
101 $acme->setGlobalId( 'acme.com' );
102 $acme->setGroup( 'Test' );
103 $acme->addLocalId( Site::ID_INTERWIKI, 'acme' );
104 $acme->setPath( Site::PATH_LINK, 'http://acme.com/' );
105
107 $dewiki->setGlobalId( 'dewiki' );
108 $dewiki->setGroup( 'wikipedia' );
109 $dewiki->setForward( true );
110 $dewiki->addLocalId( Site::ID_INTERWIKI, 'wikipedia' );
111 $dewiki->addLocalId( Site::ID_EQUIVALENT, 'de' );
112 $dewiki->setPath( Site::PATH_LINK, 'http://de.wikipedia.org/w/' );
113 $dewiki->setPath( MediaWikiSite::PATH_PAGE, 'http://de.wikipedia.org/wiki/' );
114 $dewiki->setSource( 'meta.wikimedia.org' );
115
116 return [
117 'empty' => [
118 new SiteList()
119 ],
120
121 'some' => [
122 new SiteList( [ $foo, $acme, $dewiki ] ),
123 ],
124 ];
125 }
126
130 public function testRoundTrip( SiteList $sites ) {
131 $tmp = tmpfile();
132 $exporter = new SiteExporter( $tmp );
133
134 $exporter->exportSites( $sites );
135
136 fseek( $tmp, 0 );
137 $xml = fread( $tmp, 16 * 1024 );
138
139 $actualSites = new SiteList();
140 $store = $this->newSiteStore( $actualSites );
141
142 $importer = new SiteImporter( $store );
143 $importer->importFromXML( $xml );
144
145 $this->assertEquals( $sites, $actualSites );
146 }
147
148}
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
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