mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-14 19:28:31 +00:00
a0ca1d89c6
Changes to the use statements done automatically via script Addition of missing use statements done manually Change-Id: Iad87245bf8082193be72f7e482f29e9f1bad11fc
72 lines
1.6 KiB
PHP
72 lines
1.6 KiB
PHP
<?php
|
|
|
|
use MediaWiki\Extension\Notifications\DbFactory;
|
|
use MediaWiki\Extension\Notifications\UnreadWikis;
|
|
use MediaWiki\Utils\MWTimestamp;
|
|
use Wikimedia\TestingAccessWrapper;
|
|
|
|
/**
|
|
* Tests for unread wiki database access
|
|
*
|
|
* @group Database
|
|
* @covers \MediaWiki\Extension\Notifications\UnreadWikis
|
|
*/
|
|
class UnreadWikisTest extends MediaWikiIntegrationTestCase {
|
|
|
|
public function testUpdateCount() {
|
|
$unread = TestingAccessWrapper::newFromObject( new UnreadWikis( 1 ) );
|
|
$unread->dbFactory = $this->mockDbFactory( $this->db );
|
|
$unread->updateCount(
|
|
'foobar',
|
|
2,
|
|
new MWTimestamp( '20220322222222' ),
|
|
3,
|
|
new MWTimestamp( '20220322222223' )
|
|
);
|
|
$this->assertSame(
|
|
[
|
|
'foobar' => [
|
|
'alert' => [ 'count' => '2', 'ts' => '20220322222222' ],
|
|
'message' => [ 'count' => '3', 'ts' => '20220322222223' ],
|
|
]
|
|
],
|
|
$unread->getUnreadCounts()
|
|
);
|
|
}
|
|
|
|
public function testUpdateCountFalse() {
|
|
$unread = TestingAccessWrapper::newFromObject( new UnreadWikis( 1 ) );
|
|
$unread->dbFactory = $this->mockDbFactory( $this->db );
|
|
$unread->updateCount(
|
|
'foobar',
|
|
3,
|
|
false,
|
|
4,
|
|
false
|
|
);
|
|
$this->assertSame(
|
|
[
|
|
'foobar' => [
|
|
'alert' => [ 'count' => '3', 'ts' => '00000000000000' ],
|
|
'message' => [ 'count' => '4', 'ts' => '00000000000000' ],
|
|
]
|
|
],
|
|
$unread->getUnreadCounts()
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Mock object of DbFactory
|
|
* @param \Wikimedia\Rdbms\IDatabase $db
|
|
* @return DbFactory
|
|
*/
|
|
protected function mockDbFactory( $db ) {
|
|
$dbFactory = $this->createMock( DbFactory::class );
|
|
$dbFactory->expects( $this->any() )
|
|
->method( 'getSharedDb' )
|
|
->willReturn( $db );
|
|
|
|
return $dbFactory;
|
|
}
|
|
}
|