MediaWiki  1.33.0
ExportDemoTest.php
Go to the documentation of this file.
1 <?php
2 
11 class ExportDemoTest extends DumpTestCase {
12 
13  public function testExportDemo() {
14  $fname = "../../docs/export-demo.xml";
15  $version = WikiExporter::schemaVersion();
16  $dom = new DomDocument();
17  $dom->load( $fname );
18 
19  // Ensure, the demo is for the current version
20  $this->assertEquals(
21  $dom->documentElement->getAttribute( 'version' ),
22  $version,
23  'export-demo.xml should have the current version'
24  );
25 
26  $this->assertTrue(
27  $dom->schemaValidate( "../../docs/export-" . $version . ".xsd" ),
28  "schemaValidate has found an error"
29  );
30  }
31 
32 }
WikiExporter\schemaVersion
static schemaVersion()
Returns the default export schema version, as defined by $wgXmlDumpSchemaVersion.
Definition: WikiExporter.php:73
http
Apache License January http
Definition: APACHE-LICENSE-2.0.txt:3
is
This document provides an overview of the usage of PageUpdater and that is
Definition: pageupdater.txt:3
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
ExportDemoTest\testExportDemo
testExportDemo()
Definition: ExportDemoTest.php:13
not
if not
Definition: COPYING.txt:307
$fname
if(defined( 'MW_SETUP_CALLBACK')) $fname
Customization point after all loading (constants, functions, classes, DefaultSettings,...
Definition: Setup.php:123
see
Some information about database access in MediaWiki By Tim January Database layout For information about the MediaWiki database such as a description of the tables and their please see
Definition: database.txt:2
First
The First
Definition: primes.txt:1
DELETE
DELETE
Definition: updatets.txt:1
on
Using a hook running we can avoid having all this option specific stuff in our mainline code Using the function We ve cleaned up the code here by removing clumps of infrequently used code and moving them off somewhere else It s much easier for someone working with this code to see what s _really_ going on
Definition: hooks.txt:77
ExportDemoTest
Test making sure the demo export xml is valid.
Definition: ExportDemoTest.php:11