MediaWiki  1.29.1
MergeHistoryTest.php
Go to the documentation of this file.
1 <?php
2 
7 
11  public function addDBDataOnce() {
12  // Pages that won't actually be merged
13  $this->insertPage( 'Test' );
14  $this->insertPage( 'Test2' );
15 
16  // Pages that will be merged
17  $this->insertPage( 'Merge1' );
18  $this->insertPage( 'Merge2' );
19  }
20 
29  public function testIsValidMerge( $source, $dest, $timestamp, $error ) {
30  $this->setMwGlobals( 'wgContentHandlerUseDB', false );
31  $mh = new MergeHistory(
33  Title::newFromText( $dest ),
34  $timestamp
35  );
36  $status = $mh->isValidMerge();
37  if ( $error === true ) {
38  $this->assertTrue( $status->isGood() );
39  } else {
40  $this->assertTrue( $status->hasMessage( $error ) );
41  }
42  }
43 
44  public static function provideIsValidMerge() {
45  return [
46  // for MergeHistory::isValidMerge
47  [ 'Test', 'Test2', false, true ],
48  // Although this timestamp is after the latest timestamp of both pages,
49  // MergeHistory should select the latest source timestamp up to this which should
50  // still work for the merge.
51  [ 'Test', 'Test2', strtotime( 'tomorrow' ), true ],
52  [ 'Test', 'Test', false, 'mergehistory-fail-self-merge' ],
53  [ 'Nonexistant', 'Test2', false, 'mergehistory-fail-invalid-source' ],
54  [ 'Test', 'Nonexistant', false, 'mergehistory-fail-invalid-dest' ],
55  [
56  'Test',
57  'Test2',
58  'This is obviously an invalid timestamp',
59  'mergehistory-fail-bad-timestamp'
60  ],
61  ];
62  }
63 
68  public function testIsValidMergeRevisionLimit() {
70 
71  $mh = $this->getMockBuilder( 'MergeHistory' )
72  ->setMethods( [ 'getRevisionCount' ] )
73  ->setConstructorArgs( [
74  Title::newFromText( 'Test' ),
75  Title::newFromText( 'Test2' ),
76  ] )
77  ->getMock();
78  $mh->expects( $this->once() )
79  ->method( 'getRevisionCount' )
80  ->will( $this->returnValue( $limit + 1 ) );
81 
82  $status = $mh->isValidMerge();
83  $this->assertTrue( $status->hasMessage( 'mergehistory-fail-toobig' ) );
84  $errors = $status->getErrorsByType( 'error' );
85  $params = $errors[0]['params'];
86  $this->assertEquals( $params[0], Message::numParam( $limit ) );
87  }
88 
93  public function testCheckPermissions() {
94  $mh = new MergeHistory(
95  Title::newFromText( 'Test' ),
96  Title::newFromText( 'Test2' )
97  );
98 
99  // Sysop with mergehistory permission
100  $sysop = static::getTestSysop()->getUser();
101  $status = $mh->checkPermissions( $sysop, '' );
102  $this->assertTrue( $status->isOK() );
103 
104  // Normal user
105  $notSysop = static::getTestUser()->getUser();
106  $status = $mh->checkPermissions( $notSysop, '' );
107  $this->assertTrue( $status->hasMessage( 'mergehistory-fail-permission' ) );
108  }
109 
114  public function testGetMergedRevisionCount() {
115  $mh = new MergeHistory(
116  Title::newFromText( 'Merge1' ),
117  Title::newFromText( 'Merge2' )
118  );
119 
120  $sysop = static::getTestSysop()->getUser();
121  $mh->merge( $sysop );
122  $this->assertEquals( $mh->getMergedRevisionCount(), 1 );
123  }
124 }
MergeHistoryTest\testGetMergedRevisionCount
testGetMergedRevisionCount()
Test merged revision count MergeHistory::getMergedRevisionCount.
Definition: MergeHistoryTest.php:114
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
MergeHistoryTest\provideIsValidMerge
static provideIsValidMerge()
Definition: MergeHistoryTest.php:44
MergeHistoryTest\testCheckPermissions
testCheckPermissions()
Test user permission checking MergeHistory::checkPermissions.
Definition: MergeHistoryTest.php:93
$status
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 $status
Definition: hooks.txt:1049
$params
$params
Definition: styleTest.css.php:40
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
MediaWikiTestCase\setMwGlobals
setMwGlobals( $pairs, $value=null)
Definition: MediaWikiTestCase.php:658
MediaWikiTestCase
Definition: MediaWikiTestCase.php:13
$limit
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 as context as context the output can only depend on parameters provided to this hook not on global state indicating whether full HTML should be generated If generation of HTML may be but other information should still be present in the ParserOutput object to manipulate or replace but no entry for that model exists in $wgContentHandlers please use GetContentModels hook to make them known to core if desired whether it is OK to use $contentModel on $title Handler functions that modify $ok should generally return false to prevent further hooks from further modifying $ok inclusive $limit
Definition: hooks.txt:1049
MergeHistory\REVISION_LIMIT
const REVISION_LIMIT
@const int Maximum number of revisions that can be merged at once
Definition: MergeHistory.php:39
MergeHistoryTest\testIsValidMergeRevisionLimit
testIsValidMergeRevisionLimit()
Test merge revision limit checking MergeHistory::isValidMerge.
Definition: MergeHistoryTest.php:68
MergeHistory
Handles the backend logic of merging the histories of two pages.
Definition: MergeHistory.php:36
MediaWikiTestCase\insertPage
insertPage( $pageName, $text='Sample page for unit test.', $namespace=null)
Insert a new page.
Definition: MediaWikiTestCase.php:953
MergeHistoryTest\addDBDataOnce
addDBDataOnce()
Make some pages to work with.
Definition: MergeHistoryTest.php:11
$source
$source
Definition: mwdoc-filter.php:45
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
MergeHistoryTest\testIsValidMerge
testIsValidMerge( $source, $dest, $timestamp, $error)
provideIsValidMerge MergeHistory::isValidMerge
Definition: MergeHistoryTest.php:29
MergeHistoryTest
Database.
Definition: MergeHistoryTest.php:6