MediaWiki REL1_31
CachingSiteStoreTest.php
Go to the documentation of this file.
1<?php
2
31
35 public function testGetSites() {
36 $testSites = TestSites::getSites();
37
38 $store = new CachingSiteStore(
39 $this->getHashSiteStore( $testSites ),
41 );
42
43 $sites = $store->getSites();
44
45 $this->assertInstanceOf( SiteList::class, $sites );
46
50 foreach ( $sites as $site ) {
51 $this->assertInstanceOf( Site::class, $site );
52 }
53
54 foreach ( $testSites as $site ) {
55 if ( $site->getGlobalId() !== null ) {
56 $this->assertTrue( $sites->hasSite( $site->getGlobalId() ) );
57 }
58 }
59 }
60
64 public function testSaveSites() {
65 $store = new CachingSiteStore( new HashSiteStore(), wfGetMainCache() );
66
67 $sites = [];
68
69 $site = new Site();
70 $site->setGlobalId( 'ertrywuutr' );
71 $site->setLanguageCode( 'en' );
72 $sites[] = $site;
73
74 $site = new MediaWikiSite();
75 $site->setGlobalId( 'sdfhxujgkfpth' );
76 $site->setLanguageCode( 'nl' );
77 $sites[] = $site;
78
79 $this->assertTrue( $store->saveSites( $sites ) );
80
81 $site = $store->getSite( 'ertrywuutr' );
82 $this->assertInstanceOf( Site::class, $site );
83 $this->assertEquals( 'en', $site->getLanguageCode() );
84
85 $site = $store->getSite( 'sdfhxujgkfpth' );
86 $this->assertInstanceOf( Site::class, $site );
87 $this->assertEquals( 'nl', $site->getLanguageCode() );
88 }
89
93 public function testReset() {
94 $dbSiteStore = $this->getMockBuilder( SiteStore::class )
95 ->disableOriginalConstructor()
96 ->getMock();
97
98 $dbSiteStore->expects( $this->any() )
99 ->method( 'getSite' )
100 ->will( $this->returnValue( $this->getTestSite() ) );
101
102 $dbSiteStore->expects( $this->any() )
103 ->method( 'getSites' )
104 ->will( $this->returnCallback( function () {
105 $siteList = new SiteList();
106 $siteList->setSite( $this->getTestSite() );
107
108 return $siteList;
109 } ) );
110
111 $store = new CachingSiteStore( $dbSiteStore, wfGetMainCache() );
112
113 // initialize internal cache
114 $this->assertGreaterThan( 0, $store->getSites()->count(), 'count sites' );
115
116 $store->getSite( 'enwiki' )->setLanguageCode( 'en-ca' );
117
118 // sanity check: $store should have the new language code for 'enwiki'
119 $this->assertEquals( 'en-ca', $store->getSite( 'enwiki' )->getLanguageCode(), 'sanity check' );
120
121 // purge cache
122 $store->reset();
123
124 // the internal cache of $store should be updated, and now pulling
125 // the site from the 'fallback' DBSiteStore with the original language code.
126 $this->assertEquals( 'en', $store->getSite( 'enwiki' )->getLanguageCode(), 'reset' );
127 }
128
129 public function getTestSite() {
130 $enwiki = new MediaWikiSite();
131 $enwiki->setGlobalId( 'enwiki' );
132 $enwiki->setLanguageCode( 'en' );
133
134 return $enwiki;
135 }
136
140 public function testClear() {
141 $store = new CachingSiteStore( new HashSiteStore(), wfGetMainCache() );
142 $this->assertTrue( $store->clear() );
143
144 $site = $store->getSite( 'enwiki' );
145 $this->assertNull( $site );
146
147 $sites = $store->getSites();
148 $this->assertEquals( 0, $sites->count() );
149 }
150
156 private function getHashSiteStore( array $sites ) {
157 $siteStore = new HashSiteStore();
158 $siteStore->saveSites( $sites );
159
160 return $siteStore;
161 }
162
163}
they could even be mouse clicks or menu items whatever suits your program You should also get your if any
Definition COPYING.txt:326
wfGetMainCache()
Get the main cache object.
testGetSites()
CachingSiteStore::getSites.
testClear()
CachingSiteStore::clear.
testReset()
CachingSiteStore::reset.
testSaveSites()
CachingSiteStore::saveSites.
In-memory SiteStore implementation, storing sites in an associative array.
Class representing a MediaWiki site.
Definition Site.php:29
static getSites()
Definition TestSites.php:36