wiki.techinc.nl/tests/phpunit/unit/includes/watcheditem/WatchedItemUnitTest.php
daniel fed7f0b179 Remove $actor field from UsererIdentityValue
Code that needs to store an actor ID in the database to
represent a UserIdentity, or needs to construct a UserIdentity based on
an actor ID loaded from the database, should use the ActorNormalization
service.

Note: The getActorId() method is removed from the UserIdentity interface,
but all concrete classes continue to support it for now.
UsererIdentityValue::getActorId() is hard deprecated and should
be removed in 1.37. It always returns 0.
User::getActorId() is not deprecated at this point.

Bug: T274179
Depends-On: Id2b3ddf6a2a7cdf90f8936a69148d2cce6fde237
Change-Id: I9925906d11e47efaec3c1f48d5cb3f9896a982c1
2021-04-13 18:18:06 +00:00

111 lines
4.8 KiB
PHP

<?php
use MediaWiki\User\UserIdentityValue;
use Wikimedia\Timestamp\ConvertibleTimestamp;
/**
* @covers WatchedItem
*/
class WatchedItemUnitTest extends MediaWikiUnitTestCase {
public function testIsExpired() {
$user = new UserIdentityValue( 7, 'MockUser' );
$target = new TitleValue( 0, 'SomeDbKey' );
$notExpired1 = new WatchedItem( $user, $target, null, '20500101000000' );
$this->assertFalse( $notExpired1->isExpired() );
$notExpired2 = new WatchedItem( $user, $target, null );
$this->assertFalse( $notExpired2->isExpired() );
$expired = new WatchedItem( $user, $target, null, '20010101000000' );
$this->assertTrue( $expired->isExpired() );
}
public function testgetExpiryInDays() {
$user = new UserIdentityValue( 7, 'MockUser' );
$target = new TitleValue( 0, 'SomeDbKey' );
// Fake current time to be 2020-05-27T00:00:00Z
$fakeTime = ConvertibleTimestamp::setFakeTime( '20200527000000' );
// Adding a watched item with an expiry of a month from the frozen time
$watchedItemMonth = new WatchedItem( $user, $target, null, '20200627000000' );
$daysRemainingMonth = $watchedItemMonth->getExpiryInDays();
$this->assertSame( 31, $daysRemainingMonth );
// Adding a watched item with an expiry of 7 days from the frozen time
$watchedItemWeek = new WatchedItem( $user, $target, null, '20200603000000' );
$daysRemainingWeek = $watchedItemWeek->getExpiryInDays();
$this->assertSame( 7, $daysRemainingWeek );
// Adding a watched item with an expiry of 1 day from the frozen time
$watchedItemDay = new WatchedItem( $user, $target, null, '20200528000000' );
$daysRemainingDay = $watchedItemDay->getExpiryInDays();
$this->assertSame( 1, $daysRemainingDay );
// Adding a watched item with an expiry in less than 1 day from the frozen time
$watchedItemSoon = new WatchedItem( $user, $target, null, '20200527010001' );
$daysRemainingSoon = $watchedItemSoon->getExpiryInDays();
$this->assertSame( 0, $daysRemainingSoon );
// Adding a watched item with no expiry
$permamentlyWatchedItem = new WatchedItem( $user, $target, null, null );
$days = $permamentlyWatchedItem->getExpiryInDays();
$this->assertSame( null, $days );
}
public function testgetExpiryInDaysText() {
$user = new UserIdentityValue( 7, 'MockUser' );
$target = new TitleValue( 0, 'SomeDbKey' );
$messageLocalizer = $this->createMock( MessageLocalizer::class );
$messageLocalizer->method( 'msg' )->willReturnCallback(
function ( $key, ...$params ) {
// Right now we aren't worrying about the message formatting,
// just testing if the correct parameter is there by adding it
// to the end. Use MediaWikiTestCaseTrait::getMockMessage
return $this->getMockMessage(
$params ? ( $key . '-' . $params[0][0] ) : $key
);
}
);
// Fake current time to be 2020-05-27T00:00:00Z
$fakeTime = ConvertibleTimestamp::setFakeTime( '20200527000000' );
// Adding a watched item with an expiry of a month from the frozen time
$watchedItemMonth = new WatchedItem( $user, $target, null, '20200627000000' );
$daysRemainingMonthText = $watchedItemMonth->getExpiryInDaysText( $messageLocalizer );
$this->assertSame( 'watchlist-expiring-days-full-text-31', $daysRemainingMonthText );
// Adding a watched item with an expiry of 7 days from the frozen time
$watchedItemWeek = new WatchedItem( $user, $target, null, '20200603000000' );
$daysRemainingWeekText = $watchedItemWeek->getExpiryInDaysText( $messageLocalizer );
$this->assertSame( 'watchlist-expiring-days-full-text-7', $daysRemainingWeekText );
// Show a watched item with an expiry of 7 days from the frozen time in a dropdown option
$daysRemainingWeekText = $watchedItemWeek->getExpiryInDaysText( $messageLocalizer, true );
$this->assertSame( 'watchlist-expiry-days-left-7', $daysRemainingWeekText );
// Adding a watched item with an expiry of 1 day from the frozen time
$watchedItemDay = new WatchedItem( $user, $target, null, '20200528000000' );
$daysRemainingDayText = $watchedItemDay->getExpiryInDaysText( $messageLocalizer );
$this->assertSame( 'watchlist-expiring-days-full-text-1', $daysRemainingDayText );
// Adding a watched item with an expiry in less than 1 day from the frozen time
$watchedItemSoon = new WatchedItem( $user, $target, null, '20200527010001' );
$daysRemainingSoonText = $watchedItemSoon->getExpiryInDaysText( $messageLocalizer );
$this->assertSame( 'watchlist-expiring-hours-full-text', $daysRemainingSoonText );
// Text is for a watchlist expiry dropdown
$daysRemainingSoonText = $watchedItemSoon->getExpiryInDaysText( $messageLocalizer, true );
$this->assertSame( 'watchlist-expiry-hours-left', $daysRemainingSoonText );
// Adding a watched item with no expiry
$permamentlyWatchedItem = new WatchedItem( $user, $target, null, null );
$daysText = $permamentlyWatchedItem->getExpiryInDaysText( $messageLocalizer );
$this->assertSame( '', $daysText );
}
}