mediawiki-extensions-Echo/tests/phpunit/unit/Gateway/UserNotificationGatewayTest.php
Umherirrender 96ef4cfd2d Migrate to IReadableDatabase::newSelectQueryBuilder
Also use expression builder to avoid raw sql

Bug: T312333
Change-Id: I6ce22de6637fccca8cf86a405bc023f268ff693b
2024-04-28 01:05:10 +02:00

177 lines
4.8 KiB
PHP

<?php
use MediaWiki\Config\HashConfig;
use MediaWiki\Extension\Notifications\DbFactory;
use MediaWiki\Extension\Notifications\Gateway\UserNotificationGateway;
use MediaWiki\User\User;
use Wikimedia\Rdbms\FakeResultWrapper;
use Wikimedia\Rdbms\IDatabase;
use Wikimedia\Rdbms\SelectQueryBuilder;
use Wikimedia\Rdbms\UpdateQueryBuilder;
/**
* @covers \MediaWiki\Extension\Notifications\Gateway\UserNotificationGateway
*/
class UserNotificationGatewayTest extends MediaWikiUnitTestCase {
public function testMarkRead() {
// no event ids to mark
$gateway = new UserNotificationGateway(
$this->mockUser(),
$this->mockDbFactory(),
$this->mockConfig()
);
$this->assertFalse( $gateway->markRead( [] ) );
// successful update
$gateway = new UserNotificationGateway(
$this->mockUser(),
$this->mockDbFactory( [ 'update' => true ] ),
$this->mockConfig()
);
$this->assertTrue( $gateway->markRead( [ 2 ] ) );
// unsuccessful update
$gateway = new UserNotificationGateway(
$this->mockUser(),
$this->mockDbFactory( [ 'update' => false ] ),
$this->mockConfig()
);
$this->assertFalse( $gateway->markRead( [ 2 ] ) );
}
public function testMarkAllRead() {
// successful update
$gateway = new UserNotificationGateway(
$this->mockUser(),
$this->mockDbFactory( [ 'update' => true ] ),
$this->mockConfig()
);
$this->assertTrue( $gateway->markAllRead( [ 2 ] ) );
// null update
$gateway = new UserNotificationGateway(
$this->mockUser(),
$this->mockDbFactory( [ 'update' => false ] ),
$this->mockConfig()
);
$this->assertTrue( $gateway->markAllRead( [ 2 ] ) );
}
public function testGetNotificationCount() {
// unsuccessful select
$gateway = new UserNotificationGateway(
$this->mockUser(),
$this->mockDbFactory( [ 'selectRowCount' => 0 ] ),
$this->mockConfig()
);
$this->assertSame( 0, $gateway->getCappedNotificationCount( DB_REPLICA, [ 'event_one' ] ) );
// successful select of alert
$gateway = new UserNotificationGateway(
$this->mockUser(),
$this->mockDbFactory( [ 'selectRowCount' => 2 ] ),
$this->mockConfig()
);
$this->assertSame( 2, $gateway->getCappedNotificationCount( DB_REPLICA, [ 'event_one', 'event_two' ] ) );
// there is event, should return 0
$gateway = new UserNotificationGateway(
$this->mockUser(),
$this->mockDbFactory( [ 'selectRowCount' => 2 ] ),
$this->mockConfig()
);
$this->assertSame( 0, $gateway->getCappedNotificationCount( DB_REPLICA, [] ) );
// successful select
$gateway = new UserNotificationGateway(
$this->mockUser(),
$this->mockDbFactory( [ 'selectRowCount' => 3 ] ),
$this->mockConfig()
);
$this->assertSame( 3, $gateway->getCappedNotificationCount( DB_REPLICA, [ 'event_one' ] ) );
}
public function testGetUnreadNotifications() {
$dbResult = [
(object)[ 'notification_event' => 1 ],
(object)[ 'notification_event' => 2 ],
(object)[ 'notification_event' => 3 ],
];
$gateway = new UserNotificationGateway(
$this->mockUser(),
$this->mockDbFactory( [ 'select' => $dbResult ] ),
$this->mockConfig()
);
$res = $gateway->getUnreadNotifications( 'user_talk' );
$this->assertEquals( [ 1 => 1, 2 => 2, 3 => 3 ], $res );
}
/**
* Mock object of User
* @return User
*/
protected function mockUser() {
$user = $this->createMock( User::class );
$user->method( 'getID' )
->willReturn( 1 );
return $user;
}
/**
* Mock object of DbFactory
* @param array $dbResult
* @return DbFactory
*/
protected function mockDbFactory( array $dbResult = [] ) {
$dbFactory = $this->createMock( DbFactory::class );
$dbFactory->method( 'getEchoDb' )
->willReturn( $this->mockDb( $dbResult ) );
return $dbFactory;
}
protected function mockConfig() {
return new HashConfig( [
'UpdateRowsPerQuery' => 500,
] );
}
/**
* Returns a mock database object
* @param array $dbResult
* @return \Wikimedia\Rdbms\IDatabase
*/
protected function mockDb( array $dbResult = [] ) {
$dbResult += [
'update' => '',
'select' => [],
'selectRow' => '',
'selectRowCount' => 0,
];
$db = $this->createMock( IDatabase::class );
$db->method( 'affectedRows' )
->willReturn( $dbResult['update'] ? 1 : 0 );
$db->method( 'update' )
->willReturn( $dbResult['update'] );
$db->method( 'select' )
->willReturn( new FakeResultWrapper( $dbResult['select'] ) );
$db->method( 'selectRow' )
->willReturn( $dbResult['selectRow'] );
$db->method( 'selectRowCount' )
->willReturn( $dbResult['selectRowCount'] );
$db->method( 'newUpdateQueryBuilder' )
->willReturnCallback( static function () use ( $db ) {
return new UpdateQueryBuilder( $db );
} );
$db->method( 'newSelectQueryBuilder' )
->willReturnCallback( static function () use ( $db ) {
return new SelectQueryBuilder( $db );
} );
return $db;
}
}