2015-02-22 13:35:36 +00:00
|
|
|
<?php
|
|
|
|
|
2016-06-01 19:27:35 +00:00
|
|
|
namespace Tests\Wallabag\CoreBundle\Command;
|
2015-02-22 13:35:36 +00:00
|
|
|
|
2015-12-22 09:16:34 +00:00
|
|
|
use Doctrine\Bundle\DoctrineBundle\Command\CreateDatabaseDoctrineCommand;
|
|
|
|
use Doctrine\Bundle\DoctrineBundle\Command\DropDatabaseDoctrineCommand;
|
2015-02-22 13:35:36 +00:00
|
|
|
use Symfony\Bundle\FrameworkBundle\Console\Application;
|
|
|
|
use Symfony\Component\Console\Input\ArrayInput;
|
|
|
|
use Symfony\Component\Console\Output\NullOutput;
|
2015-12-22 09:16:34 +00:00
|
|
|
use Symfony\Component\Console\Tester\CommandTester;
|
|
|
|
use Wallabag\CoreBundle\Command\InstallCommand;
|
2016-06-01 19:27:35 +00:00
|
|
|
use Tests\Wallabag\CoreBundle\Mock\InstallCommandMock;
|
|
|
|
use Tests\Wallabag\CoreBundle\WallabagCoreTestCase;
|
2015-02-22 13:35:36 +00:00
|
|
|
|
2015-03-29 08:53:10 +00:00
|
|
|
class InstallCommandTest extends WallabagCoreTestCase
|
2015-02-22 13:35:36 +00:00
|
|
|
{
|
2016-02-29 15:22:30 +00:00
|
|
|
public function setUp()
|
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
if ($this->getClient()->getContainer()->get('doctrine')->getConnection()->getDriver() instanceof \Doctrine\DBAL\Driver\PDOPgSql\Driver) {
|
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
*/
|
2016-08-17 09:40:35 +00:00
|
|
|
$this->markTestSkipped('PostgreSQL spotted: can\'t find a good way to drop current database, skipping.');
|
2016-02-29 15:22:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-17 09:40:35 +00:00
|
|
|
/**
|
2016-08-24 08:28:43 +00:00
|
|
|
* Ensure next tests will have a clean database.
|
2016-08-17 09:40:35 +00:00
|
|
|
*/
|
2015-02-22 22:29:48 +00:00
|
|
|
public static function tearDownAfterClass()
|
2015-02-22 13:35:36 +00:00
|
|
|
{
|
|
|
|
$application = new Application(static::$kernel);
|
|
|
|
$application->setAutoExit(false);
|
|
|
|
|
2016-08-17 09:40:35 +00:00
|
|
|
$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([
|
2015-02-22 13:35:36 +00:00
|
|
|
'command' => 'doctrine:fixtures:load',
|
|
|
|
'--no-interaction' => true,
|
|
|
|
'--env' => 'test',
|
2016-04-12 09:36:01 +00:00
|
|
|
]), new NullOutput());
|
2015-02-22 13:35:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testRunInstallCommand()
|
|
|
|
{
|
2015-11-06 21:08:51 +00:00
|
|
|
$application = new Application($this->getClient()->getKernel());
|
2015-03-28 20:45:35 +00:00
|
|
|
$application->add(new InstallCommandMock());
|
2015-02-22 13:35:36 +00:00
|
|
|
|
|
|
|
$command = $application->find('wallabag:install');
|
|
|
|
|
|
|
|
$tester = new CommandTester($command);
|
2017-05-30 10:47:25 +00:00
|
|
|
$tester->setInputs([
|
|
|
|
'y', // dropping database
|
|
|
|
'y', // create super admin
|
|
|
|
'username_'.uniqid('', true), // username
|
|
|
|
'password_'.uniqid('', true), // password
|
|
|
|
'email_'.uniqid('', true).'@wallabag.it', // email
|
|
|
|
]);
|
2016-04-12 09:36:01 +00:00
|
|
|
$tester->execute([
|
2015-02-22 16:18:54 +00:00
|
|
|
'command' => $command->getName(),
|
2016-04-12 09:36:01 +00:00
|
|
|
]);
|
2015-02-22 13:35:36 +00:00
|
|
|
|
2016-04-11 17:37:29 +00:00
|
|
|
$this->assertContains('Checking system requirements.', $tester->getDisplay());
|
|
|
|
$this->assertContains('Setting up database.', $tester->getDisplay());
|
|
|
|
$this->assertContains('Administration setup.', $tester->getDisplay());
|
|
|
|
$this->assertContains('Config setup.', $tester->getDisplay());
|
2017-05-05 13:14:58 +00:00
|
|
|
$this->assertContains('Run migrations.', $tester->getDisplay());
|
2015-02-22 13:35:36 +00:00
|
|
|
}
|
2015-02-22 22:29:48 +00:00
|
|
|
|
|
|
|
public function testRunInstallCommandWithReset()
|
|
|
|
{
|
2015-11-06 21:08:51 +00:00
|
|
|
$application = new Application($this->getClient()->getKernel());
|
2015-03-28 20:45:35 +00:00
|
|
|
$application->add(new InstallCommandMock());
|
2015-02-22 22:29:48 +00:00
|
|
|
|
|
|
|
$command = $application->find('wallabag:install');
|
|
|
|
|
|
|
|
$tester = new CommandTester($command);
|
2017-05-30 10:47:25 +00:00
|
|
|
$tester->setInputs([
|
|
|
|
'y', // create super admin
|
|
|
|
'username_'.uniqid('', true), // username
|
|
|
|
'password_'.uniqid('', true), // password
|
|
|
|
'email_'.uniqid('', true).'@wallabag.it', // email
|
|
|
|
]);
|
2016-04-12 09:36:01 +00:00
|
|
|
$tester->execute([
|
2015-02-22 22:29:48 +00:00
|
|
|
'command' => $command->getName(),
|
|
|
|
'--reset' => true,
|
2016-04-12 09:36:01 +00:00
|
|
|
]);
|
2015-02-22 22:29:48 +00:00
|
|
|
|
2016-04-11 17:37:29 +00:00
|
|
|
$this->assertContains('Checking system requirements.', $tester->getDisplay());
|
|
|
|
$this->assertContains('Setting up database.', $tester->getDisplay());
|
2017-05-05 13:14:58 +00:00
|
|
|
$this->assertContains('Dropping database, creating database and schema, clearing the cache', $tester->getDisplay());
|
2016-04-11 17:37:29 +00:00
|
|
|
$this->assertContains('Administration setup.', $tester->getDisplay());
|
|
|
|
$this->assertContains('Config setup.', $tester->getDisplay());
|
2017-05-05 13:14:58 +00:00
|
|
|
$this->assertContains('Run migrations.', $tester->getDisplay());
|
2015-02-22 22:29:48 +00:00
|
|
|
|
|
|
|
// we force to reset everything
|
2017-05-05 13:14:58 +00:00
|
|
|
$this->assertContains('Dropping database, creating database and schema, clearing the cache', $tester->getDisplay());
|
2015-02-22 22:29:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testRunInstallCommandWithDatabaseRemoved()
|
|
|
|
{
|
2016-09-03 08:34:27 +00:00
|
|
|
// 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->getClient()->getContainer()->get('doctrine')->getConnection()->getDriver() instanceof \Doctrine\DBAL\Driver\PDOSqlite\Driver) {
|
|
|
|
$this->markTestSkipped('SQLite spotted: can\'t test with database removed.');
|
|
|
|
}
|
|
|
|
|
2015-11-06 21:08:51 +00:00
|
|
|
$application = new Application($this->getClient()->getKernel());
|
2015-02-22 22:29:48 +00:00
|
|
|
$application->add(new DropDatabaseDoctrineCommand());
|
|
|
|
|
|
|
|
// drop database first, so the install command won't ask to reset things
|
2015-11-06 21:08:51 +00:00
|
|
|
$command = $application->find('doctrine:database:drop');
|
2016-04-12 09:36:01 +00:00
|
|
|
$command->run(new ArrayInput([
|
2015-02-22 22:29:48 +00:00
|
|
|
'command' => 'doctrine:database:drop',
|
|
|
|
'--force' => true,
|
2016-04-12 09:36:01 +00:00
|
|
|
]), new NullOutput());
|
2015-02-22 22:29:48 +00:00
|
|
|
|
2015-11-06 21:08:51 +00:00
|
|
|
// start a new application to avoid lagging connexion to pgsql
|
|
|
|
$client = static::createClient();
|
|
|
|
$application = new Application($client->getKernel());
|
|
|
|
$application->add(new InstallCommand());
|
|
|
|
|
2015-02-22 22:29:48 +00:00
|
|
|
$command = $application->find('wallabag:install');
|
|
|
|
|
|
|
|
$tester = new CommandTester($command);
|
2017-05-30 10:47:25 +00:00
|
|
|
$tester->setInputs([
|
|
|
|
'y', // create super admin
|
|
|
|
'username_'.uniqid('', true), // username
|
|
|
|
'password_'.uniqid('', true), // password
|
|
|
|
'email_'.uniqid('', true).'@wallabag.it', // email
|
|
|
|
]);
|
2016-04-12 09:36:01 +00:00
|
|
|
$tester->execute([
|
2015-02-22 22:29:48 +00:00
|
|
|
'command' => $command->getName(),
|
2016-04-12 09:36:01 +00:00
|
|
|
]);
|
2015-02-22 22:29:48 +00:00
|
|
|
|
2016-04-11 17:37:29 +00:00
|
|
|
$this->assertContains('Checking system requirements.', $tester->getDisplay());
|
|
|
|
$this->assertContains('Setting up database.', $tester->getDisplay());
|
|
|
|
$this->assertContains('Administration setup.', $tester->getDisplay());
|
|
|
|
$this->assertContains('Config setup.', $tester->getDisplay());
|
2017-05-05 13:14:58 +00:00
|
|
|
$this->assertContains('Run migrations.', $tester->getDisplay());
|
2015-02-22 22:29:48 +00:00
|
|
|
|
|
|
|
// the current database doesn't already exist
|
|
|
|
$this->assertContains('Creating database and schema, clearing the cache', $tester->getDisplay());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testRunInstallCommandChooseResetSchema()
|
|
|
|
{
|
2015-11-06 21:08:51 +00:00
|
|
|
$application = new Application($this->getClient()->getKernel());
|
2015-03-28 20:45:35 +00:00
|
|
|
$application->add(new InstallCommandMock());
|
2015-02-22 22:29:48 +00:00
|
|
|
|
|
|
|
$command = $application->find('wallabag:install');
|
|
|
|
|
|
|
|
$tester = new CommandTester($command);
|
2017-05-30 10:47:25 +00:00
|
|
|
$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
|
|
|
|
]);
|
2016-04-12 09:36:01 +00:00
|
|
|
$tester->execute([
|
2015-02-22 22:29:48 +00:00
|
|
|
'command' => $command->getName(),
|
2016-04-12 09:36:01 +00:00
|
|
|
]);
|
2015-02-22 22:29:48 +00:00
|
|
|
|
2016-04-11 17:37:29 +00:00
|
|
|
$this->assertContains('Checking system requirements.', $tester->getDisplay());
|
|
|
|
$this->assertContains('Setting up database.', $tester->getDisplay());
|
|
|
|
$this->assertContains('Administration setup.', $tester->getDisplay());
|
|
|
|
$this->assertContains('Config setup.', $tester->getDisplay());
|
2017-05-05 13:14:58 +00:00
|
|
|
$this->assertContains('Run migrations.', $tester->getDisplay());
|
2015-02-22 22:29:48 +00:00
|
|
|
|
2017-05-05 13:14:58 +00:00
|
|
|
$this->assertContains('Dropping schema and creating schema', $tester->getDisplay());
|
2015-02-22 22:29:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testRunInstallCommandChooseNothing()
|
|
|
|
{
|
2015-11-06 21:08:51 +00:00
|
|
|
$application = new Application($this->getClient()->getKernel());
|
2015-02-22 22:29:48 +00:00
|
|
|
$application->add(new InstallCommand());
|
|
|
|
$application->add(new DropDatabaseDoctrineCommand());
|
|
|
|
$application->add(new CreateDatabaseDoctrineCommand());
|
|
|
|
|
|
|
|
// drop database first, so the install command won't ask to reset things
|
|
|
|
$command = new DropDatabaseDoctrineCommand();
|
|
|
|
$command->setApplication($application);
|
2016-04-12 09:36:01 +00:00
|
|
|
$command->run(new ArrayInput([
|
2015-02-22 22:29:48 +00:00
|
|
|
'command' => 'doctrine:database:drop',
|
|
|
|
'--force' => true,
|
2016-04-12 09:36:01 +00:00
|
|
|
]), new NullOutput());
|
2015-02-22 22:29:48 +00:00
|
|
|
|
2015-11-06 21:08:51 +00:00
|
|
|
$this->getClient()->getContainer()->get('doctrine')->getConnection()->close();
|
2015-02-22 22:29:48 +00:00
|
|
|
|
|
|
|
$command = new CreateDatabaseDoctrineCommand();
|
|
|
|
$command->setApplication($application);
|
2016-04-12 09:36:01 +00:00
|
|
|
$command->run(new ArrayInput([
|
2015-02-22 22:29:48 +00:00
|
|
|
'command' => 'doctrine:database:create',
|
|
|
|
'--env' => 'test',
|
2016-04-12 09:36:01 +00:00
|
|
|
]), new NullOutput());
|
2015-02-22 22:29:48 +00:00
|
|
|
|
|
|
|
$command = $application->find('wallabag:install');
|
|
|
|
|
|
|
|
$tester = new CommandTester($command);
|
2017-05-30 10:47:25 +00:00
|
|
|
$tester->setInputs([
|
|
|
|
'n', // don't want to reset the entire database
|
|
|
|
'n', // don't want to create a new user
|
|
|
|
]);
|
2016-04-12 09:36:01 +00:00
|
|
|
$tester->execute([
|
2015-02-22 22:29:48 +00:00
|
|
|
'command' => $command->getName(),
|
2016-04-12 09:36:01 +00:00
|
|
|
]);
|
2015-02-22 22:29:48 +00:00
|
|
|
|
2016-04-11 17:37:29 +00:00
|
|
|
$this->assertContains('Checking system requirements.', $tester->getDisplay());
|
|
|
|
$this->assertContains('Setting up database.', $tester->getDisplay());
|
|
|
|
$this->assertContains('Administration setup.', $tester->getDisplay());
|
|
|
|
$this->assertContains('Config setup.', $tester->getDisplay());
|
2017-05-05 13:14:58 +00:00
|
|
|
$this->assertContains('Run migrations.', $tester->getDisplay());
|
2015-02-22 22:29:48 +00:00
|
|
|
|
|
|
|
$this->assertContains('Creating schema', $tester->getDisplay());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testRunInstallCommandNoInteraction()
|
|
|
|
{
|
2015-11-06 21:08:51 +00:00
|
|
|
$application = new Application($this->getClient()->getKernel());
|
2015-03-28 20:45:35 +00:00
|
|
|
$application->add(new InstallCommandMock());
|
2015-02-22 22:29:48 +00:00
|
|
|
|
|
|
|
$command = $application->find('wallabag:install');
|
|
|
|
|
|
|
|
$tester = new CommandTester($command);
|
2016-04-12 09:36:01 +00:00
|
|
|
$tester->execute([
|
2015-02-22 22:29:48 +00:00
|
|
|
'command' => $command->getName(),
|
2017-05-30 10:47:25 +00:00
|
|
|
], [
|
|
|
|
'interactive' => false,
|
2016-04-12 09:36:01 +00:00
|
|
|
]);
|
2015-02-22 22:29:48 +00:00
|
|
|
|
2016-04-11 17:37:29 +00:00
|
|
|
$this->assertContains('Checking system requirements.', $tester->getDisplay());
|
|
|
|
$this->assertContains('Setting up database.', $tester->getDisplay());
|
|
|
|
$this->assertContains('Administration setup.', $tester->getDisplay());
|
|
|
|
$this->assertContains('Config setup.', $tester->getDisplay());
|
2017-05-05 13:14:58 +00:00
|
|
|
$this->assertContains('Run migrations.', $tester->getDisplay());
|
2015-02-22 22:29:48 +00:00
|
|
|
}
|
2015-02-22 13:35:36 +00:00
|
|
|
}
|