3 namespace MediaWiki\Tests\Maintenance
;
9 * Test making sure the demo export xml is valid.
10 * This is NOT a unit test
16 class ExportDemoTest
extends DumpTestCase
{
18 public function testExportDemo() {
19 $fname = __DIR__
. "/../../../docs/export-demo.xml";
20 $version = WikiExporter
::schemaVersion();
21 $dom = new DomDocument();
24 // Ensure, the demo is for the current version
27 $dom->documentElement
->getAttribute( 'version' ),
28 'export-demo.xml should have the current version'
32 $dom->schemaValidate( __DIR__
. "/../../../docs/export-" . $version . ".xsd" ),
33 "schemaValidate has found an error"