1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <?php
- // This file is part of GNU social - https://www.gnu.org/software/social
- //
- // GNU social is free software: you can redistribute it and/or modify
- // it under the terms of the GNU Affero General Public License as published by
- // the Free Software Foundation, either version 3 of the License, or
- // (at your option) any later version.
- //
- // GNU social is distributed in the hope that it will be useful,
- // but WITHOUT ANY WARRANTY; without even the implied warranty of
- // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- // GNU Affero General Public License for more details.
- //
- // You should have received a copy of the GNU Affero General Public License
- // along with GNU social. If not, see <http://www.gnu.org/licenses/>.
- namespace Tests\Unit;
- if (!defined('INSTALLDIR')) {
- define('INSTALLDIR', dirname(dirname(__DIR__)));
- }
- if (!defined('GNUSOCIAL')) {
- define('GNUSOCIAL', true);
- }
- if (!defined('STATUSNET')) { // Compatibility
- define('STATUSNET', true);
- }
- use Exception;
- use PHPUnit\Framework\TestCase;
- use User;
- require_once INSTALLDIR . '/lib/common.php';
- final class UserRightsTest extends TestCase
- {
- protected $user = null;
- function setUp()
- {
- $user = User::getKV('nickname', 'userrightstestuser');
- if ($user) {
- // Leftover from a broken test run?
- $profile = $user->getProfile();
- $user->delete();
- $profile->delete();
- }
- $this->user = User::register(array('nickname' => 'userrightstestuser'));
- if (!$this->user) {
- throw new Exception("Couldn't register userrightstestuser");
- }
- }
- function tearDown()
- {
- if ($this->user) {
- $profile = $this->user->getProfile();
- $this->user->delete();
- $profile->delete();
- }
- }
- function testInvalidRole()
- {
- $this->assertFalse($this->user->hasRole('invalidrole'));
- }
- function standardRoles()
- {
- return array(array('admin'),
- array('moderator'));
- }
- /**
- * @dataProvider standardRoles
- * @param $role
- */
- function testUngrantedRole($role)
- {
- $this->assertFalse($this->user->hasRole($role));
- }
- /**
- * @dataProvider standardRoles
- * @param $role
- */
- function testGrantedRole($role)
- {
- $this->user->grantRole($role);
- $this->assertTrue($this->user->hasRole($role));
- }
- }
|