]> git.immae.eu Git - github/wallabag/wallabag.git/blame - tests/Wallabag/CoreBundle/Command/InstallCommandTest.php
Fix installation command
[github/wallabag/wallabag.git] / tests / Wallabag / CoreBundle / Command / InstallCommandTest.php
CommitLineData
0bf99bb1
J
1<?php
2
23634d5d 3namespace Tests\Wallabag\CoreBundle\Command;
0bf99bb1 4
7ab5eb95 5use DAMA\DoctrineTestBundle\Doctrine\DBAL\StaticDriver;
619cc453
JB
6use Doctrine\Bundle\DoctrineBundle\Command\CreateDatabaseDoctrineCommand;
7use Doctrine\Bundle\DoctrineBundle\Command\DropDatabaseDoctrineCommand;
2680b0bc 8use Doctrine\Bundle\MigrationsBundle\Command\MigrationsMigrateDoctrineCommand;
7ab5eb95 9use Doctrine\DBAL\Platforms\PostgreSqlPlatform;
10use Doctrine\DBAL\Platforms\SqlitePlatform;
0bf99bb1 11use Symfony\Bundle\FrameworkBundle\Console\Application;
0bf99bb1
J
12use Symfony\Component\Console\Input\ArrayInput;
13use Symfony\Component\Console\Output\NullOutput;
619cc453 14use Symfony\Component\Console\Tester\CommandTester;
23634d5d
JB
15use Tests\Wallabag\CoreBundle\Mock\InstallCommandMock;
16use Tests\Wallabag\CoreBundle\WallabagCoreTestCase;
f808b016 17use Wallabag\CoreBundle\Command\InstallCommand;
0bf99bb1 18
769e19dc 19class InstallCommandTest extends WallabagCoreTestCase
0bf99bb1 20{
3c39f5ac
JB
21 public function setUp()
22 {
23 parent::setUp();
24
7ab5eb95 25 /** @var \Doctrine\DBAL\Connection $connection */
26 $connection = $this->getClient()->getContainer()->get('doctrine')->getConnection();
27 if ($connection->getDatabasePlatform() instanceof PostgreSqlPlatform) {
3c39f5ac
JB
28 /*
29 * LOG: statement: CREATE DATABASE "wallabag"
30 * ERROR: source database "template1" is being accessed by other users
31 * DETAIL: There is 1 other session using the database.
32 * STATEMENT: CREATE DATABASE "wallabag"
33 * FATAL: database "wallabag" does not exist
34 *
35 * http://stackoverflow.com/a/14374832/569101
36 */
6dfac457 37 $this->markTestSkipped('PostgreSQL spotted: can\'t find a good way to drop current database, skipping.');
3c39f5ac 38 }
7ab5eb95 39
40 if ($connection->getDatabasePlatform() instanceof SqlitePlatform) {
41 // Environnement variable useful only for sqlite to avoid the error "attempt to write a readonly database"
42 // We can't define always this environnement variable because pdo_mysql seems to use it
43 // and we have the error:
44 // SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax;
45 // check the manual that corresponds to your MariaDB server version for the right syntax to use
46 // near '/tmp/wallabag_testTYj1kp' at line 1
47 $databasePath = tempnam(sys_get_temp_dir(), 'wallabag_test');
48 putenv("TEST_DATABASE_PATH=$databasePath");
49
50 // The environnement has been changed, recreate the client in order to update connection
51 parent::setUp();
52 }
53
54 // disable doctrine-test-bundle
55 StaticDriver::setKeepStaticConnections(false);
56
57 $this->resetDatabase($this->getClient());
3c39f5ac
JB
58 }
59
7ab5eb95 60 public function tearDown()
0bf99bb1 61 {
7ab5eb95 62 $databasePath = getenv('TEST_DATABASE_PATH');
63 // Remove variable environnement
64 putenv('TEST_DATABASE_PATH');
65 if ($databasePath && file_exists($databasePath)) {
66 unlink($databasePath);
67 } else {
68 // Create a new client to avoid the error:
69 // Transaction commit failed because the transaction has been marked for rollback only.
70 $client = static::createClient();
71 $this->resetDatabase($client);
72 }
73
74 // enable doctrine-test-bundle
75 StaticDriver::setKeepStaticConnections(true);
76 parent::tearDown();
0bf99bb1
J
77 }
78
79 public function testRunInstallCommand()
80 {
d5027625 81 $application = new Application($this->getClient()->getKernel());
0ee043f7 82 $application->add(new InstallCommandMock());
0bf99bb1
J
83
84 $command = $application->find('wallabag:install');
85
0bf99bb1 86 $tester = new CommandTester($command);
26650fdb
JB
87 $tester->setInputs([
88 'y', // dropping database
89 'y', // create super admin
f808b016
JB
90 'username_' . uniqid('', true), // username
91 'password_' . uniqid('', true), // password
92 'email_' . uniqid('', true) . '@wallabag.it', // email
26650fdb 93 ]);
4094ea47 94 $tester->execute([
732c2ad8 95 'command' => $command->getName(),
4094ea47 96 ]);
0bf99bb1 97
637dc4bb
JB
98 $this->assertContains('Checking system requirements.', $tester->getDisplay());
99 $this->assertContains('Setting up database.', $tester->getDisplay());
100 $this->assertContains('Administration setup.', $tester->getDisplay());
101 $this->assertContains('Config setup.', $tester->getDisplay());
0bf99bb1 102 }
c641baad
J
103
104 public function testRunInstallCommandWithReset()
105 {
d5027625 106 $application = new Application($this->getClient()->getKernel());
0ee043f7 107 $application->add(new InstallCommandMock());
c641baad
J
108
109 $command = $application->find('wallabag:install');
110
c641baad 111 $tester = new CommandTester($command);
26650fdb
JB
112 $tester->setInputs([
113 'y', // create super admin
f808b016
JB
114 'username_' . uniqid('', true), // username
115 'password_' . uniqid('', true), // password
116 'email_' . uniqid('', true) . '@wallabag.it', // email
26650fdb 117 ]);
4094ea47 118 $tester->execute([
c641baad
J
119 'command' => $command->getName(),
120 '--reset' => true,
4094ea47 121 ]);
c641baad 122
637dc4bb
JB
123 $this->assertContains('Checking system requirements.', $tester->getDisplay());
124 $this->assertContains('Setting up database.', $tester->getDisplay());
7d2d1d68 125 $this->assertContains('Dropping database, creating database and schema, clearing the cache', $tester->getDisplay());
637dc4bb
JB
126 $this->assertContains('Administration setup.', $tester->getDisplay());
127 $this->assertContains('Config setup.', $tester->getDisplay());
c641baad
J
128
129 // we force to reset everything
7d2d1d68 130 $this->assertContains('Dropping database, creating database and schema, clearing the cache', $tester->getDisplay());
c641baad
J
131 }
132
133 public function testRunInstallCommandWithDatabaseRemoved()
134 {
f62c3faf
JB
135 // skipped SQLite check when database is removed because while testing for the connection,
136 // the driver will create the file (so the database) before testing if database exist
7ab5eb95 137 if ($this->getClient()->getContainer()->get('doctrine')->getConnection()->getDatabasePlatform() instanceof \Doctrine\DBAL\Platforms\SqlitePlatform) {
f62c3faf
JB
138 $this->markTestSkipped('SQLite spotted: can\'t test with database removed.');
139 }
140
d5027625 141 $application = new Application($this->getClient()->getKernel());
c641baad
J
142 $application->add(new DropDatabaseDoctrineCommand());
143
144 // drop database first, so the install command won't ask to reset things
d5027625 145 $command = $application->find('doctrine:database:drop');
4094ea47 146 $command->run(new ArrayInput([
c641baad
J
147 'command' => 'doctrine:database:drop',
148 '--force' => true,
4094ea47 149 ]), new NullOutput());
c641baad 150
d5027625
JB
151 // start a new application to avoid lagging connexion to pgsql
152 $client = static::createClient();
153 $application = new Application($client->getKernel());
154 $application->add(new InstallCommand());
155
c641baad
J
156 $command = $application->find('wallabag:install');
157
c641baad 158 $tester = new CommandTester($command);
26650fdb
JB
159 $tester->setInputs([
160 'y', // create super admin
f808b016
JB
161 'username_' . uniqid('', true), // username
162 'password_' . uniqid('', true), // password
163 'email_' . uniqid('', true) . '@wallabag.it', // email
26650fdb 164 ]);
4094ea47 165 $tester->execute([
c641baad 166 'command' => $command->getName(),
4094ea47 167 ]);
c641baad 168
637dc4bb
JB
169 $this->assertContains('Checking system requirements.', $tester->getDisplay());
170 $this->assertContains('Setting up database.', $tester->getDisplay());
171 $this->assertContains('Administration setup.', $tester->getDisplay());
172 $this->assertContains('Config setup.', $tester->getDisplay());
c641baad
J
173
174 // the current database doesn't already exist
175 $this->assertContains('Creating database and schema, clearing the cache', $tester->getDisplay());
176 }
177
178 public function testRunInstallCommandChooseResetSchema()
179 {
d5027625 180 $application = new Application($this->getClient()->getKernel());
0ee043f7 181 $application->add(new InstallCommandMock());
c641baad
J
182
183 $command = $application->find('wallabag:install');
184
c641baad 185 $tester = new CommandTester($command);
26650fdb
JB
186 $tester->setInputs([
187 'n', // don't want to reset the entire database
188 'y', // do want to reset the schema
189 'n', // don't want to create a new user
190 ]);
4094ea47 191 $tester->execute([
c641baad 192 'command' => $command->getName(),
4094ea47 193 ]);
c641baad 194
637dc4bb
JB
195 $this->assertContains('Checking system requirements.', $tester->getDisplay());
196 $this->assertContains('Setting up database.', $tester->getDisplay());
197 $this->assertContains('Administration setup.', $tester->getDisplay());
198 $this->assertContains('Config setup.', $tester->getDisplay());
c641baad 199
7d2d1d68 200 $this->assertContains('Dropping schema and creating schema', $tester->getDisplay());
c641baad
J
201 }
202
203 public function testRunInstallCommandChooseNothing()
204 {
d5027625 205 $application = new Application($this->getClient()->getKernel());
c641baad
J
206 $application->add(new InstallCommand());
207 $application->add(new DropDatabaseDoctrineCommand());
208 $application->add(new CreateDatabaseDoctrineCommand());
2680b0bc 209 $application->add(new MigrationsMigrateDoctrineCommand());
c641baad
J
210
211 // drop database first, so the install command won't ask to reset things
212 $command = new DropDatabaseDoctrineCommand();
213 $command->setApplication($application);
4094ea47 214 $command->run(new ArrayInput([
c641baad
J
215 'command' => 'doctrine:database:drop',
216 '--force' => true,
4094ea47 217 ]), new NullOutput());
c641baad 218
d5027625 219 $this->getClient()->getContainer()->get('doctrine')->getConnection()->close();
c641baad
J
220
221 $command = new CreateDatabaseDoctrineCommand();
222 $command->setApplication($application);
4094ea47 223 $command->run(new ArrayInput([
c641baad
J
224 'command' => 'doctrine:database:create',
225 '--env' => 'test',
4094ea47 226 ]), new NullOutput());
c641baad
J
227
228 $command = $application->find('wallabag:install');
229
c641baad 230 $tester = new CommandTester($command);
26650fdb
JB
231 $tester->setInputs([
232 'n', // don't want to reset the entire database
233 'n', // don't want to create a new user
234 ]);
4094ea47 235 $tester->execute([
c641baad 236 'command' => $command->getName(),
4094ea47 237 ]);
c641baad 238
637dc4bb
JB
239 $this->assertContains('Checking system requirements.', $tester->getDisplay());
240 $this->assertContains('Setting up database.', $tester->getDisplay());
241 $this->assertContains('Administration setup.', $tester->getDisplay());
242 $this->assertContains('Config setup.', $tester->getDisplay());
c641baad
J
243
244 $this->assertContains('Creating schema', $tester->getDisplay());
245 }
246
247 public function testRunInstallCommandNoInteraction()
248 {
d5027625 249 $application = new Application($this->getClient()->getKernel());
0ee043f7 250 $application->add(new InstallCommandMock());
c641baad
J
251
252 $command = $application->find('wallabag:install');
253
c641baad 254 $tester = new CommandTester($command);
4094ea47 255 $tester->execute([
c641baad 256 'command' => $command->getName(),
26650fdb
JB
257 ], [
258 'interactive' => false,
4094ea47 259 ]);
c641baad 260
637dc4bb
JB
261 $this->assertContains('Checking system requirements.', $tester->getDisplay());
262 $this->assertContains('Setting up database.', $tester->getDisplay());
263 $this->assertContains('Administration setup.', $tester->getDisplay());
264 $this->assertContains('Config setup.', $tester->getDisplay());
c641baad 265 }
0bf99bb1 266}