mirror of
https://github.com/nuxsmin/sysPass.git
synced 2026-03-10 10:26:58 +01:00
test(IT): Test account manager use cases (WIP)
Signed-off-by: Rubén D <nuxsmin@syspass.org>
This commit is contained in:
@@ -25,28 +25,30 @@
|
||||
namespace SP\Modules\Web\Controllers\AccountManager;
|
||||
|
||||
use Exception;
|
||||
use JsonException;
|
||||
use SP\Core\Acl\Acl;
|
||||
use SP\Core\Application;
|
||||
use SP\Core\Events\Event;
|
||||
use SP\Domain\Account\Ports\AccountHistoryService;
|
||||
use SP\Domain\Account\Ports\AccountSearchService;
|
||||
use SP\Domain\Account\Ports\AccountService;
|
||||
use SP\Domain\Auth\Services\AuthException;
|
||||
use SP\Domain\Category\Ports\CategoryService;
|
||||
use SP\Domain\Client\Ports\ClientService;
|
||||
use SP\Domain\Core\Acl\AclActionsInterface;
|
||||
use SP\Domain\CustomField\Ports\CustomFieldDataService;
|
||||
use SP\Domain\Core\Exceptions\ConstraintException;
|
||||
use SP\Domain\Core\Exceptions\QueryException;
|
||||
use SP\Domain\Core\Exceptions\SessionTimeout;
|
||||
use SP\Domain\Core\Exceptions\SPException;
|
||||
use SP\Domain\Http\Dtos\JsonMessage;
|
||||
use SP\Domain\Tag\Ports\TagService;
|
||||
use SP\Domain\User\Ports\UserGroupService;
|
||||
use SP\Domain\User\Ports\UserService;
|
||||
use SP\Modules\Web\Controllers\ControllerBase;
|
||||
use SP\Modules\Web\Controllers\Helpers\Grid\AccountGrid;
|
||||
use SP\Modules\Web\Controllers\Traits\JsonTrait;
|
||||
use SP\Mvc\Controller\ItemTrait;
|
||||
use SP\Mvc\Controller\WebControllerHelper;
|
||||
use SP\Mvc\View\Components\SelectItemAdapter;
|
||||
|
||||
use function SP\__;
|
||||
use function SP\__u;
|
||||
use function SP\processException;
|
||||
|
||||
/**
|
||||
* Class AccountManagerController
|
||||
*
|
||||
@@ -57,34 +59,21 @@ final class BulkEditController extends ControllerBase
|
||||
use ItemTrait;
|
||||
use JsonTrait;
|
||||
|
||||
private AccountService $accountService;
|
||||
private AccountSearchService $accountSearchService;
|
||||
private AccountHistoryService $accountHistoryService;
|
||||
private AccountGrid $accountGrid;
|
||||
private CustomFieldDataService $customFieldService;
|
||||
private CategoryService $categoryService;
|
||||
private ClientService $clientService;
|
||||
private TagService $tagService;
|
||||
private UserService $userService;
|
||||
private UserGroupService $userGroupService;
|
||||
|
||||
/**
|
||||
* @throws AuthException
|
||||
* @throws SessionTimeout
|
||||
*/
|
||||
public function __construct(
|
||||
Application $application,
|
||||
WebControllerHelper $webControllerHelper,
|
||||
CategoryService $categoryService,
|
||||
ClientService $clientService,
|
||||
TagService $tagService,
|
||||
UserService $userService,
|
||||
UserGroupService $userGroupService
|
||||
Application $application,
|
||||
WebControllerHelper $webControllerHelper,
|
||||
private readonly CategoryService $categoryService,
|
||||
private readonly ClientService $clientService,
|
||||
private readonly TagService $tagService,
|
||||
private readonly UserService $userService,
|
||||
private readonly UserGroupService $userGroupService
|
||||
) {
|
||||
parent::__construct($application, $webControllerHelper);
|
||||
|
||||
$this->categoryService = $categoryService;
|
||||
$this->clientService = $clientService;
|
||||
$this->tagService = $tagService;
|
||||
$this->userService = $userService;
|
||||
$this->userGroupService = $userGroupService;
|
||||
|
||||
$this->checkLoggedIn();
|
||||
}
|
||||
|
||||
@@ -92,7 +81,7 @@ final class BulkEditController extends ControllerBase
|
||||
* bulkEditAction
|
||||
*
|
||||
* @return bool
|
||||
* @throws JsonException
|
||||
* @throws SPException
|
||||
*/
|
||||
public function bulkEditAction(): bool
|
||||
{
|
||||
@@ -111,10 +100,7 @@ final class BulkEditController extends ControllerBase
|
||||
|
||||
$this->setViewData();
|
||||
|
||||
$this->eventDispatcher->notify(
|
||||
'show.account.bulkEdit',
|
||||
new Event($this)
|
||||
);
|
||||
$this->eventDispatcher->notify('show.account.bulkEdit', new Event($this));
|
||||
|
||||
return $this->returnJsonResponseData(['html' => $this->render()]);
|
||||
} catch (Exception $e) {
|
||||
@@ -125,33 +111,28 @@ final class BulkEditController extends ControllerBase
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets view data
|
||||
* @return void
|
||||
* @throws ConstraintException
|
||||
* @throws QueryException
|
||||
*/
|
||||
protected function setViewData(): void
|
||||
{
|
||||
$this->view->addTemplate('account_bulkedit', 'itemshow');
|
||||
|
||||
$this->view->assign('nextAction', Acl::getActionRoute(AclActionsInterface::ITEMS_MANAGE));
|
||||
$this->view->assign('nextAction', $this->acl->getRouteFor(AclActionsInterface::ITEMS_MANAGE));
|
||||
|
||||
$clients = SelectItemAdapter::factory($this->clientService->getAll())->getItemsFromModel();
|
||||
$categories = SelectItemAdapter::factory($this->categoryService->getAll())->getItemsFromModel();
|
||||
$tags = SelectItemAdapter::factory($this->tagService->getAll())->getItemsFromModel();
|
||||
$users = SelectItemAdapter::factory($this->userService->getAll())->getItemsFromModel();
|
||||
$userGroups = SelectItemAdapter::factory($this->userGroupService->getAll())->getItemsFromModel();
|
||||
|
||||
$this->view->assign('users', $users);
|
||||
$this->view->assign('userGroups', $userGroups);
|
||||
|
||||
$this->view->assign('clients', $clients);
|
||||
$this->view->assign('categories', $categories);
|
||||
$this->view->assign('tags', $tags);
|
||||
|
||||
if ($this->view->isView === true) {
|
||||
$this->view->assign('disabled', 'disabled');
|
||||
$this->view->assign('readonly', 'readonly');
|
||||
} else {
|
||||
$this->view->assign('disabled', false);
|
||||
$this->view->assign('readonly', false);
|
||||
}
|
||||
$this->view->assign('users', SelectItemAdapter::factory($this->userService->getAll())->getItemsFromModel());
|
||||
$this->view->assign(
|
||||
'userGroups',
|
||||
SelectItemAdapter::factory($this->userGroupService->getAll())->getItemsFromModel()
|
||||
);
|
||||
$this->view->assign('clients', SelectItemAdapter::factory($this->clientService->getAll())->getItemsFromModel());
|
||||
$this->view->assign(
|
||||
'categories',
|
||||
SelectItemAdapter::factory($this->categoryService->getAll())->getItemsFromModel()
|
||||
);
|
||||
$this->view->assign('tags', SelectItemAdapter::factory($this->tagService->getAll())->getItemsFromModel());
|
||||
$this->view->assign('disabled', '');
|
||||
$this->view->assign('readonly', '');
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
/**
|
||||
* sysPass
|
||||
|
||||
@@ -37,6 +37,9 @@ use PHPUnit\Framework\TestCase;
|
||||
use Psr\Container\ContainerExceptionInterface;
|
||||
use Psr\Container\ContainerInterface;
|
||||
use Psr\Container\NotFoundExceptionInterface;
|
||||
use ReflectionException;
|
||||
use ReflectionMethod;
|
||||
use ReflectionObject;
|
||||
use SP\Core\Bootstrap\Path;
|
||||
use SP\Core\Bootstrap\PathsContext;
|
||||
use SP\Core\Definitions\CoreDefinitions;
|
||||
@@ -70,6 +73,7 @@ use SP\Infrastructure\File\FileException;
|
||||
use SP\Infrastructure\File\FileSystem;
|
||||
use SP\Modules\Web\Bootstrap;
|
||||
use SP\Mvc\View\OutputHandlerInterface;
|
||||
use SP\OutputChecker;
|
||||
use SP\Tests\Generators\UserDataGenerator;
|
||||
use SP\Tests\Generators\UserProfileDataGenerator;
|
||||
use SP\Tests\Stubs\OutputHandlerStub;
|
||||
@@ -153,9 +157,14 @@ abstract class IntegrationTestCase extends TestCase
|
||||
->constructorParameter('module', 'web')
|
||||
->constructorParameter('name', 'material-blue'),
|
||||
AclInterface::class => $acl,
|
||||
AccountAclService::class => $accountAcl
|
||||
AccountAclService::class => $accountAcl,
|
||||
];
|
||||
|
||||
$outputChecker = $this->getOutputChecker();
|
||||
|
||||
if ($outputChecker !== null) {
|
||||
$definitions[OutputHandlerInterface::class] = new OutputHandlerStub($outputChecker->bindTo($this));
|
||||
}
|
||||
|
||||
if ($request) {
|
||||
$definitions += [Request::class => $request];
|
||||
@@ -238,6 +247,21 @@ abstract class IntegrationTestCase extends TestCase
|
||||
return UserProfileDataGenerator::factory()->buildProfileData();
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws ReflectionException
|
||||
*/
|
||||
private function getOutputChecker(): ?Closure
|
||||
{
|
||||
$reflection = new ReflectionObject($this);
|
||||
foreach ($reflection->getMethods(ReflectionMethod::IS_PRIVATE) as $method) {
|
||||
if (count($method->getAttributes(OutputChecker::class)) > 0) {
|
||||
return $method->getClosure($this);
|
||||
}
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
final protected function addDatabaseMapperResolver(string $className, QueryResult $queryResult): void
|
||||
{
|
||||
$this->databaseMapperResolvers[$className] = $queryResult;
|
||||
|
||||
@@ -0,0 +1,112 @@
|
||||
<?php
|
||||
/**
|
||||
* sysPass
|
||||
*
|
||||
* @author nuxsmin
|
||||
* @link https://syspass.org
|
||||
* @copyright 2012-2024, Rubén Domínguez nuxsmin@$syspass.org
|
||||
*
|
||||
* This file is part of sysPass.
|
||||
*
|
||||
* sysPass is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* sysPass 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 General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with sysPass. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace SP\Tests\Modules\Web\Controllers\AccountManager;
|
||||
|
||||
use PHPUnit\Framework\Attributes\Group;
|
||||
use PHPUnit\Framework\Attributes\Test;
|
||||
use PHPUnit\Framework\MockObject\Exception;
|
||||
use Psr\Container\ContainerExceptionInterface;
|
||||
use Psr\Container\NotFoundExceptionInterface;
|
||||
use SP\Domain\Category\Models\Category;
|
||||
use SP\Domain\Client\Models\Client;
|
||||
use SP\Domain\Core\Exceptions\InvalidClassException;
|
||||
use SP\Domain\Tag\Models\Tag;
|
||||
use SP\Domain\User\Models\User;
|
||||
use SP\Domain\User\Models\UserGroup;
|
||||
use SP\Infrastructure\Database\QueryResult;
|
||||
use SP\Infrastructure\File\FileException;
|
||||
use SP\OutputChecker;
|
||||
use SP\Tests\Generators\CategoryGenerator;
|
||||
use SP\Tests\Generators\ClientGenerator;
|
||||
use SP\Tests\Generators\TagGenerator;
|
||||
use SP\Tests\Generators\UserDataGenerator;
|
||||
use SP\Tests\Generators\UserGroupGenerator;
|
||||
use SP\Tests\IntegrationTestCase;
|
||||
use Symfony\Component\DomCrawler\Crawler;
|
||||
|
||||
/**
|
||||
* Class AccountManagerTest
|
||||
*/
|
||||
#[Group('integration')]
|
||||
class AccountManagerTest extends IntegrationTestCase
|
||||
{
|
||||
|
||||
/**
|
||||
* @throws NotFoundExceptionInterface
|
||||
* @throws Exception
|
||||
* @throws FileException
|
||||
* @throws InvalidClassException
|
||||
* @throws ContainerExceptionInterface
|
||||
*/
|
||||
#[Test]
|
||||
public function bulkEdit()
|
||||
{
|
||||
$this->addDatabaseMapperResolver(
|
||||
User::class,
|
||||
QueryResult::withTotalNumRows([UserDataGenerator::factory()->buildUserData()], 1)
|
||||
);
|
||||
|
||||
$this->addDatabaseMapperResolver(
|
||||
UserGroup::class,
|
||||
QueryResult::withTotalNumRows([UserGroupGenerator::factory()->buildUserGroupData()], 1)
|
||||
);
|
||||
|
||||
$this->addDatabaseMapperResolver(
|
||||
Client::class,
|
||||
QueryResult::withTotalNumRows([ClientGenerator::factory()->buildClient()], 1)
|
||||
);
|
||||
|
||||
$this->addDatabaseMapperResolver(
|
||||
Tag::class,
|
||||
QueryResult::withTotalNumRows([TagGenerator::factory()->buildTag()], 1)
|
||||
);
|
||||
|
||||
$this->addDatabaseMapperResolver(
|
||||
Category::class,
|
||||
QueryResult::withTotalNumRows([CategoryGenerator::factory()->buildCategory()], 1)
|
||||
);
|
||||
|
||||
$container = $this->buildContainer(
|
||||
$this->getModuleDefinitions(),
|
||||
$this->buildRequest('post', 'index.php', ['r' => 'accountManager/bulkEdit'], ['items' => [100, 200, 300]])
|
||||
);
|
||||
|
||||
$this->runApp($container);
|
||||
}
|
||||
|
||||
#[OutputChecker]
|
||||
private function outputChecker(string $output): void
|
||||
{
|
||||
$crawler = new Crawler($output);
|
||||
$filter = $crawler->filterXPath(
|
||||
'//div[@id="box-popup"]//form[@name="frmAccountBulkEdit"]//select|//input|//div[@class="action-in-box"]/button'
|
||||
)->extract(['_name']);
|
||||
|
||||
$this->assertNotEmpty($output);
|
||||
$this->assertCount(19, $filter);
|
||||
}
|
||||
}
|
||||
38
tests/SP/OutputChecker.php
Normal file
38
tests/SP/OutputChecker.php
Normal file
@@ -0,0 +1,38 @@
|
||||
<?php
|
||||
/**
|
||||
* sysPass
|
||||
*
|
||||
* @author nuxsmin
|
||||
* @link https://syspass.org
|
||||
* @copyright 2012-2024, Rubén Domínguez nuxsmin@$syspass.org
|
||||
*
|
||||
* This file is part of sysPass.
|
||||
*
|
||||
* sysPass is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* sysPass 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 General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with sysPass. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace SP;
|
||||
|
||||
use Attribute;
|
||||
|
||||
/**
|
||||
* Class OutputChecker
|
||||
*/
|
||||
#[Attribute(Attribute::TARGET_METHOD)]
|
||||
final class OutputChecker
|
||||
{
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user