mirror of
https://github.com/flarum/framework.git
synced 2024-11-29 04:33:47 +08:00
100 lines
2.2 KiB
PHP
100 lines
2.2 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Flarum.
|
|
*
|
|
* For detailed copyright and license information, please view the
|
|
* LICENSE file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Flarum\Tests\integration\extenders;
|
|
|
|
use Flarum\Extend;
|
|
use Flarum\Tests\integration\RetrievesAuthorizedUsers;
|
|
use Flarum\Tests\integration\TestCase;
|
|
use Flarum\User\DisplayName\DriverInterface;
|
|
use Flarum\User\User;
|
|
|
|
class UserTest extends TestCase
|
|
{
|
|
use RetrievesAuthorizedUsers;
|
|
|
|
protected function prepDb()
|
|
{
|
|
$this->prepareDatabase([
|
|
'users' => [
|
|
$this->adminUser(),
|
|
$this->normalUser(),
|
|
],
|
|
'settings' => [
|
|
['key' => 'display_name_driver', 'value' => 'custom'],
|
|
],
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function username_display_name_driver_used_by_default()
|
|
{
|
|
$this->prepDb();
|
|
|
|
$user = User::find(1);
|
|
|
|
$this->assertEquals('admin', $user->displayName);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function can_use_custom_display_name_driver()
|
|
{
|
|
$this->extend(
|
|
(new Extend\User)
|
|
->displayNameDriver('custom', CustomDisplayNameDriver::class)
|
|
);
|
|
|
|
$this->prepDb();
|
|
|
|
$user = User::find(1);
|
|
|
|
$this->assertEquals('admin@machine.local$$$suffix', $user->displayName);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function user_has_permissions_for_expected_groups_if_no_processors_added()
|
|
{
|
|
$this->prepDb();
|
|
$user = User::find(2);
|
|
|
|
$this->assertContains('viewUserList', $user->getPermissions());
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function processor_can_restrict_user_groups()
|
|
{
|
|
$this->extend((new Extend\User)->permissionGroups(function (User $user, array $groupIds) {
|
|
return array_filter($groupIds, function ($id) {
|
|
return $id != 3;
|
|
});
|
|
}));
|
|
|
|
$this->prepDb();
|
|
$user = User::find(2);
|
|
|
|
$this->assertNotContains('viewUserList', $user->getPermissions());
|
|
}
|
|
}
|
|
|
|
class CustomDisplayNameDriver implements DriverInterface
|
|
{
|
|
public function displayName(User $user): string
|
|
{
|
|
return $user->email.'$$$suffix';
|
|
}
|
|
}
|