mediawiki-extensions-Echo/tests/NotificationsTest.php
James D. Forrester eb4e17f15d build: Enable phpcs rule 'PSR2.Classes.PropertyDeclaration.ScopeMissing' and make pass
Change-Id: I96b295bba43185085631722e10a5e5cfa7ecf27f
2015-10-29 13:06:43 +01:00

56 lines
1.5 KiB
PHP

<?php
/**
* Tests for the built in notification types
*
* @group Database
*/
class NotificationsTest extends MediaWikiTestCase {
/** @var User $sysop */
// @codingStandardsIgnoreStart
var $sysop;
// @codingStandardsIgnoreEnd
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'] );
}
}