wallabag/tests/Wallabag/AnnotationBundle/WallabagAnnotationTestCase.php

71 lines
2.2 KiB
PHP
Raw Normal View History

<?php
2016-06-01 19:27:35 +00:00
namespace Tests\Wallabag\AnnotationBundle;
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;
use FOS\UserBundle\Security\LoginManager;
2022-08-28 14:59:43 +00:00
use Symfony\Bundle\FrameworkBundle\Client;
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;
abstract class WallabagAnnotationTestCase extends WebTestCase
{
/**
2022-08-28 14:59:43 +00:00
* @var Client
*/
protected $client = null;
/**
2022-08-28 14:59:43 +00:00
* @var UserInterface
*/
protected $user;
2020-12-08 08:17:10 +00:00
protected function setUp(): void
{
2022-08-01 06:38:50 +00:00
parent::setUp();
$this->client = $this->createAuthorizedClient();
}
public function logInAs($username)
{
$crawler = $this->client->request('GET', '/login');
$form = $crawler->filter('button[type=submit]')->form();
$data = [
'_username' => $username,
'_password' => 'mypassword',
];
$this->client->submit($form, $data);
}
/**
2022-08-28 14:59:43 +00:00
* @return Client
*/
protected function createAuthorizedClient()
{
$client = static::createClient();
$container = $client->getContainer();
2022-11-23 14:51:33 +00:00
/** @var UserManager $userManager */
$userManager = $container->get('fos_user.user_manager.test');
2022-11-23 14:51:33 +00:00
/** @var LoginManager $loginManager */
$loginManager = $container->get('fos_user.security.login_manager.test');
$firewallName = $container->getParameter('fos_user.firewall_name');
$this->user = $userManager->findUserBy(['username' => 'admin']);
2016-10-09 12:01:28 +00:00
$loginManager->logInUser($firewallName, $this->user);
// 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();
2022-08-28 00:01:46 +00:00
$session = $container->get(SessionInterface::class);
$client->getCookieJar()->set(new Cookie($session->getName(), $session->getId()));
return $client;
}
}