mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-14 11:16:16 +00:00
3e94bfac8b
* Only covers EchoHooks::onUserRights right now, more patches to follow Change-Id: Ie93eff0a9a75a4a9816c81d57b7530149a14bb7a
52 lines
1.4 KiB
PHP
52 lines
1.4 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Tests for the built in notification types
|
|
*
|
|
* @group Database
|
|
*/
|
|
class NotificationsTest extends MediaWikiTestCase {
|
|
|
|
/** @var User $sysop */
|
|
var $sysop;
|
|
|
|
public function setUp() {
|
|
parent::setUp();
|
|
$this->sysop = User::newFromName( 'UTSysop' );
|
|
$this->setMwGlobals( 'wgUser', $this->sysop );
|
|
|
|
}
|
|
/**
|
|
* Helper function to get a user's latest notification
|
|
* @param User $user
|
|
* @return EchoEvent
|
|
*/
|
|
public static function getLatestNotification( $user ) {
|
|
$notifs = ApiEchoNotifications::getNotifications( $user );
|
|
$index = array_keys($notifs);
|
|
return EchoEvent::newFromID( $notifs[$index[0]]['id'] );
|
|
}
|
|
/**
|
|
* @covers EchoHooks::onUserRights
|
|
*/
|
|
public function testUserRightsNotif() {
|
|
$user = new User();
|
|
$user->setName( 'Dummy' );
|
|
$user->addToDatabase();
|
|
|
|
$context = new DerivativeContext( RequestContext::getMain() );
|
|
$context->setUser( $this->sysop );
|
|
$ur = new UserrightsPage();
|
|
$ur->setContext( $context );
|
|
$ur->doSaveUserGroups( $user, array('sysop'), array(), 'reason' );
|
|
$event = self::getLatestNotification( $user );
|
|
$this->assertEquals( $event->getType(), 'user-rights' );
|
|
$this->assertEquals( $this->sysop->getName(), $event->getAgent()->getName() );
|
|
$extra = $event->getExtra();
|
|
$this->assertArrayHasKey( 'add', $extra );
|
|
$this->assertArrayEquals( array( 'sysop' ), $extra['add'] );
|
|
$this->assertArrayEquals( array(), $extra['remove'] );
|
|
}
|
|
|
|
}
|