mirror of
https://github.com/wallabag/wallabag.git
synced 2026-03-14 02:37:37 +01:00
Move browser test base into the functional namespace
This commit is contained in:
@ -2,125 +2,6 @@
|
||||
|
||||
namespace Wallabag\Tests;
|
||||
|
||||
use Doctrine\ORM\EntityManagerInterface;
|
||||
use Predis\Client;
|
||||
use Symfony\Bundle\FrameworkBundle\KernelBrowser;
|
||||
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
|
||||
use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface;
|
||||
use Wallabag\Entity\User;
|
||||
|
||||
abstract class WallabagTestCase extends WebTestCase
|
||||
abstract class WallabagTestCase extends Functional\WallabagTestCase
|
||||
{
|
||||
/**
|
||||
* @var KernelBrowser|null
|
||||
*/
|
||||
private $client;
|
||||
|
||||
protected function setUp(): void
|
||||
{
|
||||
static::ensureKernelShutdown();
|
||||
|
||||
parent::setUp();
|
||||
|
||||
$this->client = static::createClient();
|
||||
}
|
||||
|
||||
public function getNewClient()
|
||||
{
|
||||
static::ensureKernelShutdown();
|
||||
|
||||
return $this->client = static::createClient();
|
||||
}
|
||||
|
||||
public function getTestClient()
|
||||
{
|
||||
return $this->client;
|
||||
}
|
||||
|
||||
public function getEntityManager()
|
||||
{
|
||||
return $this->client->getContainer()->get(EntityManagerInterface::class);
|
||||
}
|
||||
|
||||
/**
|
||||
* Login a user without making a HTTP request.
|
||||
* If we make a HTTP request we lose ability to mock service in the container.
|
||||
*
|
||||
* @param string $username User to log in
|
||||
*/
|
||||
public function logInAs($username)
|
||||
{
|
||||
$container = static::getContainer();
|
||||
|
||||
$userManager = $container->get('fos_user.user_manager');
|
||||
|
||||
$user = $userManager->findUserBy(['username' => $username]);
|
||||
|
||||
if (null === $user) {
|
||||
throw new \Exception('Unable to find user "' . $username . '". Does fixtures were loaded?');
|
||||
}
|
||||
|
||||
$this->client->loginUser($user);
|
||||
}
|
||||
|
||||
/**
|
||||
* Instead of `logInAs` this method use a HTTP request to log in the user.
|
||||
* Could be better for some tests.
|
||||
*
|
||||
* @param string $username User to log in
|
||||
*/
|
||||
public function logInAsUsingHttp($username)
|
||||
{
|
||||
$crawler = $this->client->request('GET', '/login');
|
||||
$form = $crawler->filter('button[type=submit]')->form();
|
||||
$data = [
|
||||
'_username' => $username,
|
||||
'_password' => 'mypassword',
|
||||
];
|
||||
|
||||
$this->client->submit($form, $data);
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the user of the logged in user.
|
||||
* You should be sure that you called `logInAs` before.
|
||||
*
|
||||
* @return User
|
||||
*/
|
||||
public function getLoggedInUser()
|
||||
{
|
||||
$token = static::$kernel->getContainer()->get(TokenStorageInterface::class)->getToken();
|
||||
|
||||
if (null !== $token) {
|
||||
\assert($token->getUser() instanceof User);
|
||||
|
||||
return $token->getUser();
|
||||
}
|
||||
|
||||
throw new \RuntimeException('No logged in User.');
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the user id of the logged in user.
|
||||
* You should be sure that you called `logInAs` before.
|
||||
*
|
||||
* @return int
|
||||
*/
|
||||
public function getLoggedInUserId()
|
||||
{
|
||||
return $this->getLoggedInUser()->getId();
|
||||
}
|
||||
|
||||
/**
|
||||
* Check if Redis is installed.
|
||||
* If not, mark test as skip.
|
||||
*/
|
||||
protected function checkRedis()
|
||||
{
|
||||
try {
|
||||
$this->client->getContainer()->get(Client::class)->connect();
|
||||
} catch (\Exception) {
|
||||
$this->markTestSkipped('Redis is not installed/activated');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
126
tests/functional/WallabagTestCase.php
Normal file
126
tests/functional/WallabagTestCase.php
Normal file
@ -0,0 +1,126 @@
|
||||
<?php
|
||||
|
||||
namespace Wallabag\Tests\Functional;
|
||||
|
||||
use Doctrine\ORM\EntityManagerInterface;
|
||||
use Predis\Client;
|
||||
use Symfony\Bundle\FrameworkBundle\KernelBrowser;
|
||||
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
|
||||
use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface;
|
||||
use Wallabag\Entity\User;
|
||||
|
||||
abstract class WallabagTestCase extends WebTestCase
|
||||
{
|
||||
/**
|
||||
* @var KernelBrowser|null
|
||||
*/
|
||||
private $client;
|
||||
|
||||
protected function setUp(): void
|
||||
{
|
||||
static::ensureKernelShutdown();
|
||||
|
||||
parent::setUp();
|
||||
|
||||
$this->client = static::createClient();
|
||||
}
|
||||
|
||||
public function getNewClient()
|
||||
{
|
||||
static::ensureKernelShutdown();
|
||||
|
||||
return $this->client = static::createClient();
|
||||
}
|
||||
|
||||
public function getTestClient()
|
||||
{
|
||||
return $this->client;
|
||||
}
|
||||
|
||||
public function getEntityManager()
|
||||
{
|
||||
return $this->client->getContainer()->get(EntityManagerInterface::class);
|
||||
}
|
||||
|
||||
/**
|
||||
* Login a user without making a HTTP request.
|
||||
* If we make a HTTP request we lose ability to mock service in the container.
|
||||
*
|
||||
* @param string $username User to log in
|
||||
*/
|
||||
public function logInAs($username)
|
||||
{
|
||||
$container = static::getContainer();
|
||||
|
||||
$userManager = $container->get('fos_user.user_manager');
|
||||
|
||||
$user = $userManager->findUserBy(['username' => $username]);
|
||||
|
||||
if (null === $user) {
|
||||
throw new \Exception('Unable to find user "' . $username . '". Does fixtures were loaded?');
|
||||
}
|
||||
|
||||
$this->client->loginUser($user);
|
||||
}
|
||||
|
||||
/**
|
||||
* Instead of `logInAs` this method use a HTTP request to log in the user.
|
||||
* Could be better for some tests.
|
||||
*
|
||||
* @param string $username User to log in
|
||||
*/
|
||||
public function logInAsUsingHttp($username)
|
||||
{
|
||||
$crawler = $this->client->request('GET', '/login');
|
||||
$form = $crawler->filter('button[type=submit]')->form();
|
||||
$data = [
|
||||
'_username' => $username,
|
||||
'_password' => 'mypassword',
|
||||
];
|
||||
|
||||
$this->client->submit($form, $data);
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the user of the logged in user.
|
||||
* You should be sure that you called `logInAs` before.
|
||||
*
|
||||
* @return User
|
||||
*/
|
||||
public function getLoggedInUser()
|
||||
{
|
||||
$token = static::$kernel->getContainer()->get(TokenStorageInterface::class)->getToken();
|
||||
|
||||
if (null !== $token) {
|
||||
\assert($token->getUser() instanceof User);
|
||||
|
||||
return $token->getUser();
|
||||
}
|
||||
|
||||
throw new \RuntimeException('No logged in User.');
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the user id of the logged in user.
|
||||
* You should be sure that you called `logInAs` before.
|
||||
*
|
||||
* @return int
|
||||
*/
|
||||
public function getLoggedInUserId()
|
||||
{
|
||||
return $this->getLoggedInUser()->getId();
|
||||
}
|
||||
|
||||
/**
|
||||
* Check if Redis is installed.
|
||||
* If not, mark test as skip.
|
||||
*/
|
||||
protected function checkRedis()
|
||||
{
|
||||
try {
|
||||
$this->client->getContainer()->get(Client::class)->connect();
|
||||
} catch (\Exception) {
|
||||
$this->markTestSkipped('Redis is not installed/activated');
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user