mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-06-20 17:15:51 +02:00
126 lines
5.1 KiB
PHP
126 lines
5.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/*
|
|
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
|
|
*
|
|
* Copyright (C) 2019 - 2023 Jan Böhmer (https://github.com/jbtronics)
|
|
*
|
|
* This program 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.
|
|
*
|
|
* This program 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 this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
namespace App\Tests\Services\UserSystem;
|
|
|
|
use App\Entity\UserSystem\PermissionData;
|
|
use App\Security\Interfaces\HasPermissionsInterface;
|
|
use App\Services\UserSystem\PermissionSchemaUpdater;
|
|
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
|
|
|
|
class TestPermissionHolder implements HasPermissionsInterface
|
|
{
|
|
public function __construct(private readonly PermissionData $perm_data)
|
|
{
|
|
}
|
|
|
|
public function getPermissions(): PermissionData
|
|
{
|
|
return $this->perm_data;
|
|
}
|
|
}
|
|
|
|
class PermissionSchemaUpdaterTest extends WebTestCase
|
|
{
|
|
/**
|
|
* @var PermissionSchemaUpdater
|
|
*/
|
|
protected $service;
|
|
|
|
public function setUp(): void
|
|
{
|
|
self::bootKernel();
|
|
|
|
$this->service = self::getContainer()->get(PermissionSchemaUpdater::class);
|
|
}
|
|
|
|
public function testIsSchemaUpdateNeeded(): void
|
|
{
|
|
$perm_data = new PermissionData();
|
|
$perm_data->setSchemaVersion(0);
|
|
$user = new TestPermissionHolder($perm_data);
|
|
|
|
//With schema version 0, an update should be needed
|
|
self::assertTrue($this->service->isSchemaUpdateNeeded($user));
|
|
|
|
//With a very high scheme number no update should be needed
|
|
$perm_data->setSchemaVersion(123456);
|
|
self::assertFalse($this->service->isSchemaUpdateNeeded($user));
|
|
}
|
|
|
|
public function testUpgradeSchema(): void
|
|
{
|
|
$perm_data = new PermissionData();
|
|
$perm_data->setSchemaVersion(0);
|
|
$user = new TestPermissionHolder($perm_data);
|
|
|
|
//With schema version 0, an update should be done and the schema version should be updated
|
|
self::assertTrue($this->service->upgradeSchema($user));
|
|
self::assertSame(PermissionData::CURRENT_SCHEMA_VERSION, $user->getPermissions()->getSchemaVersion());
|
|
|
|
//If we redo it with the same schema version, no update should be done
|
|
self::assertFalse($this->service->upgradeSchema($user));
|
|
}
|
|
|
|
public function testUpgradeSchemaToVersion1(): void
|
|
{
|
|
$perm_data = new PermissionData();
|
|
$perm_data->setSchemaVersion(0);
|
|
$perm_data->setPermissionValue('parts', 'edit', PermissionData::ALLOW);
|
|
$user = new TestPermissionHolder($perm_data);
|
|
|
|
//Do an upgrade and afterward the move, add, and withdraw permissions should be set to ALLOW
|
|
self::assertTrue($this->service->upgradeSchema($user, 1));
|
|
self::assertEquals(PermissionData::ALLOW, $user->getPermissions()->getPermissionValue('parts_stock', 'move'));
|
|
self::assertEquals(PermissionData::ALLOW, $user->getPermissions()->getPermissionValue('parts_stock', 'add'));
|
|
self::assertEquals(PermissionData::ALLOW, $user->getPermissions()->getPermissionValue('parts_stock', 'withdraw'));
|
|
}
|
|
|
|
public function testUpgradeSchemaToVersion2(): void
|
|
{
|
|
$perm_data = new PermissionData();
|
|
$perm_data->setSchemaVersion(1);
|
|
$perm_data->setPermissionValue('devices', 'read', PermissionData::ALLOW);
|
|
$perm_data->setPermissionValue('devices', 'edit', PermissionData::INHERIT);
|
|
$perm_data->setPermissionValue('devices', 'delete', PermissionData::DISALLOW);
|
|
$user = new TestPermissionHolder($perm_data);
|
|
|
|
//After the upgrade all operations should be available under the name "projects" with the same values
|
|
self::assertTrue($this->service->upgradeSchema($user, 2));
|
|
self::assertEquals(PermissionData::ALLOW, $user->getPermissions()->getPermissionValue('projects', 'read'));
|
|
self::assertEquals(PermissionData::INHERIT, $user->getPermissions()->getPermissionValue('projects', 'edit'));
|
|
self::assertEquals(PermissionData::DISALLOW, $user->getPermissions()->getPermissionValue('projects', 'delete'));
|
|
}
|
|
|
|
public function testUpgradeSchemaToVersion3(): void
|
|
{
|
|
$perm_data = new PermissionData();
|
|
$perm_data->setSchemaVersion(2);
|
|
$perm_data->setPermissionValue('system', 'server_infos', PermissionData::ALLOW);
|
|
|
|
$user = new TestPermissionHolder($perm_data);
|
|
|
|
//After the upgrade the server.show_updates should be set to ALLOW
|
|
self::assertTrue($this->service->upgradeSchema($user, 3));
|
|
self::assertSame(PermissionData::ALLOW, $user->getPermissions()->getPermissionValue('system', 'show_updates'));
|
|
}
|
|
}
|