wiki.techinc.nl/tests/phpunit/includes/logging/DatabaseLogEntryTest.php
Reedy 85396a9c99 tests: Fix @covers and @coversDefaultClass to have leading \
Change-Id: I5629f91387f2ac453ee4341bfe4bba310bd52f03
2024-02-16 22:43:56 +00:00

165 lines
4.3 KiB
PHP

<?php
use MediaWiki\User\ActorStore;
use MediaWiki\User\UserIdentity;
use MediaWiki\User\UserIdentityValue;
use Wikimedia\Rdbms\IReadableDatabase;
/**
* @group Database
*/
class DatabaseLogEntryTest extends MediaWikiIntegrationTestCase {
protected function setUp(): void {
parent::setUp();
// These services cache their joins
$this->getServiceContainer()->resetServiceForTesting( 'CommentStore' );
$this->getServiceContainer()->resetServiceForTesting( 'ActorMigration' );
}
protected function tearDown(): void {
$this->getServiceContainer()->resetServiceForTesting( 'CommentStore' );
$this->getServiceContainer()->resetServiceForTesting( 'ActorMigration' );
parent::tearDown();
}
/**
* @covers \DatabaseLogEntry::newFromId
* @covers \DatabaseLogEntry::getSelectQueryData
*
* @dataProvider provideNewFromId
*
* @param int $id
* @param array $selectFields
* @param string[]|null $row
* @param string[]|null $expectedFields
*/
public function testNewFromId( $id,
array $selectFields,
array $row = null,
array $expectedFields = null
) {
$row = $row ? (object)$row : null;
$db = $this->createMock( IReadableDatabase::class );
$db->expects( self::once() )
->method( 'selectRow' )
->with( $selectFields['tables'],
$selectFields['fields'],
$selectFields['conds'],
'DatabaseLogEntry::newFromId',
$selectFields['options'],
$selectFields['join_conds']
)
->will( self::returnValue( $row ) );
/** @var IReadableDatabase $db */
$logEntry = DatabaseLogEntry::newFromId( $id, $db );
if ( !$expectedFields ) {
self::assertNull( $logEntry, "Expected no log entry returned for id=$id" );
} else {
self::assertEquals( $id, $logEntry->getId() );
self::assertEquals( $expectedFields['type'], $logEntry->getType() );
self::assertEquals( $expectedFields['comment'], $logEntry->getComment() );
}
}
public static function provideNewFromId() {
$newTables = [
'tables' => [
'logging',
'comment_log_comment' => 'comment',
'logging_actor' => 'actor',
'user' => 'user',
],
'fields' => [
'log_id',
'log_type',
'log_action',
'log_timestamp',
'log_namespace',
'log_title',
'log_params',
'log_deleted',
'user_id',
'user_name',
'log_comment_text' => 'comment_log_comment.comment_text',
'log_comment_data' => 'comment_log_comment.comment_data',
'log_comment_cid' => 'comment_log_comment.comment_id',
'log_user' => 'logging_actor.actor_user',
'log_user_text' => 'logging_actor.actor_name',
'log_actor',
],
'options' => [],
'join_conds' => [
'user' => [ 'LEFT JOIN', 'user_id=logging_actor.actor_user' ],
'comment_log_comment' => [ 'JOIN', 'comment_log_comment.comment_id = log_comment_id' ],
'logging_actor' => [ 'JOIN', 'actor_id=log_actor' ],
],
];
return [
[
0,
$newTables + [ 'conds' => [ 'log_id' => 0 ] ],
null,
null
],
[
123,
$newTables + [ 'conds' => [ 'log_id' => 123 ] ],
[
'log_id' => 123,
'log_type' => 'foobarize',
'log_comment_text' => 'test!',
'log_comment_data' => null,
],
[ 'type' => 'foobarize', 'comment' => 'test!' ]
],
[
567,
$newTables + [ 'conds' => [ 'log_id' => 567 ] ],
[
'log_id' => 567,
'log_type' => 'foobarize',
'log_comment_text' => 'test!',
'log_comment_data' => null,
],
[ 'type' => 'foobarize', 'comment' => 'test!' ]
],
];
}
public static function provideGetPerformerIdentity() {
yield 'registered actor' => [
'actor_row_fields' => [
'user_id' => 42,
'log_user_text' => 'Testing',
'log_actor' => 24,
],
UserIdentityValue::newRegistered( 42, 'Testing' ),
];
yield 'anon actor' => [
'actor_row_fields' => [
'log_user_text' => '127.0.0.1',
'log_actor' => 24,
],
UserIdentityValue::newAnonymous( '127.0.0.1' ),
];
yield 'unknown actor' => [
'actor_row_fields' => [],
new UserIdentityValue( 0, ActorStore::UNKNOWN_USER_NAME ),
];
}
/**
* @dataProvider provideGetPerformerIdentity
* @covers \DatabaseLogEntry::getPerformerIdentity
*/
public function testGetPerformer( array $actorRowFields, UserIdentity $expected ) {
$logEntry = DatabaseLogEntry::newFromRow( [
'log_id' => 1,
] + $actorRowFields );
$performer = $logEntry->getPerformerIdentity();
$this->assertTrue( $expected->equals( $performer ) );
}
}