2015-09-29 14:31:52 +02:00
|
|
|
<?php
|
|
|
|
|
2023-12-31 09:28:37 +01:00
|
|
|
namespace Tests\Wallabag\CoreBundle\Controller\Api;
|
2015-09-29 14:31:52 +02:00
|
|
|
|
2022-08-28 02:01:46 +02:00
|
|
|
use Doctrine\ORM\EntityManagerInterface;
|
2022-08-28 16:59:43 +02:00
|
|
|
use FOS\UserBundle\Model\UserInterface;
|
2022-11-23 15:51:33 +01:00
|
|
|
use FOS\UserBundle\Model\UserManager;
|
2023-08-08 01:21:56 +02:00
|
|
|
use Symfony\Bundle\FrameworkBundle\KernelBrowser;
|
2015-09-29 14:31:52 +02:00
|
|
|
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
|
2023-12-30 23:32:36 +01:00
|
|
|
use Wallabag\CoreBundle\Entity\User;
|
2015-09-29 14:31:52 +02:00
|
|
|
|
2015-11-01 23:42:52 +01:00
|
|
|
abstract class WallabagApiTestCase extends WebTestCase
|
2015-09-29 14:31:52 +02:00
|
|
|
{
|
|
|
|
/**
|
2023-08-08 01:21:56 +02:00
|
|
|
* @var KernelBrowser
|
2015-09-29 14:31:52 +02:00
|
|
|
*/
|
2024-01-01 19:11:01 +01:00
|
|
|
protected $client;
|
2015-09-29 14:31:52 +02:00
|
|
|
|
2015-12-29 15:08:33 +01:00
|
|
|
/**
|
2022-08-28 16:59:43 +02:00
|
|
|
* @var UserInterface
|
2015-12-29 15:08:33 +01:00
|
|
|
*/
|
|
|
|
protected $user;
|
|
|
|
|
2020-12-08 09:17:10 +01:00
|
|
|
protected function setUp(): void
|
2015-09-29 14:31:52 +02:00
|
|
|
{
|
2022-08-01 08:38:50 +02:00
|
|
|
parent::setUp();
|
2015-09-29 14:31:52 +02:00
|
|
|
$this->client = $this->createAuthorizedClient();
|
|
|
|
}
|
|
|
|
|
2023-12-24 20:37:54 +01:00
|
|
|
/**
|
|
|
|
* @return KernelBrowser
|
|
|
|
*/
|
|
|
|
protected function createUnauthorizedClient()
|
|
|
|
{
|
|
|
|
static::ensureKernelShutdown();
|
|
|
|
|
|
|
|
return static::createClient();
|
|
|
|
}
|
|
|
|
|
2015-09-29 14:31:52 +02:00
|
|
|
/**
|
2023-08-08 01:21:56 +02:00
|
|
|
* @return KernelBrowser
|
2015-09-29 14:31:52 +02:00
|
|
|
*/
|
|
|
|
protected function createAuthorizedClient()
|
|
|
|
{
|
2023-12-24 20:37:54 +01:00
|
|
|
$client = $this->createUnauthorizedClient();
|
2015-09-29 14:31:52 +02:00
|
|
|
$container = $client->getContainer();
|
|
|
|
|
2022-11-23 15:51:33 +01:00
|
|
|
/** @var UserManager $userManager */
|
2018-10-04 14:07:20 +02:00
|
|
|
$userManager = $container->get('fos_user.user_manager.test');
|
2015-09-29 14:31:52 +02:00
|
|
|
$firewallName = $container->getParameter('fos_user.firewall_name');
|
|
|
|
|
2016-04-12 11:36:01 +02:00
|
|
|
$this->user = $userManager->findUserBy(['username' => 'admin']);
|
2015-09-29 14:31:52 +02:00
|
|
|
|
2024-01-01 19:51:22 +01:00
|
|
|
$client->loginUser($this->user, $firewallName);
|
2015-09-29 14:31:52 +02:00
|
|
|
|
|
|
|
return $client;
|
|
|
|
}
|
2018-11-26 22:22:49 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the ID for the user admin.
|
|
|
|
* Used because on heavy testing we don't want to re-create the database on each run.
|
|
|
|
* Which means "admin" user won't have id 1 all the time.
|
|
|
|
*
|
2018-11-26 22:46:44 +01:00
|
|
|
* @param string $username
|
2018-11-26 22:22:49 +01:00
|
|
|
*
|
|
|
|
* @return int
|
|
|
|
*/
|
2018-11-26 22:46:44 +01:00
|
|
|
protected function getUserId($username = 'admin')
|
2018-11-26 22:22:49 +01:00
|
|
|
{
|
|
|
|
return $this->client
|
|
|
|
->getContainer()
|
2022-08-28 02:01:46 +02:00
|
|
|
->get(EntityManagerInterface::class)
|
2022-08-25 21:37:10 +02:00
|
|
|
->getRepository(User::class)
|
2018-11-26 22:22:49 +01:00
|
|
|
->findOneByUserName($username)
|
|
|
|
->getId();
|
|
|
|
}
|
2015-09-29 14:31:52 +02:00
|
|
|
}
|