wiki.techinc.nl/tests/phpunit/unit/includes/content/Renderer/ContentRendererTest.php
Ebrahim Byagowi 4c270a72ac Add namespace to WikitextContent
It adds MediaWiki\Content namespace to WikitextContent
and two classes related.

Change-Id: Ib74e4c5b3edac6aa0e35d3b2093ce1d0b794cb6d
2024-08-06 17:42:51 +03:30

137 lines
5 KiB
PHP

<?php
/**
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* http://www.gnu.org/copyleft/gpl.html
*
* @file
* @since 1.42
*/
namespace MediaWiki\Tests\Unit\Content\Renderer;
use MediaWiki\Content\IContentHandlerFactory;
use MediaWiki\Content\Renderer\ContentRenderer;
use MediaWiki\Content\WikitextContent;
use MediaWiki\Content\WikitextContentHandler;
use MediaWiki\DAO\WikiAwareEntity;
use MediaWiki\Page\PageIdentityValue;
use MediaWiki\Parser\ParserOutput;
use MediaWiki\Revision\MutableRevisionRecord;
use MediaWikiUnitTestCase;
use ParserOptions;
use Wikimedia\UUID\GlobalIdGenerator;
/**
* @group Renderer
* @covers \MediaWiki\Content\Renderer\ContentRenderer
*/
class ContentRendererTest extends MediaWikiUnitTestCase {
protected IContentHandlerFactory $contentHandlerFactory;
protected GlobalIdGenerator $globalIdGenerator;
protected function setUp(): void {
parent::setUp();
$this->contentHandlerFactory = $this->createMock( IContentHandlerFactory::class );
$this->globalIdGenerator = $this->createMock( GlobalIdGenerator::class );
}
/**
* This method tests the getParserOutput method. It is expected that the method will return a ParserOutput
* object with a render ID, cache revision ID, and revision timestamp.
*/
public function testGetParserOutput() {
$page = new PageIdentityValue( 1, NS_MAIN, 'TestPage', WikiAwareEntity::LOCAL );
$parserOptions = $this->createMock( ParserOptions::class );
$revision = new MutableRevisionRecord( $page );
$revision->setTimestamp( '20230418000000' );
$contentHandler = $this->createMock( WikitextContentHandler::class );
$content = $this->createMock( WikitextContent::class );
$content->method( 'getModel' )->willReturn( CONTENT_MODEL_WIKITEXT );
$this->contentHandlerFactory->expects( $this->once() )
->method( 'getContentHandler' )
->with( $content->getModel() )
->willReturn( $contentHandler );
$expectedParserOutput = new ParserOutput();
$expectedParserOutput->setRenderId( '12345' );
$expectedParserOutput->setCacheRevisionId( 123 );
$contentHandler->expects( $this->once() )
->method( 'getParserOutput' )
->with( $content, $this->anything() )
->willReturn( $expectedParserOutput );
$renderer = new ContentRenderer( $this->contentHandlerFactory, $this->globalIdGenerator );
$parserOutput = $renderer->getParserOutput( $content, $page, $revision, $parserOptions );
$this->assertInstanceOf( ParserOutput::class, $parserOutput );
if ( $parserOutput->getCacheRevisionId() !== null ) {
$this->assertEquals( 123, $parserOutput->getCacheRevisionId() );
} else {
$this->fail( 'Cache revision ID is null' );
}
if ( $parserOutput->getRenderId() !== null ) {
$this->assertSame( '12345', $parserOutput->getRenderId() );
} else {
$this->fail( 'Render ID is null' );
}
if ( $parserOutput->getRevisionTimestamp() !== null ) {
$this->assertSame( '20230418000000', $parserOutput->getRevisionTimestamp() );
} else {
$this->fail( 'Revision timestamp is null' );
}
}
/**
* This method tests the getParserOutput method with a null revision. It is expected that the method will
* return a ParserOutput object with a render ID.
*/
public function testGetParserOutputWithNullRevision() {
$page = new PageIdentityValue( 1, NS_MAIN, 'TestPage', WikiAwareEntity::LOCAL );
$parserOptions = $this->createMock( ParserOptions::class );
$contentHandler = $this->createMock( WikitextContentHandler::class );
$content = $this->createMock( WikitextContent::class );
$content->method( 'getModel' )->willReturn( CONTENT_MODEL_WIKITEXT );
$this->contentHandlerFactory->expects( $this->once() )
->method( 'getContentHandler' )
->with( $content->getModel() )
->willReturn( $contentHandler );
$expectedParserOutput = new ParserOutput();
$expectedParserOutput->setRenderId( '12345' );
$contentHandler->expects( $this->once() )
->method( 'getParserOutput' )
->with( $content, $this->anything() )
->willReturn( $expectedParserOutput );
$renderer = new ContentRenderer( $this->contentHandlerFactory, $this->globalIdGenerator );
$parserOutput = $renderer->getParserOutput( $content, $page, null, $parserOptions );
$this->assertInstanceOf( ParserOutput::class, $parserOutput );
if ( $parserOutput->getRenderId() !== null ) {
$this->assertSame( '12345', $parserOutput->getRenderId() );
} else {
$this->fail( 'Render ID is null' );
}
}
}