MediaWiki REL1_32
DifferenceEngineSlotDiffRendererTest.php
Go to the documentation of this file.
1<?php
2
6class 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}
B/C adapter for turning a DifferenceEngine into a SlotDiffRenderer.
const CONTENT_MODEL_TEXT
Definition Defines.php:238
null for the local 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:1678
static configuration should be added through ResourceLoaderGetConfigVars instead can be used to get the real title e g db for database replication lag or jobqueue for job queue size converted to pseudo seconds It is possible to add more fields and they will be returned to the user in the API response after the basic globals have been set but before ordinary actions take place $output
Definition hooks.txt:2317
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:37