Page MenuHomeWickedGov Phorge

ViewCLITest.php
No OneTemporary

Size
1 KB
Referenced Files
None
Subscribers
None

ViewCLITest.php

<?php
namespace MediaWiki\Tests\Maintenance;
use DummyNonTextContent;
use DummyNonTextContentHandler;
use MediaWiki\Content\TextContent;
use MediaWiki\Revision\RevisionRecord;
use ViewCLI;
/**
* @covers \ViewCLI
* @group Database
* @author Dreamy Jazz
*/
class ViewCLITest extends MaintenanceBaseTestCase {
protected function getMaintenanceClass() {
return ViewCLI::class;
}
public function testExecute() {
$testPage = $this->getExistingTestPage();
// Call ::execute
$this->maintenance->setArg( 'title', $testPage );
$this->maintenance->execute();
// Verify that the content of the last revision of the page was outputted.
$content = $testPage->getContent( RevisionRecord::RAW );
$this->assertInstanceOf( TextContent::class, $content );
$expectedOutput = $content->getText();
$this->expectOutputString( $expectedOutput );
}
/** @dataProvider provideExecuteForInvalidTitles */
public function testExecuteForInvalidTitles( string $title, string $expectedOutputRegex ) {
$this->expectCallToFatalError();
$this->expectOutputRegex( $expectedOutputRegex );
// Call ::execute
$this->maintenance->setArg( 'title', $title );
$this->maintenance->execute();
}
public static function provideExecuteForInvalidTitles() {
return [
'Empty title' => [ '', '/Invalid title/' ],
'Special page title' => [ 'Special:Test', '/Special Pages not supported/' ],
'Non-existent title' => [ 'Non-existing-test-page-1234', '/Page does not exist/' ],
];
}
public function testExecuteForNonWikitextPage() {
$this->mergeMwGlobalArrayValue( 'wgContentHandlers', [
'testing-nontext' => DummyNonTextContentHandler::class,
] );
$this->editPage( 'ThisPageIsNotInWikitext', new DummyNonTextContent( 'Hello' ), 'Test', NS_MAIN, $this->getTestSysop()->getAuthority() );
$this->expectCallToFatalError();
$this->expectOutputRegex( '/Non-text content models not supported/' );
$this->maintenance->setArg( 'title', 'ThisPageIsNotInWikitext' );
$this->maintenance->execute();
}
}

File Metadata

Mime Type
text/x-php
Expires
Wed, Aug 19, 09:38 (2 w, 4 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
d8/16/55da7b035aad9447db7550b81bd9
Default Alt Text
ViewCLITest.php (1 KB)

Event Timeline