7 * ^--- tell jenkins this test needs the database
10 * ^--- tell phpunit that these test cases may take longer than 2 seconds.
12 class EditPageTest
extends MediaWikiLangTestCase
{
15 * @dataProvider provideExtractSectionTitle
16 * @covers EditPage::extractSectionTitle
18 public function testExtractSectionTitle( $section, $title ) {
19 $extracted = EditPage
::extractSectionTitle( $section );
20 $this->assertEquals( $title, $extracted );
23 public static function provideExtractSectionTitle() {
26 "== Test ==\n\nJust a test section.",
30 "An initial section, no header.",
34 "An initial section with a fake heder (bug 32617)\n\n== Test == ??\nwtf",
38 "== Section ==\nfollowed by a fake == Non-section == ??\nnoooo",
42 "== Section== \t\r\n followed by whitespace (bug 35051)",
48 protected function forceRevisionDate( WikiPage
$page, $timestamp ) {
49 $dbw = wfGetDB( DB_MASTER
);
51 $dbw->update( 'revision',
52 array( 'rev_timestamp' => $dbw->timestamp( $timestamp ) ),
53 array( 'rev_id' => $page->getLatest() ) );
59 * User input text is passed to rtrim() by edit page. This is a simple
60 * wrapper around assertEquals() which calls rrtrim() to normalize the
61 * expected and actual texts.
62 * @param string $expected
63 * @param string $actual
66 protected function assertEditedTextEquals( $expected, $actual, $msg = '' ) {
67 return $this->assertEquals( rtrim( $expected ), rtrim( $actual ), $msg );
71 * Performs an edit and checks the result.
73 * @param string|Title $title The title of the page to edit
74 * @param string|null $baseText Some text to create the page with before attempting the edit.
75 * @param User|string|null $user The user to perform the edit as.
76 * @param array $edit An array of request parameters used to define the edit to perform.
77 * Some well known fields are:
78 * * wpTextbox1: the text to submit
79 * * wpSummary: the edit summary
80 * * wpEditToken: the edit token (will be inserted if not provided)
81 * * wpEdittime: timestamp of the edit's base revision (will be inserted
83 * * wpStarttime: timestamp when the edit started (will be inserted if not provided)
84 * * wpSectionTitle: the section to edit
85 * * wpMinorEdit: mark as minor edit
86 * * wpWatchthis: whether to watch the page
87 * @param int|null $expectedCode The expected result code (EditPage::AS_XXX constants).
88 * Set to null to skip the check.
89 * @param string|null $expectedText The text expected to be on the page after the edit.
90 * Set to null to skip the check.
91 * @param string|null $message An optional message to show along with any error message.
93 * @return WikiPage The page that was just edited, useful for getting the edit's rev_id, etc.
95 protected function assertEdit( $title, $baseText, $user = null, array $edit,
96 $expectedCode = null, $expectedText = null, $message = null
98 if ( is_string( $title ) ) {
99 $ns = $this->getDefaultWikitextNS();
100 $title = Title
::newFromText( $title, $ns );
102 $this->assertNotNull( $title );
104 if ( is_string( $user ) ) {
105 $user = User
::newFromName( $user );
107 if ( $user->getId() === 0 ) {
108 $user->addToDatabase();
112 $page = WikiPage
::factory( $title );
114 if ( $baseText !== null ) {
115 $content = ContentHandler
::makeContent( $baseText, $title );
116 $page->doEditContent( $content, "base text for test" );
117 $this->forceRevisionDate( $page, '20120101000000' );
121 $currentText = ContentHandler
::getContentText( $page->getContent() );
123 # EditPage rtrim() the user input, so we alter our expected text
125 $this->assertEditedTextEquals( $baseText, $currentText );
128 if ( $user == null ) {
129 $user = $GLOBALS['wgUser'];
131 $this->setMwGlobals( 'wgUser', $user );
134 if ( !isset( $edit['wpEditToken'] ) ) {
135 $edit['wpEditToken'] = $user->getEditToken();
138 if ( !isset( $edit['wpEdittime'] ) ) {
139 $edit['wpEdittime'] = $page->exists() ?
$page->getTimestamp() : '';
142 if ( !isset( $edit['wpStarttime'] ) ) {
143 $edit['wpStarttime'] = wfTimestampNow();
146 $req = new FauxRequest( $edit, true ); // session ??
148 $article = new Article( $title );
149 $article->getContext()->setTitle( $title );
150 $ep = new EditPage( $article );
151 $ep->setContextTitle( $title );
152 $ep->importFormData( $req );
154 $bot = isset( $edit['bot'] ) ?
(bool)$edit['bot'] : false;
156 // this is where the edit happens!
157 // Note: don't want to use EditPage::AttemptSave, because it messes with $wgOut
158 // and throws exceptions like PermissionsError
159 $status = $ep->internalAttemptSave( $result, $bot );
161 if ( $expectedCode !== null ) {
163 $this->assertEquals( $expectedCode, $status->value
,
164 "Expected result code mismatch. $message" );
167 $page = WikiPage
::factory( $title );
169 if ( $expectedText !== null ) {
170 // check resulting page text
171 $content = $page->getContent();
172 $text = ContentHandler
::getContentText( $content );
174 # EditPage rtrim() the user input, so we alter our expected text
176 $this->assertEditedTextEquals( $expectedText, $text,
177 "Expected article text mismatch. $message" );
183 public static function provideCreatePages() {
185 array( 'expected article being created',
186 'EditPageTest_testCreatePage',
189 EditPage
::AS_SUCCESS_NEW_ARTICLE
,
192 array( 'expected article not being created if empty',
193 'EditPageTest_testCreatePage',
196 EditPage
::AS_BLANK_ARTICLE
,
199 array( 'expected MediaWiki: page being created',
203 EditPage
::AS_SUCCESS_NEW_ARTICLE
,
206 array( 'expected not-registered MediaWiki: page not being created if empty',
207 'MediaWiki:EditPageTest_testCreatePage',
210 EditPage
::AS_BLANK_ARTICLE
,
213 array( 'expected registered MediaWiki: page being created even if empty',
217 EditPage
::AS_SUCCESS_NEW_ARTICLE
,
220 array( 'expected registered MediaWiki: page whose default content is empty not being created if empty',
221 'MediaWiki:Ipb-default-expiry',
224 EditPage
::AS_BLANK_ARTICLE
,
227 array( 'expected MediaWiki: page not being created if text equals default message',
231 EditPage
::AS_BLANK_ARTICLE
,
234 array( 'expected empty article being created',
235 'EditPageTest_testCreatePage',
238 EditPage
::AS_SUCCESS_NEW_ARTICLE
,
246 * @dataProvider provideCreatePages
249 public function testCreatePage( $desc, $pageTitle, $user, $editText, $expectedCode, $expectedText, $ignoreBlank = false ) {
250 $edit = array( 'wpTextbox1' => $editText );
251 if ( $ignoreBlank ) {
252 $edit['wpIgnoreBlankArticle'] = 1;
255 $page = $this->assertEdit( $pageTitle, null, $user, $edit, $expectedCode, $expectedText, $desc );
257 if ( $expectedCode != EditPage
::AS_BLANK_ARTICLE
) {
258 $page->doDeleteArticleReal( $pageTitle );
262 public function testUpdatePage() {
265 'wpTextbox1' => $text,
266 'wpSummary' => 'first update',
269 $page = $this->assertEdit( 'EditPageTest_testUpdatePage', "zero", null, $edit,
270 EditPage
::AS_SUCCESS_UPDATE
, $text,
271 "expected successfull update with given text" );
273 $this->forceRevisionDate( $page, '20120101000000' );
277 'wpTextbox1' => $text,
278 'wpSummary' => 'second update',
281 $this->assertEdit( 'EditPageTest_testUpdatePage', null, null, $edit,
282 EditPage
::AS_SUCCESS_UPDATE
, $text,
283 "expected successfull update with given text" );
286 public static function provideSectionEdit() {
296 $sectionOne = '== one ==
300 $newSection = '== new section ==
305 $textWithNewSectionOne = preg_replace(
306 '/== one ==.*== two ==/ms',
307 "$sectionOne\n== two ==", $text
310 $textWithNewSectionAdded = "$text\n$newSection";
325 'replace first section',
326 $textWithNewSectionOne,
334 $textWithNewSectionAdded,
340 * @dataProvider provideSectionEdit
343 public function testSectionEdit( $base, $section, $text, $summary, $expected ) {
345 'wpTextbox1' => $text,
346 'wpSummary' => $summary,
347 'wpSection' => $section,
350 $this->assertEdit( 'EditPageTest_testSectionEdit', $base, null, $edit,
351 EditPage
::AS_SUCCESS_UPDATE
, $expected,
352 "expected successfull update of section" );
355 public static function provideAutoMerge() {
358 $tests[] = array( #0: plain conflict
359 "Elmo", # base edit user
360 "one\n\ntwo\n\nthree\n",
363 'wpTextbox1' => "ONE\n\ntwo\n\nthree\n",
367 'wpTextbox1' => "(one)\n\ntwo\n\nthree\n",
369 EditPage
::AS_CONFLICT_DETECTED
, # expected code
370 "ONE\n\ntwo\n\nthree\n", # expected text
371 'expected edit conflict', # message
374 $tests[] = array( #1: successful merge
375 "Elmo", # base edit user
376 "one\n\ntwo\n\nthree\n",
379 'wpTextbox1' => "ONE\n\ntwo\n\nthree\n",
383 'wpTextbox1' => "one\n\ntwo\n\nTHREE\n",
385 EditPage
::AS_SUCCESS_UPDATE
, # expected code
386 "ONE\n\ntwo\n\nTHREE\n", # expected text
387 'expected automatic merge', # message
391 $text .= "== first section ==\n\n";
392 $text .= "one\n\ntwo\n\nthree\n\n";
393 $text .= "== second section ==\n\n";
394 $text .= "four\n\nfive\n\nsix\n\n";
396 // extract the first section.
397 $section = preg_replace( '/.*(== first section ==.*)== second section ==.*/sm', '$1', $text );
399 // generate expected text after merge
400 $expected = str_replace( 'one', 'ONE', str_replace( 'three', 'THREE', $text ) );
402 $tests[] = array( #2: merge in section
403 "Elmo", # base edit user
407 'wpTextbox1' => str_replace( 'one', 'ONE', $section ),
412 'wpTextbox1' => str_replace( 'three', 'THREE', $section ),
415 EditPage
::AS_SUCCESS_UPDATE
, # expected code
416 $expected, # expected text
417 'expected automatic section merge', # message
420 // see whether it makes a difference who did the base edit
421 $testsWithAdam = array_map( function ( $test ) {
422 $test[0] = 'Adam'; // change base edit user
426 $testsWithBerta = array_map( function ( $test ) {
427 $test[0] = 'Berta'; // change base edit user
431 return array_merge( $tests, $testsWithAdam, $testsWithBerta );
435 * @dataProvider provideAutoMerge
438 public function testAutoMerge( $baseUser, $text, $adamsEdit, $bertasEdit,
439 $expectedCode, $expectedText, $message = null
441 $this->checkHasDiff3();
444 $ns = $this->getDefaultWikitextNS();
445 $title = Title
::newFromText( 'EditPageTest_testAutoMerge', $ns );
446 $page = WikiPage
::factory( $title );
448 if ( $page->exists() ) {
449 $page->doDeleteArticle( "clean slate for testing" );
453 'wpTextbox1' => $text,
456 $page = $this->assertEdit( 'EditPageTest_testAutoMerge', null,
457 $baseUser, $baseEdit, null, null, __METHOD__
);
459 $this->forceRevisionDate( $page, '20120101000000' );
461 $edittime = $page->getTimestamp();
463 // start timestamps for conflict detection
464 if ( !isset( $adamsEdit['wpStarttime'] ) ) {
465 $adamsEdit['wpStarttime'] = 1;
468 if ( !isset( $bertasEdit['wpStarttime'] ) ) {
469 $bertasEdit['wpStarttime'] = 2;
472 $starttime = wfTimestampNow();
473 $adamsTime = wfTimestamp(
475 (int)wfTimestamp( TS_UNIX
, $starttime ) +
(int)$adamsEdit['wpStarttime']
477 $bertasTime = wfTimestamp(
479 (int)wfTimestamp( TS_UNIX
, $starttime ) +
(int)$bertasEdit['wpStarttime']
482 $adamsEdit['wpStarttime'] = $adamsTime;
483 $bertasEdit['wpStarttime'] = $bertasTime;
485 $adamsEdit['wpSummary'] = 'Adam\'s edit';
486 $bertasEdit['wpSummary'] = 'Bertas\'s edit';
488 $adamsEdit['wpEdittime'] = $edittime;
489 $bertasEdit['wpEdittime'] = $edittime;
492 $this->assertEdit( 'EditPageTest_testAutoMerge', null, 'Adam', $adamsEdit,
493 EditPage
::AS_SUCCESS_UPDATE
, null, "expected successfull update" );
496 $this->assertEdit( 'EditPageTest_testAutoMerge', null, 'Berta', $bertasEdit,
497 $expectedCode, $expectedText, $message );