MediaWiki REL1_31
ExportDemoTest.php
Go to the documentation of this file.
1<?php
2
10class ExportDemoTest extends DumpTestCase {
11
12 public function testExportDemo() {
13 $fname = "../../docs/export-demo.xml";
14 $version = WikiExporter::schemaVersion();
15 $dom = new DomDocument();
16 $dom->load( $fname );
17
18 // Ensure, the demo is for the current version
19 $this->assertEquals(
20 $dom->documentElement->getAttribute( 'version' ),
21 $version,
22 'export-demo.xml should have the current version'
23 );
24
25 $this->assertTrue(
26 $dom->schemaValidate( "../../docs/export-" . $version . ".xsd" ),
27 "schemaValidate has found an error"
28 );
29 }
30
31}
if(defined( 'MW_SETUP_CALLBACK')) $fname
Customization point after all loading (constants, functions, classes, DefaultSettings,...
Definition Setup.php:112
Test making sure the demo export xml is valid.