wallabag/tests/Wallabag/CoreBundle/Command/InstallCommandTest.php

253 lines
11 KiB
PHP
Raw Normal View History

<?php
2016-06-01 19:27:35 +00:00
namespace Tests\Wallabag\CoreBundle\Command;
use DAMA\DoctrineTestBundle\Doctrine\DBAL\StaticDriver;
2022-08-28 14:59:43 +00:00
use Doctrine\DBAL\Connection;
use Doctrine\DBAL\Platforms\PostgreSqlPlatform;
use Doctrine\DBAL\Platforms\SqlitePlatform;
2022-08-28 00:01:46 +00:00
use Doctrine\Persistence\ManagerRegistry;
use Symfony\Bundle\FrameworkBundle\Console\Application;
use Symfony\Component\Console\Input\ArrayInput;
use Symfony\Component\Console\Output\NullOutput;
use Symfony\Component\Console\Tester\CommandTester;
2016-06-01 19:27:35 +00:00
use Tests\Wallabag\CoreBundle\WallabagCoreTestCase;
2017-07-01 07:52:38 +00:00
use Wallabag\CoreBundle\Command\InstallCommand;
2015-03-29 08:53:10 +00:00
class InstallCommandTest extends WallabagCoreTestCase
{
Remove support for PHP < 7.2 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)
2020-06-15 06:25:59 +00:00
public static function setUpBeforeClass(): void
{
// disable doctrine-test-bundle
StaticDriver::setKeepStaticConnections(false);
}
Remove support for PHP < 7.2 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)
2020-06-15 06:25:59 +00:00
public static function tearDownAfterClass(): void
{
// enable doctrine-test-bundle
StaticDriver::setKeepStaticConnections(true);
}
2020-12-08 08:17:10 +00:00
protected function setUp(): void
{
parent::setUp();
2022-08-28 14:59:43 +00:00
/** @var Connection $connection */
$connection = $this->getTestClient()->getContainer()->get(ManagerRegistry::class)->getConnection();
if ($connection->getDatabasePlatform() instanceof PostgreSqlPlatform) {
/*
* LOG: statement: CREATE DATABASE "wallabag"
* ERROR: source database "template1" is being accessed by other users
* DETAIL: There is 1 other session using the database.
* STATEMENT: CREATE DATABASE "wallabag"
* FATAL: database "wallabag" does not exist
*
* http://stackoverflow.com/a/14374832/569101
*/
$this->markTestSkipped('PostgreSQL spotted: can\'t find a good way to drop current database, skipping.');
}
if ($connection->getDatabasePlatform() instanceof SqlitePlatform) {
// Environnement variable useful only for sqlite to avoid the error "attempt to write a readonly database"
// We can't define always this environnement variable because pdo_mysql seems to use it
// and we have the error:
// SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax;
// check the manual that corresponds to your MariaDB server version for the right syntax to use
// near '/tmp/wallabag_testTYj1kp' at line 1
$databasePath = tempnam(sys_get_temp_dir(), 'wallabag_test');
putenv("TEST_DATABASE_PATH=$databasePath");
// The environnement has been changed, recreate the client in order to update connection
parent::setUp();
}
$this->resetDatabase($this->getTestClient());
}
2020-12-08 08:17:10 +00:00
protected function tearDown(): void
{
$databasePath = getenv('TEST_DATABASE_PATH');
// Remove variable environnement
putenv('TEST_DATABASE_PATH');
if ($databasePath && file_exists($databasePath)) {
unlink($databasePath);
} else {
// Create a new client to avoid the error:
// Transaction commit failed because the transaction has been marked for rollback only.
$client = static::createClient();
$this->resetDatabase($client);
}
parent::tearDown();
}
public function testRunInstallCommand()
{
$application = new Application($this->getTestClient()->getKernel());
2022-09-03 00:17:36 +00:00
/** @var InstallCommand $command */
$command = $application->find('wallabag:install');
2022-09-03 00:17:36 +00:00
$command->disableRunOtherCommands();
$tester = new CommandTester($command);
$tester->setInputs([
'y', // dropping database
'y', // create super admin
2017-07-01 07:52:38 +00:00
'username_' . uniqid('', true), // username
'password_' . uniqid('', true), // password
'email_' . uniqid('', true) . '@wallabag.it', // email
]);
2022-09-03 00:28:07 +00:00
$tester->execute([]);
2020-06-15 11:37:50 +00:00
$this->assertStringContainsString('Checking system requirements.', $tester->getDisplay());
$this->assertStringContainsString('Setting up database.', $tester->getDisplay());
$this->assertStringContainsString('Administration setup.', $tester->getDisplay());
$this->assertStringContainsString('Config setup.', $tester->getDisplay());
}
2015-02-22 22:29:48 +00:00
public function testRunInstallCommandWithReset()
{
$application = new Application($this->getTestClient()->getKernel());
2015-02-22 22:29:48 +00:00
2022-09-03 00:17:36 +00:00
/** @var InstallCommand $command */
2015-02-22 22:29:48 +00:00
$command = $application->find('wallabag:install');
2022-09-03 00:17:36 +00:00
$command->disableRunOtherCommands();
2015-02-22 22:29:48 +00:00
$tester = new CommandTester($command);
$tester->setInputs([
'y', // create super admin
2017-07-01 07:52:38 +00:00
'username_' . uniqid('', true), // username
'password_' . uniqid('', true), // password
'email_' . uniqid('', true) . '@wallabag.it', // email
]);
$tester->execute([
2015-02-22 22:29:48 +00:00
'--reset' => true,
]);
2015-02-22 22:29:48 +00:00
2020-06-15 11:37:50 +00:00
$this->assertStringContainsString('Checking system requirements.', $tester->getDisplay());
$this->assertStringContainsString('Setting up database.', $tester->getDisplay());
$this->assertStringContainsString('Dropping database, creating database and schema, clearing the cache', $tester->getDisplay());
$this->assertStringContainsString('Administration setup.', $tester->getDisplay());
$this->assertStringContainsString('Config setup.', $tester->getDisplay());
2015-02-22 22:29:48 +00:00
// we force to reset everything
2020-06-15 11:37:50 +00:00
$this->assertStringContainsString('Dropping database, creating database and schema, clearing the cache', $tester->getDisplay());
2015-02-22 22:29:48 +00:00
}
public function testRunInstallCommandWithDatabaseRemoved()
{
// skipped SQLite check when database is removed because while testing for the connection,
// the driver will create the file (so the database) before testing if database exist
if ($this->getTestClient()->getContainer()->get(ManagerRegistry::class)->getConnection()->getDatabasePlatform() instanceof SqlitePlatform) {
$this->markTestSkipped('SQLite spotted: can\'t test with database removed.');
}
$application = new Application($this->getTestClient()->getKernel());
2015-02-22 22:29:48 +00:00
// drop database first, so the install command won't ask to reset things
$command = $application->find('doctrine:database:drop');
$command->run(new ArrayInput([
2015-02-22 22:29:48 +00:00
'--force' => true,
]), new NullOutput());
2015-02-22 22:29:48 +00:00
// start a new application to avoid lagging connexion to pgsql
$client = static::createClient();
$application = new Application($client->getKernel());
2015-02-22 22:29:48 +00:00
$command = $application->find('wallabag:install');
$tester = new CommandTester($command);
$tester->setInputs([
'y', // create super admin
2017-07-01 07:52:38 +00:00
'username_' . uniqid('', true), // username
'password_' . uniqid('', true), // password
'email_' . uniqid('', true) . '@wallabag.it', // email
]);
2022-09-03 00:28:07 +00:00
$tester->execute([]);
2015-02-22 22:29:48 +00:00
2020-06-15 11:37:50 +00:00
$this->assertStringContainsString('Checking system requirements.', $tester->getDisplay());
$this->assertStringContainsString('Setting up database.', $tester->getDisplay());
$this->assertStringContainsString('Administration setup.', $tester->getDisplay());
$this->assertStringContainsString('Config setup.', $tester->getDisplay());
2015-02-22 22:29:48 +00:00
// the current database doesn't already exist
2020-06-15 11:37:50 +00:00
$this->assertStringContainsString('Creating database and schema, clearing the cache', $tester->getDisplay());
2015-02-22 22:29:48 +00:00
}
public function testRunInstallCommandChooseResetSchema()
{
$application = new Application($this->getTestClient()->getKernel());
2015-02-22 22:29:48 +00:00
2022-09-03 00:17:36 +00:00
/** @var InstallCommand $command */
2015-02-22 22:29:48 +00:00
$command = $application->find('wallabag:install');
2022-09-03 00:17:36 +00:00
$command->disableRunOtherCommands();
2015-02-22 22:29:48 +00:00
$tester = new CommandTester($command);
$tester->setInputs([
'n', // don't want to reset the entire database
'y', // do want to reset the schema
'n', // don't want to create a new user
]);
2022-09-03 00:28:07 +00:00
$tester->execute([]);
2015-02-22 22:29:48 +00:00
2020-06-15 11:37:50 +00:00
$this->assertStringContainsString('Checking system requirements.', $tester->getDisplay());
$this->assertStringContainsString('Setting up database.', $tester->getDisplay());
$this->assertStringContainsString('Administration setup.', $tester->getDisplay());
$this->assertStringContainsString('Config setup.', $tester->getDisplay());
2015-02-22 22:29:48 +00:00
2020-06-15 11:37:50 +00:00
$this->assertStringContainsString('Dropping schema and creating schema', $tester->getDisplay());
2015-02-22 22:29:48 +00:00
}
public function testRunInstallCommandChooseNothing()
{
$application = new Application($this->getTestClient()->getKernel());
2015-02-22 22:29:48 +00:00
// drop database first, so the install command won't ask to reset things
$command = $application->find('doctrine:database:drop');
$command->run(new ArrayInput([
2015-02-22 22:29:48 +00:00
'--force' => true,
]), new NullOutput());
2015-02-22 22:29:48 +00:00
$this->getTestClient()->getContainer()->get(ManagerRegistry::class)->getConnection()->close();
2015-02-22 22:29:48 +00:00
$command = $application->find('doctrine:database:create');
2022-09-03 00:28:07 +00:00
$command->run(new ArrayInput([]), new NullOutput());
2015-02-22 22:29:48 +00:00
$command = $application->find('wallabag:install');
$tester = new CommandTester($command);
$tester->setInputs([
'n', // don't want to reset the entire database
'n', // don't want to create a new user
]);
2022-09-03 00:28:07 +00:00
$tester->execute([]);
2015-02-22 22:29:48 +00:00
2020-06-15 11:37:50 +00:00
$this->assertStringContainsString('Checking system requirements.', $tester->getDisplay());
$this->assertStringContainsString('Setting up database.', $tester->getDisplay());
$this->assertStringContainsString('Administration setup.', $tester->getDisplay());
$this->assertStringContainsString('Config setup.', $tester->getDisplay());
2015-02-22 22:29:48 +00:00
2020-06-15 11:37:50 +00:00
$this->assertStringContainsString('Creating schema', $tester->getDisplay());
2015-02-22 22:29:48 +00:00
}
public function testRunInstallCommandNoInteraction()
{
$application = new Application($this->getTestClient()->getKernel());
2015-02-22 22:29:48 +00:00
2022-09-03 00:17:36 +00:00
/** @var InstallCommand $command */
2015-02-22 22:29:48 +00:00
$command = $application->find('wallabag:install');
2022-09-03 00:17:36 +00:00
$command->disableRunOtherCommands();
2015-02-22 22:29:48 +00:00
$tester = new CommandTester($command);
2022-09-03 00:28:07 +00:00
$tester->execute([], [
'interactive' => false,
]);
2015-02-22 22:29:48 +00:00
2020-06-15 11:37:50 +00:00
$this->assertStringContainsString('Checking system requirements.', $tester->getDisplay());
$this->assertStringContainsString('Setting up database.', $tester->getDisplay());
$this->assertStringContainsString('Administration setup.', $tester->getDisplay());
$this->assertStringContainsString('Config setup.', $tester->getDisplay());
2015-02-22 22:29:48 +00:00
}
}