2015-04-09 09:09:36 +00:00
|
|
|
<?php
|
2019-11-08 16:05:30 +00:00
|
|
|
|
2024-02-08 19:09:50 +00:00
|
|
|
use MediaWiki\Cache\GenderCache;
|
|
|
|
|
use MediaWiki\Cache\LinkCache;
|
2023-07-17 15:58:36 +00:00
|
|
|
use MediaWiki\Config\ServiceOptions;
|
2024-02-08 14:56:54 +00:00
|
|
|
use MediaWiki\Context\RequestContext;
|
2023-07-17 15:58:36 +00:00
|
|
|
use MediaWiki\Linker\LinkRenderer;
|
2019-06-03 21:29:55 +00:00
|
|
|
use MediaWiki\Linker\LinkTarget;
|
2023-07-17 15:58:36 +00:00
|
|
|
use MediaWiki\MediaWikiServices;
|
|
|
|
|
use MediaWiki\Page\ExistingPageRecord;
|
|
|
|
|
use MediaWiki\Page\PageStore;
|
|
|
|
|
use MediaWiki\Tests\Unit\Permissions\MockAuthorityTrait;
|
|
|
|
|
use MediaWiki\User\UserFactory;
|
|
|
|
|
use Wikimedia\IPUtils;
|
|
|
|
|
use Wikimedia\Rdbms\ILoadBalancer;
|
2024-05-04 12:39:45 +00:00
|
|
|
use Wikimedia\Stats\StatsFactory;
|
2023-07-17 15:58:36 +00:00
|
|
|
use Wikimedia\TestingAccessWrapper;
|
2015-04-09 09:09:36 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @since 1.26
|
|
|
|
|
*/
|
|
|
|
|
abstract class LogFormatterTestCase extends MediaWikiLangTestCase {
|
2023-07-17 15:58:36 +00:00
|
|
|
use MockAuthorityTrait;
|
2015-04-09 09:09:36 +00:00
|
|
|
|
2019-05-31 20:04:09 +00:00
|
|
|
public function doTestLogFormatter( $row, $extra, $userGroups = [] ) {
|
2015-04-09 09:09:36 +00:00
|
|
|
RequestContext::resetMain();
|
|
|
|
|
$row = $this->expandDatabaseRow( $row, $this->isLegacy( $extra ) );
|
|
|
|
|
|
2023-07-17 15:58:36 +00:00
|
|
|
$userGroups = (array)$userGroups;
|
|
|
|
|
$userRights = MediaWikiServices::getInstance()->getGroupPermissionsLookup()->getGroupPermissions( $userGroups );
|
2019-05-31 20:04:09 +00:00
|
|
|
$context = new RequestContext();
|
2023-07-17 15:58:36 +00:00
|
|
|
$authority = $this->mockRegisteredAuthorityWithPermissions( $userRights );
|
|
|
|
|
$context->setAuthority( $authority );
|
|
|
|
|
$context->setLanguage( 'en' );
|
2019-05-31 20:04:09 +00:00
|
|
|
|
2015-04-09 09:09:36 +00:00
|
|
|
$formatter = LogFormatter::newFromRow( $row );
|
2019-05-31 20:04:09 +00:00
|
|
|
$formatter->setContext( $context );
|
2015-04-09 09:09:36 +00:00
|
|
|
|
2023-07-17 15:58:36 +00:00
|
|
|
// Create a LinkRenderer without LinkCache to avoid DB access
|
|
|
|
|
$services = $this->getServiceContainer();
|
|
|
|
|
$realLinkRenderer = new LinkRenderer(
|
|
|
|
|
$services->getTitleFormatter(),
|
|
|
|
|
$this->createMock( LinkCache::class ),
|
|
|
|
|
$services->getSpecialPageFactory(),
|
|
|
|
|
$services->getHookContainer(),
|
|
|
|
|
new ServiceOptions(
|
|
|
|
|
LinkRenderer::CONSTRUCTOR_OPTIONS,
|
|
|
|
|
$services->getMainConfig(),
|
|
|
|
|
[ 'renderForComment' => false ]
|
|
|
|
|
)
|
|
|
|
|
);
|
|
|
|
|
// Then create a mock LinkRenderer that proxies makeLink calls to the original LinkRenderer, but assumes
|
|
|
|
|
// that all links are known to bypass DB access in Title::exists().
|
|
|
|
|
$linkRenderer = $this->createMock( LinkRenderer::class );
|
|
|
|
|
$linkRenderer->method( 'makeLink' )
|
|
|
|
|
->willReturnCallback(
|
|
|
|
|
static function ( $target, $text = null, $extra = [], $query = [] ) use ( $realLinkRenderer ) {
|
|
|
|
|
return $realLinkRenderer->makeKnownLink( $target, $text, $extra, $query );
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
$formatter->setLinkRenderer( $linkRenderer );
|
|
|
|
|
$this->setService( 'LinkRenderer', $linkRenderer );
|
|
|
|
|
|
|
|
|
|
// Create a mock PageStore where all pages are existing, in case any calls to Title::exists are not
|
|
|
|
|
// caught by the mocks above.
|
|
|
|
|
$pageStore = $this->getMockBuilder( PageStore::class )
|
|
|
|
|
->onlyMethods( [ 'getPageByName' ] )
|
|
|
|
|
->setConstructorArgs( [
|
|
|
|
|
new ServiceOptions( PageStore::CONSTRUCTOR_OPTIONS, $services->getMainConfig() ),
|
|
|
|
|
$this->createNoOpMock( ILoadBalancer::class ),
|
|
|
|
|
$services->getNamespaceInfo(),
|
|
|
|
|
$services->getTitleParser(),
|
|
|
|
|
null,
|
2024-05-04 12:39:45 +00:00
|
|
|
StatsFactory::newNull()
|
2023-07-17 15:58:36 +00:00
|
|
|
] )
|
|
|
|
|
->getMock();
|
|
|
|
|
$pageStore->method( 'getPageByName' )
|
|
|
|
|
->willReturn( $this->createMock( ExistingPageRecord::class ) );
|
|
|
|
|
$this->setService( 'PageStore', $pageStore );
|
|
|
|
|
|
|
|
|
|
// Create a mock UserFactory where all registered users are created with ID and name and where loading of
|
|
|
|
|
// other fields is prevented, to avoid DB access.
|
|
|
|
|
$origUserFactory = $services->getUserFactory();
|
|
|
|
|
$userFactory = $this->createMock( UserFactory::class );
|
|
|
|
|
$userFactory->method( 'newFromName' )
|
|
|
|
|
->willReturnCallback( static function ( $name, $validation ) use ( $origUserFactory ) {
|
|
|
|
|
$ret = $origUserFactory->newFromName( $name, $validation );
|
|
|
|
|
if ( !$ret ) {
|
|
|
|
|
return $ret;
|
|
|
|
|
}
|
|
|
|
|
$userID = IPUtils::isIPAddress( $name ) ? 0 : 42;
|
|
|
|
|
$ret = TestingAccessWrapper::newFromObject( $ret );
|
|
|
|
|
$ret->mId = $userID;
|
|
|
|
|
$ret->mLoadedItems = true;
|
|
|
|
|
return $ret->object;
|
|
|
|
|
} );
|
|
|
|
|
$userFactory->method( 'newFromId' )->willReturnCallback( [ $origUserFactory, 'newFromId' ] );
|
2023-08-03 23:50:20 +00:00
|
|
|
$userFactory->method( 'newAnonymous' )->willReturnCallback( [ $origUserFactory, 'newAnonymous' ] );
|
2024-02-15 13:07:10 +00:00
|
|
|
$userFactory->method( 'newFromUserIdentity' )
|
|
|
|
|
->willReturnCallback( [ $origUserFactory, 'newFromUserIdentity' ] );
|
2023-07-17 15:58:36 +00:00
|
|
|
$this->setService( 'UserFactory', $userFactory );
|
|
|
|
|
|
|
|
|
|
// Replace gender cache to avoid gender DB lookups
|
|
|
|
|
$genderCache = $this->createMock( GenderCache::class );
|
|
|
|
|
$genderCache->method( 'getGenderOf' )->willReturn( 'unknown' );
|
|
|
|
|
$this->setService( 'GenderCache', $genderCache );
|
|
|
|
|
|
2015-04-09 09:09:36 +00:00
|
|
|
$this->assertEquals(
|
|
|
|
|
$extra['text'],
|
|
|
|
|
self::removeSomeHtml( $formatter->getActionText() ),
|
|
|
|
|
'Action text is equal to expected text'
|
|
|
|
|
);
|
|
|
|
|
|
2015-06-06 18:55:03 +00:00
|
|
|
$this->assertSame( // ensure types and array key order
|
2015-04-09 09:09:36 +00:00
|
|
|
$extra['api'],
|
|
|
|
|
self::removeApiMetaData( $formatter->formatParametersForApi() ),
|
|
|
|
|
'Api log params is equal to expected array'
|
|
|
|
|
);
|
2019-06-03 21:29:55 +00:00
|
|
|
|
|
|
|
|
if ( isset( $extra['preload'] ) ) {
|
|
|
|
|
$this->assertArrayEquals(
|
|
|
|
|
$this->getLinkTargetsAsStrings( $extra['preload'] ),
|
|
|
|
|
$this->getLinkTargetsAsStrings(
|
|
|
|
|
$formatter->getPreloadTitles()
|
|
|
|
|
)
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private function getLinkTargetsAsStrings( array $linkTargets ) {
|
2021-02-06 19:30:20 +00:00
|
|
|
return array_map( static function ( LinkTarget $t ) {
|
2019-06-03 21:29:55 +00:00
|
|
|
return $t->getInterwiki() . ':' . $t->getNamespace() . ':'
|
|
|
|
|
. $t->getDBkey() . '#' . $t->getFragment();
|
|
|
|
|
}, $linkTargets );
|
2015-04-09 09:09:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected function isLegacy( $extra ) {
|
|
|
|
|
return isset( $extra['legacy'] ) && $extra['legacy'];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected function expandDatabaseRow( $data, $legacy ) {
|
2016-02-17 09:09:32 +00:00
|
|
|
return [
|
2015-04-09 09:09:36 +00:00
|
|
|
// no log_id because no insert in database
|
|
|
|
|
'log_type' => $data['type'],
|
|
|
|
|
'log_action' => $data['action'],
|
2017-10-06 22:17:58 +00:00
|
|
|
'log_timestamp' => $data['timestamp'] ?? wfTimestampNow(),
|
2021-06-28 19:49:47 +00:00
|
|
|
'log_user' => $data['user'] ?? 42,
|
2017-10-06 22:17:58 +00:00
|
|
|
'log_user_text' => $data['user_text'] ?? 'User',
|
2021-06-28 19:49:47 +00:00
|
|
|
'log_actor' => $data['actor'] ?? 24,
|
2017-10-06 22:17:58 +00:00
|
|
|
'log_namespace' => $data['namespace'] ?? NS_MAIN,
|
|
|
|
|
'log_title' => $data['title'] ?? 'Main_Page',
|
|
|
|
|
'log_page' => $data['page'] ?? 0,
|
|
|
|
|
'log_comment_text' => $data['comment'] ?? '',
|
2017-06-06 17:39:14 +00:00
|
|
|
'log_comment_data' => null,
|
2015-04-09 09:09:36 +00:00
|
|
|
'log_params' => $legacy
|
|
|
|
|
? LogPage::makeParamBlob( $data['params'] )
|
|
|
|
|
: LogEntryBase::makeParamBlob( $data['params'] ),
|
2017-10-06 22:17:58 +00:00
|
|
|
'log_deleted' => $data['deleted'] ?? 0,
|
2016-02-17 09:09:32 +00:00
|
|
|
];
|
2015-04-09 09:09:36 +00:00
|
|
|
}
|
|
|
|
|
|
Support new block schema
Support migration stages when reading and writing blocks.
I tried to set it up for an easy next stage, in which support for the
old schema is removed. I tried to avoid factoring out of shared code
between the two schemas, so that the old schema cases can simply be
deleted without the need to revert unnecessary abstractions.
However, I added HideUserUtils to factor out ipb_deleted queries. Code
review showed that this was already quite complex, with multiple
approaches to the problem, so it benefits from refactoring even without
the schema abstraction.
HideUserUtils is a service rather than a standalone class to support
unit tests, since unit tests do not allow global config access. When
the migration stage config is removed, it will be a service with no
constructor parameters -- an unnecessary abstraction which should
ideally be resolved at that time.
When interpreting result rows, it is possible to share code by using
field aliases. But when constructing WHERE conditions, the actual field
names need to be used, so the migration is more intrusive in
ApiQueryBlocks and SpecialBlockList, where complex conditions are used.
Bug: T346293
Bug: T51504
Bug: T349883
Change-Id: I408acf7a57b0100fe18c455fc13141277a598925
2023-10-27 03:34:10 +00:00
|
|
|
protected static function removeSomeHtml( $html ) {
|
2015-07-07 20:36:41 +00:00
|
|
|
$html = str_replace( '"', '"', $html );
|
2015-08-22 18:29:00 +00:00
|
|
|
$html = preg_replace( '/\xE2\x80[\x8E\x8F]/', '', $html ); // Strip lrm/rlm
|
2016-08-31 20:58:05 +00:00
|
|
|
return trim( strip_tags( $html ) );
|
2015-04-09 09:09:36 +00:00
|
|
|
}
|
|
|
|
|
|
Support new block schema
Support migration stages when reading and writing blocks.
I tried to set it up for an easy next stage, in which support for the
old schema is removed. I tried to avoid factoring out of shared code
between the two schemas, so that the old schema cases can simply be
deleted without the need to revert unnecessary abstractions.
However, I added HideUserUtils to factor out ipb_deleted queries. Code
review showed that this was already quite complex, with multiple
approaches to the problem, so it benefits from refactoring even without
the schema abstraction.
HideUserUtils is a service rather than a standalone class to support
unit tests, since unit tests do not allow global config access. When
the migration stage config is removed, it will be a service with no
constructor parameters -- an unnecessary abstraction which should
ideally be resolved at that time.
When interpreting result rows, it is possible to share code by using
field aliases. But when constructing WHERE conditions, the actual field
names need to be used, so the migration is more intrusive in
ApiQueryBlocks and SpecialBlockList, where complex conditions are used.
Bug: T346293
Bug: T51504
Bug: T349883
Change-Id: I408acf7a57b0100fe18c455fc13141277a598925
2023-10-27 03:34:10 +00:00
|
|
|
protected static function removeApiMetaData( $val ) {
|
2015-04-09 09:09:36 +00:00
|
|
|
if ( is_array( $val ) ) {
|
|
|
|
|
unset( $val['_element'] );
|
|
|
|
|
unset( $val['_type'] );
|
|
|
|
|
foreach ( $val as $key => $value ) {
|
|
|
|
|
$val[$key] = self::removeApiMetaData( $value );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return $val;
|
|
|
|
|
}
|
|
|
|
|
}
|