mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-15 03:35:01 +00:00
db79d76d83
Notably: any() is the default anyway. It doesn't really make the tests more specific or better readable when we repeat it all the time. Change-Id: I56d201bfce454587b00015b7208f313dd8ed9624
69 lines
1.5 KiB
PHP
69 lines
1.5 KiB
PHP
<?php
|
|
|
|
use Wikimedia\TestingAccessWrapper;
|
|
|
|
/**
|
|
* Tests for unread wiki database access
|
|
*
|
|
* @group Database
|
|
* @covers \EchoUnreadWikis
|
|
*/
|
|
class UnreadWikisTest extends MediaWikiIntegrationTestCase {
|
|
|
|
public function testUpdateCount() {
|
|
$unread = TestingAccessWrapper::newFromObject( new EchoUnreadWikis( 1 ) );
|
|
$unread->dbFactory = $this->mockMWEchoDbFactory( $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 EchoUnreadWikis( 1 ) );
|
|
$unread->dbFactory = $this->mockMWEchoDbFactory( $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 MWEchoDbFactory
|
|
* @param \Wikimedia\Rdbms\IDatabase $db
|
|
* @return MWEchoDbFactory
|
|
*/
|
|
protected function mockMWEchoDbFactory( $db ) {
|
|
$dbFactory = $this->createMock( MWEchoDbFactory::class );
|
|
$dbFactory->expects( $this->any() )
|
|
->method( 'getSharedDb' )
|
|
->will( $this->returnValue( $db ) );
|
|
|
|
return $dbFactory;
|
|
}
|
|
}
|