MediaWiki  1.32.0
DifferenceEngineSlotDiffRendererTest.php
Go to the documentation of this file.
1 <?php
2 
6 class DifferenceEngineSlotDiffRendererTest extends \PHPUnit\Framework\TestCase {
7 
8  public function testGetDiff() {
10  $slotDiffRenderer = new DifferenceEngineSlotDiffRenderer( $differenceEngine );
11  $oldContent = ContentHandler::makeContent( 'xxx', null, CONTENT_MODEL_TEXT );
12  $newContent = ContentHandler::makeContent( 'yyy', null, CONTENT_MODEL_TEXT );
13 
14  $diff = $slotDiffRenderer->getDiff( $oldContent, $newContent );
15  $this->assertEquals( 'xxx|yyy', $diff );
16 
17  $diff = $slotDiffRenderer->getDiff( null, $newContent );
18  $this->assertEquals( '|yyy', $diff );
19 
20  $diff = $slotDiffRenderer->getDiff( $oldContent, null );
21  $this->assertEquals( 'xxx|', $diff );
22  }
23 
24  public function testAddModules() {
25  $output = $this->getMockBuilder( OutputPage::class )
26  ->disableOriginalConstructor()
27  ->setMethods( [ 'addModules' ] )
28  ->getMock();
29  $output->expects( $this->once() )
30  ->method( 'addModules' )
31  ->with( 'foo' );
33  $slotDiffRenderer = new DifferenceEngineSlotDiffRenderer( $differenceEngine );
34  $slotDiffRenderer->addModules( $output );
35  }
36 
37  public function testGetExtraCacheKeys() {
39  $slotDiffRenderer = new DifferenceEngineSlotDiffRenderer( $differenceEngine );
40  $extraCacheKeys = $slotDiffRenderer->getExtraCacheKeys();
41  $this->assertSame( [ 'foo' ], $extraCacheKeys );
42  }
43 
44 }
DifferenceEngineSlotDiffRendererTest\testAddModules
testAddModules()
Definition: DifferenceEngineSlotDiffRendererTest.php:24
DifferenceEngineSlotDiffRendererTest\testGetDiff
testGetDiff()
Definition: DifferenceEngineSlotDiffRendererTest.php:8
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
$differenceEngine
null for the wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify as strings Extensions should add to this list prev or next refreshes the diff cache allow viewing deleted revs & $differenceEngine
Definition: hooks.txt:1627
$output
$output
Definition: SyntaxHighlight.php:334
ContentHandler\makeContent
static makeContent( $text, Title $title=null, $modelId=null, $format=null)
Convenience function for creating a Content object from a given textual representation.
Definition: ContentHandler.php:133
DifferenceEngineSlotDiffRenderer
B/C adapter for turning a DifferenceEngine into a SlotDiffRenderer.
Definition: DifferenceEngineSlotDiffRenderer.php:31
DifferenceEngineSlotDiffRendererTest
DifferenceEngineSlotDiffRenderer.
Definition: DifferenceEngineSlotDiffRendererTest.php:6
DifferenceEngineSlotDiffRendererTest\testGetExtraCacheKeys
testGetExtraCacheKeys()
Definition: DifferenceEngineSlotDiffRendererTest.php:37
class
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
Definition: maintenance.txt:52
CONTENT_MODEL_TEXT
const CONTENT_MODEL_TEXT
Definition: Defines.php:238
CustomDifferenceEngine
Definition: CustomDifferenceEngine.php:3