mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-06 00:49:47 +00:00
7332d1f4e5
Updating deps - Removing electrolinux/php-html5lib (0.1.0) - Updating doctrine/inflector (1.3.1 => 1.4.3) - Updating doctrine/lexer (1.0.2 => 1.2.1) - Installing symfony/polyfill-php80 (v1.17.0) - Updating symfony/service-contracts (v1.1.8 => v2.1.2) - Installing symfony/deprecation-contracts (v2.1.2) - Updating symfony/mime (v4.4.8 => v5.1.1) - Updating friendsofsymfony/rest-bundle (2.7.4 => 2.8.0) - Updating doctrine/instantiator (1.3.0 => 1.3.1) - Updating ocramius/proxy-manager (2.1.1 => 2.2.3) - Updating php-http/discovery (1.7.4 => 1.8.0) - Updating symfony/http-client-contracts (v1.1.8 => v2.1.2) - Updating symfony/http-client (v4.4.8 => v5.1.1) - Updating php-http/httplug-bundle (1.16.0 => 1.18.0) - Updating symfony/phpunit-bridge (v4.3.11 => v5.1.1) - Updating doctrine/data-fixtures (1.3.3 => 1.4.3) - Updating composer/xdebug-handler (1.4.1 => 1.4.2) - Updating masterminds/html5 (2.7.0 => 2.7.1) - Updating j0k3r/php-readability (1.2.4 => 1.2.5) - Updating phpoption/phpoption (1.7.3 => 1.7.4) - Updating nikic/php-parser (v4.4.0 => v4.5.0) - Installing thecodingmachine/safe (v1.1.1) - Updating spomky-labs/otphp (v9.1.4 => v10.0.1) - Updating pagerfanta/pagerfanta (v2.1.3 => v2.3.0) Package white-october/pagerfanta-bundle is abandoned, you should avoid using it. Use babdev/pagerfanta-bundle instead. - Removing white-october/pagerfanta-bundle (v1.3.2) - Installing babdev/pagerfanta-bundle (v2.4.2) Upgrading PHPStan to 0.12 and use extension installer - Removing phpstan/phpdoc-parser (0.3.5) - Removing nette/utils (v3.1.2) - Removing nette/schema (v1.0.2) - Removing nette/robot-loader (v3.2.3) - Removing nette/php-generator (v3.4.0) - Removing nette/neon (v3.1.2) - Removing nette/finder (v2.5.2) - Removing nette/di (v3.0.4) - Removing nette/bootstrap (v3.0.2) - Updating phpstan/phpstan (0.11.19 => 0.12.29) - Updating phpstan/phpstan-doctrine (0.11.6 => 0.12.16) - Updating phpstan/phpstan-phpunit (0.11.2 => 0.12.11) - Updating phpstan/phpstan-symfony (0.11.6 => 0.12.6) - Installing phpstan/extension-installer (1.0.4) Upgrading jms/serializer-bundle to version 3 (and willdurand/hateoas-bundle to version 2) - Removing phpoption/phpoption (1.7.4) - Removing phpcollection/phpcollection (0.5.0) - Removing jms/parser-lib (1.0.0) - Updating jms/metadata (1.7.0 => 2.3.0) - Updating jms/serializer (1.14.1 => 3.7.0) - Updating jms/serializer-bundle (2.4.4 => 3.6.0) - Updating willdurand/hateoas (2.12.0 => 3.6.0) - Updating willdurand/hateoas-bundle (1.4.0 => 2.1.0) Upgrading dama/doctrine-test-bundle to version 6 - Updating dama/doctrine-test-bundle (v5.0.3 => v6.2.0)
167 lines
4.8 KiB
PHP
167 lines
4.8 KiB
PHP
<?php
|
|
|
|
namespace Tests\Wallabag\CoreBundle;
|
|
|
|
use Symfony\Bundle\FrameworkBundle\Client;
|
|
use Symfony\Bundle\FrameworkBundle\Console\Application;
|
|
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
|
|
use Symfony\Component\BrowserKit\Cookie;
|
|
use Symfony\Component\Console\Input\ArrayInput;
|
|
use Symfony\Component\Console\Output\NullOutput;
|
|
use Wallabag\CoreBundle\Entity\Config;
|
|
use Wallabag\UserBundle\Entity\User;
|
|
|
|
abstract class WallabagCoreTestCase extends WebTestCase
|
|
{
|
|
/**
|
|
* @var Client|null
|
|
*/
|
|
private $client = null;
|
|
|
|
public function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
|
|
$this->client = static::createClient();
|
|
}
|
|
|
|
public function getNewClient()
|
|
{
|
|
return $this->client = static::createClient();
|
|
}
|
|
|
|
public function getClient()
|
|
{
|
|
return $this->client;
|
|
}
|
|
|
|
public function resetDatabase(Client $client)
|
|
{
|
|
$application = new Application($client->getKernel());
|
|
$application->setAutoExit(false);
|
|
|
|
$application->run(new ArrayInput([
|
|
'command' => 'doctrine:schema:drop',
|
|
'--no-interaction' => true,
|
|
'--force' => true,
|
|
'--env' => 'test',
|
|
]), new NullOutput());
|
|
|
|
$application->run(new ArrayInput([
|
|
'command' => 'doctrine:schema:create',
|
|
'--no-interaction' => true,
|
|
'--env' => 'test',
|
|
]), new NullOutput());
|
|
|
|
$application->run(new ArrayInput([
|
|
'command' => 'doctrine:fixtures:load',
|
|
'--no-interaction' => true,
|
|
'--env' => 'test',
|
|
]), new NullOutput());
|
|
|
|
/*
|
|
* Recreate client to avoid error:
|
|
*
|
|
* [Doctrine\DBAL\ConnectionException]
|
|
* Transaction commit failed because the transaction has been marked for rollback only.
|
|
*/
|
|
$this->client = static::createClient();
|
|
}
|
|
|
|
public function getEntityManager()
|
|
{
|
|
return $this->client->getContainer()->get('doctrine.orm.entity_manager');
|
|
}
|
|
|
|
/**
|
|
* 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 = $this->client->getContainer();
|
|
$session = $container->get('session');
|
|
|
|
$userManager = $container->get('fos_user.user_manager.test');
|
|
$loginManager = $container->get('fos_user.security.login_manager.test');
|
|
$firewallName = $container->getParameter('fos_user.firewall_name');
|
|
|
|
$user = $userManager->findUserBy(['username' => $username]);
|
|
$loginManager->logInUser($firewallName, $user);
|
|
|
|
$session->set('_security_' . $firewallName, serialize($container->get('security.token_storage')->getToken()));
|
|
$session->save();
|
|
|
|
$cookie = new Cookie($session->getName(), $session->getId());
|
|
$this->client->getCookieJar()->set($cookie);
|
|
}
|
|
|
|
/**
|
|
* 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('security.token_storage')->getToken();
|
|
|
|
if (null !== $token) {
|
|
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();
|
|
}
|
|
|
|
public function useTheme($theme)
|
|
{
|
|
$config = $this->getEntityManager()->getRepository(Config::class)->findOneByUser($this->getLoggedInUser());
|
|
$config->setTheme($theme);
|
|
$this->getEntityManager()->persist($config);
|
|
$this->getEntityManager()->flush();
|
|
}
|
|
|
|
/**
|
|
* Check if Redis is installed.
|
|
* If not, mark test as skip.
|
|
*/
|
|
protected function checkRedis()
|
|
{
|
|
try {
|
|
$this->client->getContainer()->get('wallabag_core.redis.client')->connect();
|
|
} catch (\Exception $e) {
|
|
$this->markTestSkipped('Redis is not installed/activated');
|
|
}
|
|
}
|
|
}
|