MediaWiki  1.29.1
WikitextContentHandlerTest.php
Go to the documentation of this file.
1 <?php
2 
10  private $handler;
11 
12  protected function setUp() {
13  parent::setUp();
14 
16  }
17 
21  public function testSerializeContent() {
22  $content = new WikitextContent( 'hello world' );
23 
24  $this->assertEquals( 'hello world', $this->handler->serializeContent( $content ) );
25  $this->assertEquals(
26  'hello world',
27  $this->handler->serializeContent( $content, CONTENT_FORMAT_WIKITEXT )
28  );
29 
30  try {
31  $this->handler->serializeContent( $content, 'dummy/foo' );
32  $this->fail( "serializeContent() should have failed on unknown format" );
33  } catch ( MWException $e ) {
34  // ok, as expected
35  }
36  }
37 
41  public function testUnserializeContent() {
42  $content = $this->handler->unserializeContent( 'hello world' );
43  $this->assertEquals( 'hello world', $content->getNativeData() );
44 
45  $content = $this->handler->unserializeContent( 'hello world', CONTENT_FORMAT_WIKITEXT );
46  $this->assertEquals( 'hello world', $content->getNativeData() );
47 
48  try {
49  $this->handler->unserializeContent( 'hello world', 'dummy/foo' );
50  $this->fail( "unserializeContent() should have failed on unknown format" );
51  } catch ( MWException $e ) {
52  // ok, as expected
53  }
54  }
55 
59  public function testMakeEmptyContent() {
60  $content = $this->handler->makeEmptyContent();
61 
62  $this->assertTrue( $content->isEmpty() );
63  $this->assertEquals( '', $content->getNativeData() );
64  }
65 
66  public static function dataIsSupportedFormat() {
67  return [
68  [ null, true ],
70  [ 99887766, false ],
71  ];
72  }
73 
80  public function testMakeRedirectContent( $title, $expected ) {
82  $wgContLang->resetNamespaces();
83 
85 
86  if ( is_string( $title ) ) {
88  }
89  $content = $this->handler->makeRedirectContent( $title );
90  $this->assertEquals( $expected, $content->serialize() );
91  }
92 
93  public static function provideMakeRedirectContent() {
94  return [
95  [ 'Hello', '#REDIRECT [[Hello]]' ],
96  [ 'Template:Hello', '#REDIRECT [[Template:Hello]]' ],
97  [ 'Hello#section', '#REDIRECT [[Hello#section]]' ],
98  [ 'user:john_doe#section', '#REDIRECT [[User:John doe#section]]' ],
99  [ 'MEDIAWIKI:FOOBAR', '#REDIRECT [[MediaWiki:FOOBAR]]' ],
100  [ 'Category:Foo', '#REDIRECT [[:Category:Foo]]' ],
101  [ Title::makeTitle( NS_MAIN, 'en:Foo' ), '#REDIRECT [[en:Foo]]' ],
102  [ Title::makeTitle( NS_MAIN, 'Foo', '', 'en' ), '#REDIRECT [[:en:Foo]]' ],
103  [
104  Title::makeTitle( NS_MAIN, 'Bar', 'fragment', 'google' ),
105  '#REDIRECT [[google:Bar#fragment]]'
106  ],
107  ];
108  }
109 
114  public function testIsSupportedFormat( $format, $supported ) {
115  $this->assertEquals( $supported, $this->handler->isSupportedFormat( $format ) );
116  }
117 
118  public function testSupportsDirectEditing() {
119  $handler = new WikiTextContentHandler();
120  $this->assertTrue( $handler->supportsDirectEditing(), 'direct editing is supported' );
121  }
122 
123  public static function dataMerge3() {
124  return [
125  [
126  "first paragraph
127 
128  second paragraph\n",
129 
130  "FIRST paragraph
131 
132  second paragraph\n",
133 
134  "first paragraph
135 
136  SECOND paragraph\n",
137 
138  "FIRST paragraph
139 
140  SECOND paragraph\n",
141  ],
142 
143  [ "first paragraph
144  second paragraph\n",
145 
146  "Bla bla\n",
147 
148  "Blubberdibla\n",
149 
150  false,
151  ],
152  ];
153  }
154 
159  public function testMerge3( $old, $mine, $yours, $expected ) {
160  $this->markTestSkippedIfNoDiff3();
161 
162  // test merge
163  $oldContent = new WikitextContent( $old );
164  $myContent = new WikitextContent( $mine );
165  $yourContent = new WikitextContent( $yours );
166 
167  $merged = $this->handler->merge3( $oldContent, $myContent, $yourContent );
168 
169  $this->assertEquals( $expected, $merged ? $merged->getNativeData() : $merged );
170  }
171 
172  public static function dataGetAutosummary() {
173  return [
174  [
175  'Hello there, world!',
176  '#REDIRECT [[Foo]]',
177  0,
178  '/^Redirected page .*Foo/'
179  ],
180 
181  [
182  null,
183  'Hello world!',
184  EDIT_NEW,
185  '/^Created page .*Hello/'
186  ],
187 
188  [
189  'Hello there, world!',
190  '',
191  0,
192  '/^Blanked/'
193  ],
194 
195  [
196  'Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy
197  eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam
198  voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet
199  clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.',
200  'Hello world!',
201  0,
202  '/^Replaced .*Hello/'
203  ],
204 
205  [
206  'foo',
207  'bar',
208  0,
209  '/^$/'
210  ],
211  ];
212  }
213 
218  public function testGetAutosummary( $old, $new, $flags, $expected ) {
219  $oldContent = is_null( $old ) ? null : new WikitextContent( $old );
220  $newContent = is_null( $new ) ? null : new WikitextContent( $new );
221 
222  $summary = $this->handler->getAutosummary( $oldContent, $newContent, $flags );
223 
224  $this->assertTrue(
225  (bool)preg_match( $expected, $summary ),
226  "Autosummary didn't match expected pattern $expected: $summary"
227  );
228  }
229 
233  /*
234  public function testGetAutoDeleteReason( Title $title, &$hasHistory ) {}
235  */
236 
240  /*
241  public function testGetUndoContent( Revision $current, Revision $undo,
242  Revision $undoafter = null
243  ) {
244  }
245  */
246 
247  public function testDataIndexFieldsFile() {
248  $mockEngine = $this->createMock( 'SearchEngine' );
249  $title = Title::newFromText( 'Somefile.jpg', NS_FILE );
250  $page = new WikiPage( $title );
251 
252  $fileHandler = $this->getMockBuilder( FileContentHandler::class )
253  ->disableOriginalConstructor()
254  ->setMethods( [ 'getDataForSearchIndex' ] )
255  ->getMock();
256 
257  $handler = $this->getMockBuilder( WikitextContentHandler::class )
258  ->disableOriginalConstructor()
259  ->setMethods( [ 'getFileHandler' ] )
260  ->getMock();
261 
262  $handler->method( 'getFileHandler' )->will( $this->returnValue( $fileHandler ) );
263  $fileHandler->expects( $this->once() )
264  ->method( 'getDataForSearchIndex' )
265  ->will( $this->returnValue( [ 'file_text' => 'This is file content' ] ) );
266 
267  $data = $handler->getDataForSearchIndex( $page, new ParserOutput(), $mockEngine );
268  $this->assertArrayHasKey( 'file_text', $data );
269  $this->assertEquals( 'This is file content', $data['file_text'] );
270  }
271 }
ContentHandler
A content handler knows how do deal with a specific type of content on a wiki page.
Definition: ContentHandler.php:49
ContentHandler\getForModelID
static getForModelID( $modelId)
Returns the ContentHandler singleton for the given model ID.
Definition: ContentHandler.php:293
Title\newFromText
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
Definition: Title.php:265
ParserOutput
Definition: ParserOutput.php:24
false
processing should stop and the error should be shown to the user * false
Definition: hooks.txt:189
WikitextContentHandlerTest\testUnserializeContent
testUnserializeContent()
WikitextContentHandler::unserializeContent.
Definition: WikitextContentHandlerTest.php:41
ContentHandler\supportsDirectEditing
supportsDirectEditing()
Return true if this content model supports direct editing, such as via EditPage.
Definition: ContentHandler.php:1081
WikitextContentHandlerTest\testGetAutosummary
testGetAutosummary( $old, $new, $flags, $expected)
dataGetAutosummary WikitextContentHandler::getAutosummary
Definition: WikitextContentHandlerTest.php:218
WikitextContentHandlerTest\dataIsSupportedFormat
static dataIsSupportedFormat()
Definition: WikitextContentHandlerTest.php:66
WikiPage
Class representing a MediaWiki article and history.
Definition: WikiPage.php:36
NS_FILE
const NS_FILE
Definition: Defines.php:68
WikitextContentHandlerTest\testMakeEmptyContent
testMakeEmptyContent()
WikitextContentHandler::makeEmptyContent.
Definition: WikitextContentHandlerTest.php:59
WikitextContentHandlerTest\testDataIndexFieldsFile
testDataIndexFieldsFile()
Definition: WikitextContentHandlerTest.php:247
CONTENT_MODEL_WIKITEXT
const CONTENT_MODEL_WIKITEXT
Definition: Defines.php:233
WikitextContentHandlerTest\testMakeRedirectContent
testMakeRedirectContent( $title, $expected)
provideMakeRedirectContent
Definition: WikitextContentHandlerTest.php:80
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
WikitextContentHandlerTest\testSupportsDirectEditing
testSupportsDirectEditing()
Definition: WikitextContentHandlerTest.php:118
NS_MAIN
const NS_MAIN
Definition: Defines.php:62
handler
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable modifiable after all normalizations have been except for the $wgMaxImageArea check set to true or false to override the $wgMaxImageArea check result gives extension the possibility to transform it themselves set to a MediaTransformOutput the error message to be returned in an array you should do so by altering $wgNamespaceProtection and $wgNamespaceContentModels outside the handler
Definition: hooks.txt:783
WikitextContentHandlerTest\testSerializeContent
testSerializeContent()
WikitextContentHandler::serializeContent.
Definition: WikitextContentHandlerTest.php:21
MWException
MediaWiki exception.
Definition: MWException.php:26
$title
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:934
$content
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist and Watchlist you will want to construct new ChangesListBooleanFilter or ChangesListStringOptionsFilter objects When constructing you specify which group they belong to You can reuse existing or create your you must register them with $special registerFilterGroup removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content $content
Definition: hooks.txt:1049
$page
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached $page
Definition: hooks.txt:2536
ContentHandler\getDataForSearchIndex
getDataForSearchIndex(WikiPage $page, ParserOutput $output, SearchEngine $engine)
Return fields to be indexed by search engine as representation of this document.
Definition: ContentHandler.php:1160
Title\makeTitle
static makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
Definition: Title.php:514
global
when a variable name is used in a it is silently declared as a new masking the global
Definition: design.txt:93
WikitextContent
Content object for wiki text pages.
Definition: WikitextContent.php:33
CONTENT_FORMAT_WIKITEXT
const CONTENT_FORMAT_WIKITEXT
Definition: Defines.php:248
MagicWord\clearCache
static clearCache()
Clear the self::$mObjects variable For use in parser tests.
Definition: MagicWord.php:320
WikitextContentHandlerTest\dataMerge3
static dataMerge3()
Definition: WikitextContentHandlerTest.php:123
MediaWikiTestCase\markTestSkippedIfNoDiff3
markTestSkippedIfNoDiff3()
Check, if $wgDiff3 is set and ready to merge Will mark the calling test as skipped,...
Definition: MediaWikiTestCase.php:1695
$e
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException' returning false will NOT prevent logging $e
Definition: hooks.txt:2122
MediaWikiLangTestCase
Base class that store and restore the Language objects.
Definition: MediaWikiLangTestCase.php:6
WikitextContentHandlerTest\dataGetAutosummary
static dataGetAutosummary()
Definition: WikitextContentHandlerTest.php:172
EDIT_NEW
const EDIT_NEW
Definition: Defines.php:150
true
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return true
Definition: hooks.txt:1956
WikitextContentHandlerTest\setUp
setUp()
Definition: WikitextContentHandlerTest.php:12
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
WikitextContentHandlerTest\$handler
ContentHandler $handler
Definition: WikitextContentHandlerTest.php:10
WikitextContentHandlerTest\testMerge3
testMerge3( $old, $mine, $yours, $expected)
dataMerge3 WikitextContentHandler::merge3
Definition: WikitextContentHandlerTest.php:159
WikitextContentHandlerTest\provideMakeRedirectContent
static provideMakeRedirectContent()
Definition: WikitextContentHandlerTest.php:93
WikitextContentHandlerTest\testIsSupportedFormat
testIsSupportedFormat( $format, $supported)
dataIsSupportedFormat WikitextContentHandler::isSupportedFormat
Definition: WikitextContentHandlerTest.php:114
$flags
it s the revision text itself In either if gzip is the revision text is gzipped $flags
Definition: hooks.txt:2749
WikitextContentHandlerTest
ContentHandler.
Definition: WikitextContentHandlerTest.php:6
$wgContLang
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the content language as $wgContLang
Definition: design.txt:56