1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335
|
<?php
use MediaWiki\MainConfigNames;
use MediaWiki\Permissions\Authority;
use MediaWiki\Permissions\UltimateAuthority;
use MediaWiki\Request\FauxRequest;
use MediaWiki\Specials\SpecialContributions;
use MediaWiki\Tests\User\TempUser\TempUserTestTrait;
use MediaWiki\User\User;
use MediaWiki\User\UserFactory;
use Wikimedia\Parsoid\Utils\DOMCompat;
use Wikimedia\Parsoid\Utils\DOMUtils;
/**
* @author Ammarpad
* @group Database
* @covers \MediaWiki\Specials\SpecialContributions
* @covers \MediaWiki\SpecialPage\ContributionsSpecialPage
*/
class SpecialContributionsTest extends SpecialPageTestBase {
use TempUserTestTrait;
private const PAGE_NAME = __CLASS__ . 'BlaBlaTest';
/** @var Authority */
private static $admin;
/** @var User */
private static $user;
/** @var User */
private static $zeroUser;
private static int $useModWikiIPRevId;
public function addDBDataOnce() {
$this->overrideConfigValue(
MainConfigNames::RangeContributionsCIDRLimit,
[
'IPv4' => 16,
'IPv6' => 32,
]
);
$this->setTemporaryHook(
'SpecialContributionsBeforeMainOutput',
static function () {
}
);
self::$admin = new UltimateAuthority( $this->getTestSysop()->getUser() );
$this->assertTrue(
$this->editPage(
self::PAGE_NAME, 'Test Content', 'test', NS_MAIN, self::$admin
)->isOK(),
'Edit failed for admin'
);
self::$user = $this->getTestUser()->getUser();
$this->assertTrue(
$this->editPage(
'Test', 'Test Content', 'test', NS_MAIN, self::$user
)->isOK(),
'Edit failed for user'
);
// The name of this user is '0' which is a valid name.
self::$zeroUser = ( new TestUser( '0' ) )->getUser();
$this->assertTrue(
$this->editPage(
'TestPage', 'Test Content', 'test', NS_MAIN, self::$zeroUser
)->isOK(),
'Edit failed for user'
);
$this->disableAutoCreateTempUser();
$useModWikiIP = $this->getServiceContainer()->getUserFactory()
->newFromName( '1.2.3.xxx', UserFactory::RIGOR_NONE );
$useModWikiIPEditStatus = $this->editPage( 'Test1234', 'Test Content', 'test', NS_MAIN, $useModWikiIP );
$this->assertStatusGood( $useModWikiIPEditStatus, 'Edit failed for IP in usemod format' );
static::$useModWikiIPRevId = $useModWikiIPEditStatus->getNewRevision()->getId();
$blockStatus = $this->getServiceContainer()->getBlockUserFactory()
->newBlockUser(
self::$user->getName(),
self::$admin,
'infinity',
'',
[ 'isHideUser' => true ],
)
->placeBlock();
$this->assertStatusGood( $blockStatus, 'Block was not placed' );
}
public function testExecuteForZeroUser() {
[ $html ] = $this->executeSpecialPage(
self::$zeroUser->getName()
);
$this->assertStringContainsString( 'mw-pager-body', $html );
}
public function testExecuteEmptyTarget() {
[ $html ] = $this->executeSpecialPage();
// This 'topOnly' filter should always be added to Special:Contributions
$this->assertStringContainsString( 'topOnly', $html );
$this->assertStringNotContainsString( 'mw-pager-body', $html );
}
public function testExecuteHiddenTarget() {
[ $html ] = $this->executeSpecialPage(
self::$user->getName()
);
$this->assertStringNotContainsString( 'mw-pager-body', $html );
}
public function testExecuteHiddenTargetWithPermissions() {
[ $html ] = $this->executeSpecialPage(
self::$user->getName(),
null,
'qqx',
// This is necessary because permission checks aren't actually
// done on the UlitmateAuthority that is self::$admin. Instead,
// they are done on a UserAuthority. See the TODO comment in
// User::getThisAsAuthority for more details.
$this->getTestUser( [
'sysop',
'bureaucrat',
'suppress'
] )->getUser()
);
$this->assertStringContainsString( 'mw-pager-body', $html );
}
public function testExecuteInvalidNamespace() {
[ $html ] = $this->executeSpecialPage(
'::1',
new FauxRequest( [
'namespace' => -1,
] )
);
$this->assertStringNotContainsString( 'mw-pager-body', $html );
}
/** @dataProvider provideExecuteNoResultsForIPTarget */
public function testExecuteNoResultsForIPTarget( $temporaryAccountsEnabled, $expectedPageTitleMessageKey ) {
if ( $temporaryAccountsEnabled ) {
$this->enableAutoCreateTempUser();
} else {
$this->disableAutoCreateTempUser();
}
[ $html ] = $this->executeSpecialPage( '4.3.2.1', null, null, null, true );
$specialPageDocument = DOMUtils::parseHTML( $html );
$contentHtml = DOMCompat::querySelector( $specialPageDocument, '.mw-content-container' )->nodeValue;
$this->assertStringNotContainsString( 'mw-pager-body', $contentHtml );
$this->assertStringContainsString( "($expectedPageTitleMessageKey: 4.3.2.1", $contentHtml );
}
public static function provideExecuteNoResultsForIPTarget() {
return [
'Temporary accounts not enabled' => [ false, 'contributions-title' ],
'Temporary accounts enabled' => [
true, 'contributions-title-for-ip-when-temporary-accounts-enabled',
],
];
}
public function testExecuteForUseModWikiIP() {
// Regression test for T370413
[ $html ] = $this->executeSpecialPage( '1.2.3.xxx' );
$contributionsList = DOMCompat::querySelectorAll( DOMUtils::parseHTML( $html ), '.mw-contributions-list' );
$this->assertCount(
1, $contributionsList, 'Should have the contributions list as 1.2.3.xxx has made one edit'
);
$matchingLines = DOMCompat::querySelectorAll(
$contributionsList[0], '[data-mw-revid="' . static::$useModWikiIPRevId . '"]'
);
$this->assertCount( 1, $matchingLines, "The edit made by the usemod IP is missing" );
}
/**
* @dataProvider provideTestExecuteRange
*/
public function testExecuteRange( $username, $shouldShowLinks ) {
[ $html ] = $this->executeSpecialPage( $username, null, 'qqx', self::$admin, true );
if ( $shouldShowLinks ) {
$this->assertStringContainsString( 'blocklink', $html );
} else {
$this->assertStringNotContainsString( 'blocklink', $html );
$this->assertStringContainsString( 'sp-contributions-outofrange', $html );
}
}
/**
* @dataProvider provideTestExecuteNonRange
*/
public function testExecuteNonRange( $username, $shouldShowLinks ) {
[ $html ] = $this->executeSpecialPage( $username, null, 'qqx', self::$admin, true );
if ( $shouldShowLinks ) {
$this->assertStringContainsString( 'blocklink', $html );
} else {
$this->assertStringNotContainsString( 'blocklink', $html );
}
}
public static function provideTestExecuteRange() {
yield 'Queryable IPv4 range should have blocklink for admin'
=> [ '24.237.208.166/30', true ];
yield 'Queryable IPv6 range should have blocklink for admin'
=> [ '2001:DB8:0:0:0:0:0:01/43', true ];
yield 'Unqueryable IPv4 range should not have blocklink for admin'
=> [ '212.35.31.121/14', false ];
yield 'Unqueryable IPv6 range should not have blocklink for admin'
=> [ '2000::/24', false ];
}
public static function provideTestExecuteNonRange() {
yield 'Valid IPv4 should have blocklink for admin' => [ '124.24.52.13', true ];
yield 'Valid IPv6 should have blocklink for admin' => [ '2001:db8::', true ];
yield 'Local user should have blocklink for admin' => [ 'UTSysop', true ];
yield 'Invalid IP should not have blocklink for admin' => [ '24.237.222208.166', false ];
yield 'External user should not have blocklink for admin' => [ 'imported>UTSysop', false ];
yield 'Nonexistent user should not have blocklink for admin' => [ __CLASS__, false ];
}
public static function provideYearMonthParams() {
yield 'Current year/month' => [
'year' => date( 'Y' ),
'month' => date( 'm' ),
'expect' => true,
];
yield 'Old year/moth' => [
'year' => '2007',
'month' => '01',
'expect' => false,
];
yield 'Garbage' => [
'year' => '123garbage123',
'month' => date( 'm' ),
'expect' => true,
];
}
/**
* @dataProvider provideYearMonthParams
*/
public function testYearMonthParams( string $year, string $month, bool $expect ) {
[ $html ] = $this->executeSpecialPage(
self::$admin->getUser()->getName(),
new FauxRequest( [
'year' => $year,
'month' => $month,
] ) );
if ( $expect ) {
$this->assertStringContainsString( self::PAGE_NAME, $html );
} else {
$this->assertStringNotContainsString( self::PAGE_NAME, $html );
}
}
public function testBotParam() {
[ $html ] = $this->executeSpecialPage(
'::1',
new FauxRequest( [
'bot' => 1,
] ),
null,
self::$admin
);
$this->assertStringContainsString( 'bot', $html );
}
public function testFeedFormat() {
$specialPage = $this->newSpecialPage();
[ $html ] = ( new SpecialPageExecutor() )->executeSpecialPage(
$specialPage,
'::1',
new FauxRequest( [
'feed' => 'atom',
'namespace' => 2,
'topOnly' => true,
'newOnly' => true,
'hideMinor' => true,
'deletedOnly' => true,
'tagfilter' => 'mw-reverted',
'year' => '2000',
'month' => '01',
] )
);
$url = $specialPage->getOutput()->getRedirect();
$this->assertStringContainsString( 'namespace', $url );
$this->assertStringContainsString( 'toponly', $url );
$this->assertStringContainsString( 'newonly', $url );
$this->assertStringContainsString( 'hideminor', $url );
$this->assertStringContainsString( 'deletedonly', $url );
$this->assertStringContainsString( 'tagfilter', $url );
$this->assertStringContainsString( 'year', $url );
$this->assertStringContainsString( 'month', $url );
}
/**
* @dataProvider providePrefixSearchSubpages
*/
public function testPrefixSearchSubpages( $search, $expected ) {
$specialPage = $this->newSpecialPage();
$this->assertCount(
$expected,
$specialPage->prefixSearchSubpages( $search, 10, 0 )
);
}
public static function providePrefixSearchSubpages() {
return [
'Invalid prefix' => [ '/', 0 ],
'Valid prefix' => [ 'U', 1 ],
];
}
protected function newSpecialPage(): SpecialContributions {
$services = $this->getServiceContainer();
return new SpecialContributions(
$services->getLinkBatchFactory(),
$services->getPermissionManager(),
$services->getConnectionProvider(),
$services->getRevisionStore(),
$services->getNamespaceInfo(),
$services->getUserNameUtils(),
$services->getUserNamePrefixSearch(),
$services->getUserOptionsLookup(),
$services->getCommentFormatter(),
$services->getUserFactory(),
$services->getUserIdentityLookup(),
$services->getDatabaseBlockStore(),
$services->getTempUserConfig()
);
}
}
|