0
0
Fork 0
mirror of https://github.com/kevinpapst/kimai2.git synced 2025-03-19 15:13:19 +00:00
kevinpapst_kimai2/tests/KernelTestTrait.php
Kevin Papst 0f3fa8fdbe
Code improvements (#1649)
* use global namespace for faster lookups
* phpstan level 5
2020-04-19 14:37:14 +02:00

81 lines
2.1 KiB
PHP

<?php
/*
* This file is part of the Kimai time-tracking app.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\Tests;
use App\DataFixtures\UserFixtures;
use App\Entity\User;
use Doctrine\Bundle\FixturesBundle\Fixture;
use Doctrine\Common\DataFixtures\Executor\ORMExecutor;
use Doctrine\Common\DataFixtures\Loader;
use Doctrine\ORM\EntityManagerInterface;
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;
/**
* A trait to be used in all tests that extend the KernelTestCase.
*/
trait KernelTestTrait
{
public function getEntityManager(): EntityManagerInterface
{
if (!$this instanceof KernelTestCase) {
throw new \Exception('KernelTestTrait can only be used in a KernelTestCase');
}
return $this::$container->get('doctrine.orm.entity_manager');
}
protected function importFixture(Fixture $fixture)
{
$em = $this::$container->get('doctrine.orm.entity_manager');
$loader = new Loader();
$loader->addFixture($fixture);
$executor = new ORMExecutor($em, null);
$executor->execute($loader->getFixtures(), true);
}
protected function getUserByName(string $username): ?User
{
return $this->getEntityManager()->getRepository(User::class)->findOneBy(['username' => $username]);
}
/**
* @param string $role
* @return User|null
*/
protected function getUserByRole(string $role = User::ROLE_USER)
{
$name = null;
switch ($role) {
case User::ROLE_SUPER_ADMIN:
$name = UserFixtures::USERNAME_SUPER_ADMIN;
break;
case User::ROLE_ADMIN:
$name = UserFixtures::USERNAME_ADMIN;
break;
case User::ROLE_TEAMLEAD:
$name = UserFixtures::USERNAME_TEAMLEAD;
break;
case User::ROLE_USER:
$name = UserFixtures::USERNAME_USER;
break;
default:
return null;
}
return $this->getUserByName($name);
}
}