2015-09-29 12:31:52 +00:00
|
|
|
<?php
|
|
|
|
|
2024-02-19 00:30:12 +00:00
|
|
|
namespace Tests\Wallabag\Controller\Api;
|
2015-09-29 12:31:52 +00:00
|
|
|
|
2022-08-28 00:01:46 +00:00
|
|
|
use Doctrine\ORM\EntityManagerInterface;
|
2022-08-28 14:59:43 +00:00
|
|
|
use FOS\UserBundle\Model\UserInterface;
|
2022-11-23 14:51:33 +00:00
|
|
|
use FOS\UserBundle\Model\UserManager;
|
2023-08-07 23:21:56 +00:00
|
|
|
use Symfony\Bundle\FrameworkBundle\KernelBrowser;
|
2015-09-29 12:31:52 +00:00
|
|
|
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
|
2024-02-19 00:30:12 +00:00
|
|
|
use Wallabag\Entity\User;
|
2015-09-29 12:31:52 +00:00
|
|
|
|
2015-11-01 22:42:52 +00:00
|
|
|
abstract class WallabagApiTestCase extends WebTestCase
|
2015-09-29 12:31:52 +00:00
|
|
|
{
|
|
|
|
/**
|
2023-08-07 23:21:56 +00:00
|
|
|
* @var KernelBrowser
|
2015-09-29 12:31:52 +00:00
|
|
|
*/
|
2024-01-01 18:11:01 +00:00
|
|
|
protected $client;
|
2015-09-29 12:31:52 +00:00
|
|
|
|
2015-12-29 14:08:33 +00:00
|
|
|
/**
|
2022-08-28 14:59:43 +00:00
|
|
|
* @var UserInterface
|
2015-12-29 14:08:33 +00:00
|
|
|
*/
|
|
|
|
protected $user;
|
|
|
|
|
2020-12-08 08:17:10 +00:00
|
|
|
protected function setUp(): void
|
2015-09-29 12:31:52 +00:00
|
|
|
{
|
2022-08-01 06:38:50 +00:00
|
|
|
parent::setUp();
|
2015-09-29 12:31:52 +00:00
|
|
|
$this->client = $this->createAuthorizedClient();
|
|
|
|
}
|
|
|
|
|
2023-12-24 19:37:54 +00:00
|
|
|
/**
|
|
|
|
* @return KernelBrowser
|
|
|
|
*/
|
|
|
|
protected function createUnauthorizedClient()
|
|
|
|
{
|
|
|
|
static::ensureKernelShutdown();
|
|
|
|
|
|
|
|
return static::createClient();
|
|
|
|
}
|
|
|
|
|
2015-09-29 12:31:52 +00:00
|
|
|
/**
|
2023-08-07 23:21:56 +00:00
|
|
|
* @return KernelBrowser
|
2015-09-29 12:31:52 +00:00
|
|
|
*/
|
|
|
|
protected function createAuthorizedClient()
|
|
|
|
{
|
2023-12-24 19:37:54 +00:00
|
|
|
$client = $this->createUnauthorizedClient();
|
2024-02-24 01:34:03 +00:00
|
|
|
$container = static::getContainer();
|
2015-09-29 12:31:52 +00:00
|
|
|
|
2022-11-23 14:51:33 +00:00
|
|
|
/** @var UserManager $userManager */
|
2024-02-24 01:34:03 +00:00
|
|
|
$userManager = $container->get('fos_user.user_manager');
|
2015-09-29 12:31:52 +00:00
|
|
|
$firewallName = $container->getParameter('fos_user.firewall_name');
|
|
|
|
|
2016-04-12 09:36:01 +00:00
|
|
|
$this->user = $userManager->findUserBy(['username' => 'admin']);
|
2015-09-29 12:31:52 +00:00
|
|
|
|
2024-01-01 18:51:22 +00:00
|
|
|
$client->loginUser($this->user, $firewallName);
|
2015-09-29 12:31:52 +00:00
|
|
|
|
|
|
|
return $client;
|
|
|
|
}
|
2018-11-26 21:22:49 +00: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 21:46:44 +00:00
|
|
|
* @param string $username
|
2018-11-26 21:22:49 +00:00
|
|
|
*
|
|
|
|
* @return int
|
|
|
|
*/
|
2018-11-26 21:46:44 +00:00
|
|
|
protected function getUserId($username = 'admin')
|
2018-11-26 21:22:49 +00:00
|
|
|
{
|
|
|
|
return $this->client
|
|
|
|
->getContainer()
|
2022-08-28 00:01:46 +00:00
|
|
|
->get(EntityManagerInterface::class)
|
2022-08-25 19:37:10 +00:00
|
|
|
->getRepository(User::class)
|
2018-11-26 21:22:49 +00:00
|
|
|
->findOneByUserName($username)
|
|
|
|
->getId();
|
|
|
|
}
|
2015-09-29 12:31:52 +00:00
|
|
|
}
|