2015-09-29 12:31:52 +00:00
|
|
|
<?php
|
|
|
|
|
2016-06-01 19:27:35 +00:00
|
|
|
namespace Tests\Wallabag\ApiBundle;
|
2015-09-29 12:31:52 +00:00
|
|
|
|
2022-08-28 00:01:46 +00:00
|
|
|
use Doctrine\ORM\EntityManagerInterface;
|
2015-09-29 12:31:52 +00:00
|
|
|
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
|
|
|
|
use Symfony\Component\BrowserKit\Cookie;
|
2022-08-28 00:01:46 +00:00
|
|
|
use Symfony\Component\HttpFoundation\Session\SessionInterface;
|
|
|
|
use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface;
|
2022-08-25 19:37:10 +00:00
|
|
|
use Wallabag\UserBundle\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
|
|
|
{
|
|
|
|
/**
|
2017-05-15 18:47:59 +00:00
|
|
|
* @var \Symfony\Bundle\FrameworkBundle\Client
|
2015-09-29 12:31:52 +00:00
|
|
|
*/
|
|
|
|
protected $client = null;
|
|
|
|
|
2015-12-29 14:08:33 +00:00
|
|
|
/**
|
|
|
|
* @var \FOS\UserBundle\Model\UserInterface
|
|
|
|
*/
|
|
|
|
protected $user;
|
|
|
|
|
2020-12-08 08:17:10 +00:00
|
|
|
protected function setUp(): void
|
2015-09-29 12:31:52 +00:00
|
|
|
{
|
|
|
|
$this->client = $this->createAuthorizedClient();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-05-15 18:47:59 +00:00
|
|
|
* @return \Symfony\Bundle\FrameworkBundle\Client
|
2015-09-29 12:31:52 +00:00
|
|
|
*/
|
|
|
|
protected function createAuthorizedClient()
|
|
|
|
{
|
|
|
|
$client = static::createClient();
|
|
|
|
$container = $client->getContainer();
|
|
|
|
|
|
|
|
/** @var $userManager \FOS\UserBundle\Doctrine\UserManager */
|
2018-10-04 12:07:20 +00:00
|
|
|
$userManager = $container->get('fos_user.user_manager.test');
|
2015-09-29 12:31:52 +00:00
|
|
|
/** @var $loginManager \FOS\UserBundle\Security\LoginManager */
|
2018-10-04 12:07:20 +00:00
|
|
|
$loginManager = $container->get('fos_user.security.login_manager.test');
|
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']);
|
2017-05-30 05:56:01 +00:00
|
|
|
$loginManager->logInUser($firewallName, $this->user);
|
2015-09-29 12:31:52 +00:00
|
|
|
|
|
|
|
// save the login token into the session and put it in a cookie
|
2022-08-28 00:01:46 +00:00
|
|
|
$container->get(SessionInterface::class)->set('_security_' . $firewallName, serialize($container->get(TokenStorageInterface::class)->getToken()));
|
|
|
|
$container->get(SessionInterface::class)->save();
|
2015-11-06 23:17:37 +00:00
|
|
|
|
2022-08-28 00:01:46 +00:00
|
|
|
$session = $container->get(SessionInterface::class);
|
2015-09-29 12:31:52 +00:00
|
|
|
$client->getCookieJar()->set(new Cookie($session->getName(), $session->getId()));
|
|
|
|
|
|
|
|
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
|
|
|
}
|