Merge "mw.Upload.BookletLayout: Better handle error messages from AbuseFilter and...
[lhc/web/wiklou.git] / tests / phpunit / includes / ExportTest.php
1 <?php
2
3 /**
4 * Test class for Export methods.
5 *
6 * @group Database
7 *
8 * @author Isaac Hutt <mhutti1@gmail.com>
9 */
10 class ExportTest extends MediaWikiLangTestCase {
11
12 protected function setUp() {
13 parent::setUp();
14 $this->setMwGlobals( [
15 'wgCapitalLinks' => true,
16 ] );
17 }
18
19 /**
20 * @covers WikiExporter::pageByTitle
21 */
22 public function testPageByTitle() {
23 global $wgContLang;
24 $pageTitle = 'UTPage';
25
26 $exporter = new WikiExporter(
27 $this->db,
28 WikiExporter::FULL
29 );
30
31 $title = Title::newFromText( $pageTitle );
32
33 $sink = new DumpStringOutput;
34 $exporter->setOutputSink( $sink );
35 $exporter->openStream();
36 $exporter->pageByTitle( $title );
37 $exporter->closeStream();
38 $xmlString = $sink->getOutput();
39
40 // This throws error if invalid xml output
41 $xmlObject = simplexml_load_string( $xmlString );
42
43 /**
44 * Check namespaces match xml
45 */
46 $xmlNamespaces = (array)$xmlObject->siteinfo->namespaces->namespace;
47 $xmlNamespaces = str_replace( ' ', '_', $xmlNamespaces );
48 unset( $xmlNamespaces[ '@attributes' ] );
49 foreach ( $xmlNamespaces as &$namespaceObject ) {
50 if ( is_object( $namespaceObject ) ) {
51 $namespaceObject = '';
52 }
53 }
54
55 $actualNamespaces = (array)$wgContLang->getNamespaces();
56 $actualNamespaces = array_values( $actualNamespaces );
57 $this->assertEquals( $actualNamespaces, $xmlNamespaces );
58
59 // Check xml page title correct
60 $xmlTitle = (array)$xmlObject->page->title;
61 $this->assertEquals( $pageTitle, $xmlTitle[0] );
62
63 // Check xml page text is not empty
64 $text = (array)$xmlObject->page->revision->text;
65 $this->assertNotEquals( '', $text[0] );
66 }
67
68 }