mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 17:58:41 +00:00
58 lines
1.2 KiB
PHP
58 lines
1.2 KiB
PHP
<?php
|
|
/**
|
|
* Karaka
|
|
*
|
|
* PHP Version 8.0
|
|
*
|
|
* @package tests
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link https://karaka.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace phpOMS\tests\Account;
|
|
|
|
require_once __DIR__ . '/../Autoloader.php';
|
|
|
|
use phpOMS\Account\PermissionType;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
final class PermissionTypeTest extends \PHPUnit\Framework\TestCase
|
|
{
|
|
/**
|
|
* @group framework
|
|
* @coversNothing
|
|
*/
|
|
public function testEnumCount() : void
|
|
{
|
|
self::assertCount(6, PermissionType::getConstants());
|
|
}
|
|
|
|
/**
|
|
* @group framework
|
|
* @coversNothing
|
|
*/
|
|
public function testUnique() : void
|
|
{
|
|
self::assertEquals(PermissionType::getConstants(), \array_unique(PermissionType::getConstants()));
|
|
}
|
|
|
|
/**
|
|
* @group framework
|
|
* @coversNothing
|
|
*/
|
|
public function testEnums() : void
|
|
{
|
|
self::assertEquals(1, PermissionType::NONE);
|
|
self::assertEquals(2, PermissionType::READ);
|
|
self::assertEquals(4, PermissionType::CREATE);
|
|
self::assertEquals(8, PermissionType::MODIFY);
|
|
self::assertEquals(16, PermissionType::DELETE);
|
|
self::assertEquals(32, PermissionType::PERMISSION);
|
|
}
|
|
}
|