MediaWiki  1.31.0
backup_PageTest.php
Go to the documentation of this file.
1 <?php
2 
4 
7 use Title;
10 
19 
20  // We'll add several pages, revision and texts. The following variables hold the
21  // corresponding ids.
30 
31  function addDBData() {
32  // be sure, titles created here using english namespace names
33  $this->setMwGlobals( [
34  'wgLanguageCode' => 'en',
35  'wgContLang' => Language::factory( 'en' ),
36  ] );
37 
38  $this->tablesUsed[] = 'page';
39  $this->tablesUsed[] = 'revision';
40  $this->tablesUsed[] = 'ip_changes';
41  $this->tablesUsed[] = 'text';
42 
43  try {
44  $this->namespace = $this->getDefaultWikitextNS();
45  $this->talk_namespace = NS_TALK;
46 
47  if ( $this->namespace === $this->talk_namespace ) {
48  // @todo work around this.
49  throw new MWException( "The default wikitext namespace is the talk namespace. "
50  . " We can't currently deal with that." );
51  }
52 
53  $this->pageTitle1 = Title::newFromText( 'BackupDumperTestP1', $this->namespace );
54  $page = WikiPage::factory( $this->pageTitle1 );
55  list( $this->revId1_1, $this->textId1_1 ) = $this->addRevision( $page,
56  "BackupDumperTestP1Text1", "BackupDumperTestP1Summary1" );
57  $this->pageId1 = $page->getId();
58 
59  $this->pageTitle2 = Title::newFromText( 'BackupDumperTestP2', $this->namespace );
60  $page = WikiPage::factory( $this->pageTitle2 );
61  list( $this->revId2_1, $this->textId2_1 ) = $this->addRevision( $page,
62  "BackupDumperTestP2Text1", "BackupDumperTestP2Summary1" );
63  list( $this->revId2_2, $this->textId2_2 ) = $this->addRevision( $page,
64  "BackupDumperTestP2Text2", "BackupDumperTestP2Summary2" );
65  list( $this->revId2_3, $this->textId2_3 ) = $this->addRevision( $page,
66  "BackupDumperTestP2Text3", "BackupDumperTestP2Summary3" );
67  list( $this->revId2_4, $this->textId2_4 ) = $this->addRevision( $page,
68  "BackupDumperTestP2Text4 some additional Text ",
69  "BackupDumperTestP2Summary4 extra " );
70  $this->pageId2 = $page->getId();
71 
72  $this->pageTitle3 = Title::newFromText( 'BackupDumperTestP3', $this->namespace );
73  $page = WikiPage::factory( $this->pageTitle3 );
74  list( $this->revId3_1, $this->textId3_1 ) = $this->addRevision( $page,
75  "BackupDumperTestP3Text1", "BackupDumperTestP2Summary1" );
76  list( $this->revId3_2, $this->textId3_2 ) = $this->addRevision( $page,
77  "BackupDumperTestP3Text2", "BackupDumperTestP2Summary2" );
78  $this->pageId3 = $page->getId();
79  $page->doDeleteArticle( "Testing ;)" );
80 
81  $this->pageTitle4 = Title::newFromText( 'BackupDumperTestP1', $this->talk_namespace );
82  $page = WikiPage::factory( $this->pageTitle4 );
83  list( $this->revId4_1, $this->textId4_1 ) = $this->addRevision( $page,
84  "Talk about BackupDumperTestP1 Text1",
85  "Talk BackupDumperTestP1 Summary1" );
86  $this->pageId4 = $page->getId();
87  } catch ( Exception $e ) {
88  // We'd love to pass $e directly. However, ... see
89  // documentation of exceptionFromAddDBData in
90  // DumpTestCase
91  $this->exceptionFromAddDBData = $e;
92  }
93  }
94 
95  protected function setUp() {
96  parent::setUp();
97 
98  // Since we will restrict dumping by page ranges (to allow
99  // working tests, even if the db gets prepopulated by a base
100  // class), we have to assert, that the page id are consecutively
101  // increasing
102  $this->assertEquals(
103  [ $this->pageId2, $this->pageId3, $this->pageId4 ],
104  [ $this->pageId1 + 1, $this->pageId2 + 1, $this->pageId3 + 1 ],
105  "Page ids increasing without holes" );
106  }
107 
108  function testFullTextPlain() {
109  // Preparing the dump
110  $fname = $this->getNewTempFile();
111 
112  $dumper = new DumpBackup();
113  $dumper->loadWithArgv( [ '--full', '--quiet', '--output', 'file:' . $fname ] );
114  $dumper->startId = $this->pageId1;
115  $dumper->endId = $this->pageId4 + 1;
116  $dumper->setDB( $this->db );
117 
118  // Performing the dump
119  $dumper->execute();
120 
121  // Checking the dumped data
122  $this->assertDumpStart( $fname );
123 
124  // Page 1
125  $this->assertPageStart( $this->pageId1, $this->namespace, $this->pageTitle1->getPrefixedText() );
126  $this->assertRevision( $this->revId1_1, "BackupDumperTestP1Summary1",
127  $this->textId1_1, 23, "0bolhl6ol7i6x0e7yq91gxgaan39j87",
128  "BackupDumperTestP1Text1" );
129  $this->assertPageEnd();
130 
131  // Page 2
132  $this->assertPageStart( $this->pageId2, $this->namespace, $this->pageTitle2->getPrefixedText() );
133  $this->assertRevision( $this->revId2_1, "BackupDumperTestP2Summary1",
134  $this->textId2_1, 23, "jprywrymfhysqllua29tj3sc7z39dl2",
135  "BackupDumperTestP2Text1" );
136  $this->assertRevision( $this->revId2_2, "BackupDumperTestP2Summary2",
137  $this->textId2_2, 23, "b7vj5ks32po5m1z1t1br4o7scdwwy95",
138  "BackupDumperTestP2Text2", $this->revId2_1 );
139  $this->assertRevision( $this->revId2_3, "BackupDumperTestP2Summary3",
140  $this->textId2_3, 23, "jfunqmh1ssfb8rs43r19w98k28gg56r",
141  "BackupDumperTestP2Text3", $this->revId2_2 );
142  $this->assertRevision( $this->revId2_4, "BackupDumperTestP2Summary4 extra",
143  $this->textId2_4, 44, "6o1ciaxa6pybnqprmungwofc4lv00wv",
144  "BackupDumperTestP2Text4 some additional Text", $this->revId2_3 );
145  $this->assertPageEnd();
146 
147  // Page 3
148  // -> Page is marked deleted. Hence not visible
149 
150  // Page 4
151  $this->assertPageStart(
152  $this->pageId4,
153  $this->talk_namespace,
154  $this->pageTitle4->getPrefixedText()
155  );
156  $this->assertRevision( $this->revId4_1, "Talk BackupDumperTestP1 Summary1",
157  $this->textId4_1, 35, "nktofwzd0tl192k3zfepmlzxoax1lpe",
158  "Talk about BackupDumperTestP1 Text1" );
159  $this->assertPageEnd();
160 
161  $this->assertDumpEnd();
162  }
163 
164  function testFullStubPlain() {
165  // Preparing the dump
166  $fname = $this->getNewTempFile();
167 
168  $dumper = new DumpBackup();
169  $dumper->loadWithArgv( [ '--full', '--quiet', '--output', 'file:' . $fname, '--stub' ] );
170  $dumper->startId = $this->pageId1;
171  $dumper->endId = $this->pageId4 + 1;
172  $dumper->setDB( $this->db );
173 
174  // Performing the dump
175  $dumper->execute();
176 
177  // Checking the dumped data
178  $this->assertDumpStart( $fname );
179 
180  // Page 1
181  $this->assertPageStart( $this->pageId1, $this->namespace, $this->pageTitle1->getPrefixedText() );
182  $this->assertRevision( $this->revId1_1, "BackupDumperTestP1Summary1",
183  $this->textId1_1, 23, "0bolhl6ol7i6x0e7yq91gxgaan39j87" );
184  $this->assertPageEnd();
185 
186  // Page 2
187  $this->assertPageStart( $this->pageId2, $this->namespace, $this->pageTitle2->getPrefixedText() );
188  $this->assertRevision( $this->revId2_1, "BackupDumperTestP2Summary1",
189  $this->textId2_1, 23, "jprywrymfhysqllua29tj3sc7z39dl2" );
190  $this->assertRevision( $this->revId2_2, "BackupDumperTestP2Summary2",
191  $this->textId2_2, 23, "b7vj5ks32po5m1z1t1br4o7scdwwy95", false, $this->revId2_1 );
192  $this->assertRevision( $this->revId2_3, "BackupDumperTestP2Summary3",
193  $this->textId2_3, 23, "jfunqmh1ssfb8rs43r19w98k28gg56r", false, $this->revId2_2 );
194  $this->assertRevision( $this->revId2_4, "BackupDumperTestP2Summary4 extra",
195  $this->textId2_4, 44, "6o1ciaxa6pybnqprmungwofc4lv00wv", false, $this->revId2_3 );
196  $this->assertPageEnd();
197 
198  // Page 3
199  // -> Page is marked deleted. Hence not visible
200 
201  // Page 4
202  $this->assertPageStart(
203  $this->pageId4,
204  $this->talk_namespace,
205  $this->pageTitle4->getPrefixedText()
206  );
207  $this->assertRevision( $this->revId4_1, "Talk BackupDumperTestP1 Summary1",
208  $this->textId4_1, 35, "nktofwzd0tl192k3zfepmlzxoax1lpe" );
209  $this->assertPageEnd();
210 
211  $this->assertDumpEnd();
212  }
213 
214  function testCurrentStubPlain() {
215  // Preparing the dump
216  $fname = $this->getNewTempFile();
217 
218  $dumper = new DumpBackup( [ '--output', 'file:' . $fname ] );
219  $dumper->startId = $this->pageId1;
220  $dumper->endId = $this->pageId4 + 1;
221  $dumper->reporting = false;
222  $dumper->setDB( $this->db );
223 
224  // Performing the dump
225  $dumper->dump( WikiExporter::CURRENT, WikiExporter::STUB );
226 
227  // Checking the dumped data
228  $this->assertDumpStart( $fname );
229 
230  // Page 1
231  $this->assertPageStart( $this->pageId1, $this->namespace, $this->pageTitle1->getPrefixedText() );
232  $this->assertRevision( $this->revId1_1, "BackupDumperTestP1Summary1",
233  $this->textId1_1, 23, "0bolhl6ol7i6x0e7yq91gxgaan39j87" );
234  $this->assertPageEnd();
235 
236  // Page 2
237  $this->assertPageStart( $this->pageId2, $this->namespace, $this->pageTitle2->getPrefixedText() );
238  $this->assertRevision( $this->revId2_4, "BackupDumperTestP2Summary4 extra",
239  $this->textId2_4, 44, "6o1ciaxa6pybnqprmungwofc4lv00wv", false, $this->revId2_3 );
240  $this->assertPageEnd();
241 
242  // Page 3
243  // -> Page is marked deleted. Hence not visible
244 
245  // Page 4
246  $this->assertPageStart(
247  $this->pageId4,
248  $this->talk_namespace,
249  $this->pageTitle4->getPrefixedText()
250  );
251  $this->assertRevision( $this->revId4_1, "Talk BackupDumperTestP1 Summary1",
252  $this->textId4_1, 35, "nktofwzd0tl192k3zfepmlzxoax1lpe" );
253  $this->assertPageEnd();
254 
255  $this->assertDumpEnd();
256  }
257 
258  function testCurrentStubGzip() {
259  $this->checkHasGzip();
260 
261  // Preparing the dump
262  $fname = $this->getNewTempFile();
263 
264  $dumper = new DumpBackup( [ '--output', 'gzip:' . $fname ] );
265  $dumper->startId = $this->pageId1;
266  $dumper->endId = $this->pageId4 + 1;
267  $dumper->reporting = false;
268  $dumper->setDB( $this->db );
269 
270  // Performing the dump
271  $dumper->dump( WikiExporter::CURRENT, WikiExporter::STUB );
272 
273  // Checking the dumped data
274  $this->gunzip( $fname );
275  $this->assertDumpStart( $fname );
276 
277  // Page 1
278  $this->assertPageStart( $this->pageId1, $this->namespace, $this->pageTitle1->getPrefixedText() );
279  $this->assertRevision( $this->revId1_1, "BackupDumperTestP1Summary1",
280  $this->textId1_1, 23, "0bolhl6ol7i6x0e7yq91gxgaan39j87" );
281  $this->assertPageEnd();
282 
283  // Page 2
284  $this->assertPageStart( $this->pageId2, $this->namespace, $this->pageTitle2->getPrefixedText() );
285  $this->assertRevision( $this->revId2_4, "BackupDumperTestP2Summary4 extra",
286  $this->textId2_4, 44, "6o1ciaxa6pybnqprmungwofc4lv00wv", false, $this->revId2_3 );
287  $this->assertPageEnd();
288 
289  // Page 3
290  // -> Page is marked deleted. Hence not visible
291 
292  // Page 4
293  $this->assertPageStart(
294  $this->pageId4,
295  $this->talk_namespace,
296  $this->pageTitle4->getPrefixedText()
297  );
298  $this->assertRevision( $this->revId4_1, "Talk BackupDumperTestP1 Summary1",
299  $this->textId4_1, 35, "nktofwzd0tl192k3zfepmlzxoax1lpe" );
300  $this->assertPageEnd();
301 
302  $this->assertDumpEnd();
303  }
304 
317  $this->checkHasGzip();
318 
319  $fnameMetaHistory = $this->getNewTempFile();
320  $fnameMetaCurrent = $this->getNewTempFile();
321  $fnameArticles = $this->getNewTempFile();
322 
323  $dumper = new DumpBackup( [ "--full", "--stub", "--output=gzip:" . $fnameMetaHistory,
324  "--output=gzip:" . $fnameMetaCurrent, "--filter=latest",
325  "--output=gzip:" . $fnameArticles, "--filter=latest",
326  "--filter=notalk", "--filter=namespace:!NS_USER",
327  "--reporting=1000" ] );
328  $dumper->startId = $this->pageId1;
329  $dumper->endId = $this->pageId4 + 1;
330  $dumper->setDB( $this->db );
331 
332  // xmldumps-backup uses reporting. We will not check the exact reported
333  // message, as they are dependent on the processing power of the used
334  // computer. We only check that reporting does not crash the dumping
335  // and that something is reported
336  $dumper->stderr = fopen( 'php://output', 'a' );
337  if ( $dumper->stderr === false ) {
338  $this->fail( "Could not open stream for stderr" );
339  }
340 
341  // Performing the dump
342  $dumper->dump( WikiExporter::FULL, WikiExporter::STUB );
343 
344  $this->assertTrue( fclose( $dumper->stderr ), "Closing stderr handle" );
345 
346  // Checking meta-history -------------------------------------------------
347 
348  $this->gunzip( $fnameMetaHistory );
349  $this->assertDumpStart( $fnameMetaHistory );
350 
351  // Page 1
352  $this->assertPageStart( $this->pageId1, $this->namespace, $this->pageTitle1->getPrefixedText() );
353  $this->assertRevision( $this->revId1_1, "BackupDumperTestP1Summary1",
354  $this->textId1_1, 23, "0bolhl6ol7i6x0e7yq91gxgaan39j87" );
355  $this->assertPageEnd();
356 
357  // Page 2
358  $this->assertPageStart( $this->pageId2, $this->namespace, $this->pageTitle2->getPrefixedText() );
359  $this->assertRevision( $this->revId2_1, "BackupDumperTestP2Summary1",
360  $this->textId2_1, 23, "jprywrymfhysqllua29tj3sc7z39dl2" );
361  $this->assertRevision( $this->revId2_2, "BackupDumperTestP2Summary2",
362  $this->textId2_2, 23, "b7vj5ks32po5m1z1t1br4o7scdwwy95", false, $this->revId2_1 );
363  $this->assertRevision( $this->revId2_3, "BackupDumperTestP2Summary3",
364  $this->textId2_3, 23, "jfunqmh1ssfb8rs43r19w98k28gg56r", false, $this->revId2_2 );
365  $this->assertRevision( $this->revId2_4, "BackupDumperTestP2Summary4 extra",
366  $this->textId2_4, 44, "6o1ciaxa6pybnqprmungwofc4lv00wv", false, $this->revId2_3 );
367  $this->assertPageEnd();
368 
369  // Page 3
370  // -> Page is marked deleted. Hence not visible
371 
372  // Page 4
373  $this->assertPageStart(
374  $this->pageId4,
375  $this->talk_namespace,
376  $this->pageTitle4->getPrefixedText()
377  );
378  $this->assertRevision( $this->revId4_1, "Talk BackupDumperTestP1 Summary1",
379  $this->textId4_1, 35, "nktofwzd0tl192k3zfepmlzxoax1lpe" );
380  $this->assertPageEnd();
381 
382  $this->assertDumpEnd();
383 
384  // Checking meta-current -------------------------------------------------
385 
386  $this->gunzip( $fnameMetaCurrent );
387  $this->assertDumpStart( $fnameMetaCurrent );
388 
389  // Page 1
390  $this->assertPageStart( $this->pageId1, $this->namespace, $this->pageTitle1->getPrefixedText() );
391  $this->assertRevision( $this->revId1_1, "BackupDumperTestP1Summary1",
392  $this->textId1_1, 23, "0bolhl6ol7i6x0e7yq91gxgaan39j87" );
393  $this->assertPageEnd();
394 
395  // Page 2
396  $this->assertPageStart( $this->pageId2, $this->namespace, $this->pageTitle2->getPrefixedText() );
397  $this->assertRevision( $this->revId2_4, "BackupDumperTestP2Summary4 extra",
398  $this->textId2_4, 44, "6o1ciaxa6pybnqprmungwofc4lv00wv", false, $this->revId2_3 );
399  $this->assertPageEnd();
400 
401  // Page 3
402  // -> Page is marked deleted. Hence not visible
403 
404  // Page 4
405  $this->assertPageStart(
406  $this->pageId4,
407  $this->talk_namespace,
408  $this->pageTitle4->getPrefixedText()
409  );
410  $this->assertRevision( $this->revId4_1, "Talk BackupDumperTestP1 Summary1",
411  $this->textId4_1, 35, "nktofwzd0tl192k3zfepmlzxoax1lpe" );
412  $this->assertPageEnd();
413 
414  $this->assertDumpEnd();
415 
416  // Checking articles -------------------------------------------------
417 
418  $this->gunzip( $fnameArticles );
419  $this->assertDumpStart( $fnameArticles );
420 
421  // Page 1
422  $this->assertPageStart( $this->pageId1, $this->namespace, $this->pageTitle1->getPrefixedText() );
423  $this->assertRevision( $this->revId1_1, "BackupDumperTestP1Summary1",
424  $this->textId1_1, 23, "0bolhl6ol7i6x0e7yq91gxgaan39j87" );
425  $this->assertPageEnd();
426 
427  // Page 2
428  $this->assertPageStart( $this->pageId2, $this->namespace, $this->pageTitle2->getPrefixedText() );
429  $this->assertRevision( $this->revId2_4, "BackupDumperTestP2Summary4 extra",
430  $this->textId2_4, 44, "6o1ciaxa6pybnqprmungwofc4lv00wv", false, $this->revId2_3 );
431  $this->assertPageEnd();
432 
433  // Page 3
434  // -> Page is marked deleted. Hence not visible
435 
436  // Page 4
437  // -> Page is not in $this->namespace. Hence not visible
438 
439  $this->assertDumpEnd();
440 
441  $this->expectETAOutput();
442  }
443 }
Title\newFromText
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
Definition: Title.php:273
MediaWiki\Tests\Maintenance\DumpTestCase\assertDumpStart
assertDumpStart( $fname, $skip_siteinfo=true)
Opens an XML file to analyze and optionally skips past siteinfo.
Definition: DumpTestCase.php:203
MediaWiki\Tests\Maintenance\DumpTestCase\checkHasGzip
checkHasGzip()
Skip the test if 'gzip' is not in $PATH.
Definition: DumpTestCase.php:46
MediaWiki\Tests\Maintenance\BackupDumperPageTest\testFullTextPlain
testFullTextPlain()
Definition: backup_PageTest.php:108
MediaWiki\Tests\Maintenance\BackupDumperPageTest\$textId2_4
$textId2_4
Definition: backup_PageTest.php:26
WikiExporter\CURRENT
const CURRENT
Definition: WikiExporter.php:50
MediaWiki\Tests\Maintenance\BackupDumperPageTest\$pageTitle1
$pageTitle1
Definition: backup_PageTest.php:23
MediaWiki\Tests\Maintenance\BackupDumperPageTest\$revId2_4
$revId2_4
Definition: backup_PageTest.php:26
DumpBackup
Definition: dumpBackup.php:30
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
MediaWiki\Tests\Maintenance\DumpTestCase\assertDumpEnd
assertDumpEnd( $name="mediawiki")
Asserts that the xml reader is at the final closing tag of an xml file and closes the reader.
Definition: DumpTestCase.php:220
WikiPage
Class representing a MediaWiki article and history.
Definition: WikiPage.php:37
MediaWiki\Tests\Maintenance\BackupDumperPageTest\$pageTitle4
$pageTitle4
Definition: backup_PageTest.php:23
MediaWiki\Tests\Maintenance\BackupDumperPageTest\$revId1_1
$revId1_1
Definition: backup_PageTest.php:24
MediaWiki\Tests\Maintenance\DumpTestCase\addRevision
addRevision(Page $page, $text, $summary, $model=CONTENT_MODEL_WIKITEXT)
Adds a revision to a page, while returning the resuting revision's id.
Definition: DumpTestCase.php:69
MediaWiki\Tests\Maintenance\BackupDumperPageTest\$textId2_2
$textId2_2
Definition: backup_PageTest.php:25
MediaWiki\Tests\Maintenance\DumpTestCase\assertPageEnd
assertPageEnd()
Asserts that the xml reader is at the page's closing element and skips to the next element.
Definition: DumpTestCase.php:323
MediaWiki\Tests\Maintenance\DumpTestCase\assertPageStart
assertPageStart( $id, $ns, $name)
Asserts that the xml reader is at the start of a page element and skips over the first tags,...
Definition: DumpTestCase.php:310
MediaWiki\Tests\Maintenance\BackupDumperPageTest\$revId3_1
$revId3_1
Definition: backup_PageTest.php:27
MediaWiki\Tests\Maintenance\BackupDumperPageTest\testXmlDumpsBackupUseCase
testXmlDumpsBackupUseCase()
xmldumps-backup typically performs a single dump that that writes out three files
Definition: backup_PageTest.php:316
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
MediaWiki\Tests\Maintenance\BackupDumperPageTest\testCurrentStubGzip
testCurrentStubGzip()
Definition: backup_PageTest.php:258
MediaWiki\Tests\Maintenance
Definition: backup_LogTest.php:3
MediaWiki\Tests\Maintenance\BackupDumperPageTest\$revId2_3
$revId2_3
Definition: backup_PageTest.php:26
WikiExporter\STUB
const STUB
Definition: WikiExporter.php:59
MediaWiki\Tests\Maintenance\BackupDumperPageTest\$namespace
$namespace
Definition: backup_PageTest.php:29
MediaWiki\Tests\Maintenance\BackupDumperPageTest\$pageTitle3
$pageTitle3
Definition: backup_PageTest.php:23
MWException
MediaWiki exception.
Definition: MWException.php:26
WikiPage\factory
static factory(Title $title)
Create a WikiPage object of the appropriate class for the given title.
Definition: WikiPage.php:115
MediaWikiTestCase\setMwGlobals
setMwGlobals( $pairs, $value=null)
Sets a global, maintaining a stashed version of the previous global to be restored in tearDown.
Definition: MediaWikiTestCase.php:678
MediaWikiTestCase\getNewTempFile
getNewTempFile()
Obtains a new temporary file name.
Definition: MediaWikiTestCase.php:462
MediaWiki\Tests\Maintenance\BackupDumperPageTest\$textId1_1
$textId1_1
Definition: backup_PageTest.php:24
MediaWikiTestCase\getDefaultWikitextNS
getDefaultWikitextNS()
Returns the ID of a namespace that defaults to Wikitext.
Definition: MediaWikiTestCase.php:1912
MediaWiki\Tests\Maintenance\BackupDumperPageTest\setUp
setUp()
Default set up function.
Definition: backup_PageTest.php:95
MediaWiki\Tests\Maintenance\BackupDumperPageTest\$pageId1
$pageId1
Definition: backup_PageTest.php:22
WikiExporter
Definition: WikiExporter.php:36
list
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
Definition: deferred.txt:11
$fname
if(defined( 'MW_SETUP_CALLBACK')) $fname
Customization point after all loading (constants, functions, classes, DefaultSettings,...
Definition: Setup.php:112
MediaWiki\Tests\Maintenance\BackupDumperPageTest\$revId2_2
$revId2_2
Definition: backup_PageTest.php:25
MediaWiki\Tests\Maintenance\BackupDumperPageTest\$revId3_2
$revId3_2
Definition: backup_PageTest.php:27
$e
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException' returning false will NOT prevent logging $e
Definition: hooks.txt:2163
MediaWiki\Tests\Maintenance\BackupDumperPageTest\$pageId2
$pageId2
Definition: backup_PageTest.php:22
MediaWiki\Tests\Maintenance\BackupDumperPageTest\$textId2_3
$textId2_3
Definition: backup_PageTest.php:26
MediaWiki\Tests\Maintenance\BackupDumperPageTest\testCurrentStubPlain
testCurrentStubPlain()
Definition: backup_PageTest.php:214
MediaWiki\Tests\Maintenance\BackupDumperPageTest\testFullStubPlain
testFullStubPlain()
Definition: backup_PageTest.php:164
MediaWiki\Tests\Maintenance\DumpTestCase\gunzip
gunzip( $fname)
gunzips the given file and stores the result in the original file name
Definition: DumpTestCase.php:96
WikiExporter\FULL
const FULL
Definition: WikiExporter.php:49
MediaWiki\Tests\Maintenance\BackupDumperPageTest\$pageId3
$pageId3
Definition: backup_PageTest.php:22
MediaWiki\Tests\Maintenance\DumpTestCase\expectETAOutput
expectETAOutput()
Checks for test output consisting only of lines containing ETA announcements.
Definition: DumpTestCase.php:131
MediaWiki\Tests\Maintenance\BackupDumperPageTest
Tests for page dumps of BackupDumper.
Definition: backup_PageTest.php:18
MediaWiki\Tests\Maintenance\BackupDumperPageTest\addDBData
addDBData()
Stub.
Definition: backup_PageTest.php:31
Title
Represents a title within MediaWiki.
Definition: Title.php:39
MediaWiki\Tests\Maintenance\BackupDumperPageTest\$revId4_1
$revId4_1
Definition: backup_PageTest.php:28
MediaWiki\Tests\Maintenance\BackupDumperPageTest\$pageTitle2
$pageTitle2
Definition: backup_PageTest.php:23
MediaWiki\Tests\Maintenance\DumpTestCase
Base TestCase for dumps.
Definition: DumpTestCase.php:16
MediaWiki\Tests\Maintenance\BackupDumperPageTest\$textId3_1
$textId3_1
Definition: backup_PageTest.php:27
MediaWiki\Tests\Maintenance\BackupDumperPageTest\$textId3_2
$textId3_2
Definition: backup_PageTest.php:27
NS_TALK
const NS_TALK
Definition: Defines.php:66
Language\factory
static factory( $code)
Get a cached or new language object for a given language code.
Definition: Language.php:183
MediaWiki\Tests\Maintenance\DumpTestCase\assertRevision
assertRevision( $id, $summary, $text_id, $text_bytes, $text_sha1, $text=false, $parentid=false, $model=CONTENT_MODEL_WIKITEXT, $format=CONTENT_FORMAT_WIKITEXT)
Asserts that the xml reader is at a revision and checks its representation before skipping over it.
Definition: DumpTestCase.php:343
MediaWiki\Tests\Maintenance\BackupDumperPageTest\$revId2_1
$revId2_1
Definition: backup_PageTest.php:25
MediaWiki\Tests\Maintenance\BackupDumperPageTest\$pageId4
$pageId4
Definition: backup_PageTest.php:22
MediaWiki\Tests\Maintenance\BackupDumperPageTest\$talk_namespace
$talk_namespace
Definition: backup_PageTest.php:29
MediaWiki\Tests\Maintenance\BackupDumperPageTest\$textId2_1
$textId2_1
Definition: backup_PageTest.php:25
Language
Internationalisation code.
Definition: Language.php:35
MediaWiki\Tests\Maintenance\BackupDumperPageTest\$textId4_1
$textId4_1
Definition: backup_PageTest.php:28