]> git.immae.eu Git - github/wallabag/wallabag.git/blame - tests/Wallabag/CoreBundle/Command/InstallCommandTest.php
Use our own fork for CraueConfigBundle
[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');
9a8a1bdf 65
7ab5eb95 66 if ($databasePath && file_exists($databasePath)) {
67 unlink($databasePath);
68 } else {
69 // Create a new client to avoid the error:
70 // Transaction commit failed because the transaction has been marked for rollback only.
71 $client = static::createClient();
72 $this->resetDatabase($client);
73 }
74
75 // enable doctrine-test-bundle
76 StaticDriver::setKeepStaticConnections(true);
77 parent::tearDown();
0bf99bb1
J
78 }
79
80 public function testRunInstallCommand()
81 {
d5027625 82 $application = new Application($this->getClient()->getKernel());
0ee043f7 83 $application->add(new InstallCommandMock());
0bf99bb1
J
84
85 $command = $application->find('wallabag:install');
86
0bf99bb1 87 $tester = new CommandTester($command);
26650fdb
JB
88 $tester->setInputs([
89 'y', // dropping database
90 'y', // create super admin
f808b016
JB
91 'username_' . uniqid('', true), // username
92 'password_' . uniqid('', true), // password
93 'email_' . uniqid('', true) . '@wallabag.it', // email
26650fdb 94 ]);
4094ea47 95 $tester->execute([
732c2ad8 96 'command' => $command->getName(),
4094ea47 97 ]);
0bf99bb1 98
637dc4bb
JB
99 $this->assertContains('Checking system requirements.', $tester->getDisplay());
100 $this->assertContains('Setting up database.', $tester->getDisplay());
101 $this->assertContains('Administration setup.', $tester->getDisplay());
102 $this->assertContains('Config setup.', $tester->getDisplay());
0bf99bb1 103 }
c641baad
J
104
105 public function testRunInstallCommandWithReset()
106 {
d5027625 107 $application = new Application($this->getClient()->getKernel());
0ee043f7 108 $application->add(new InstallCommandMock());
c641baad
J
109
110 $command = $application->find('wallabag:install');
111
c641baad 112 $tester = new CommandTester($command);
26650fdb
JB
113 $tester->setInputs([
114 'y', // create super admin
f808b016
JB
115 'username_' . uniqid('', true), // username
116 'password_' . uniqid('', true), // password
117 'email_' . uniqid('', true) . '@wallabag.it', // email
26650fdb 118 ]);
4094ea47 119 $tester->execute([
c641baad
J
120 'command' => $command->getName(),
121 '--reset' => true,
4094ea47 122 ]);
c641baad 123
637dc4bb
JB
124 $this->assertContains('Checking system requirements.', $tester->getDisplay());
125 $this->assertContains('Setting up database.', $tester->getDisplay());
7d2d1d68 126 $this->assertContains('Dropping database, creating database and schema, clearing the cache', $tester->getDisplay());
637dc4bb
JB
127 $this->assertContains('Administration setup.', $tester->getDisplay());
128 $this->assertContains('Config setup.', $tester->getDisplay());
c641baad
J
129
130 // we force to reset everything
7d2d1d68 131 $this->assertContains('Dropping database, creating database and schema, clearing the cache', $tester->getDisplay());
c641baad
J
132 }
133
134 public function testRunInstallCommandWithDatabaseRemoved()
135 {
f62c3faf
JB
136 // skipped SQLite check when database is removed because while testing for the connection,
137 // the driver will create the file (so the database) before testing if database exist
7ab5eb95 138 if ($this->getClient()->getContainer()->get('doctrine')->getConnection()->getDatabasePlatform() instanceof \Doctrine\DBAL\Platforms\SqlitePlatform) {
f62c3faf
JB
139 $this->markTestSkipped('SQLite spotted: can\'t test with database removed.');
140 }
141
d5027625 142 $application = new Application($this->getClient()->getKernel());
c641baad
J
143 $application->add(new DropDatabaseDoctrineCommand());
144
145 // drop database first, so the install command won't ask to reset things
d5027625 146 $command = $application->find('doctrine:database:drop');
4094ea47 147 $command->run(new ArrayInput([
c641baad
J
148 'command' => 'doctrine:database:drop',
149 '--force' => true,
4094ea47 150 ]), new NullOutput());
c641baad 151
d5027625
JB
152 // start a new application to avoid lagging connexion to pgsql
153 $client = static::createClient();
154 $application = new Application($client->getKernel());
155 $application->add(new InstallCommand());
156
c641baad
J
157 $command = $application->find('wallabag:install');
158
c641baad 159 $tester = new CommandTester($command);
26650fdb
JB
160 $tester->setInputs([
161 'y', // create super admin
f808b016
JB
162 'username_' . uniqid('', true), // username
163 'password_' . uniqid('', true), // password
164 'email_' . uniqid('', true) . '@wallabag.it', // email
26650fdb 165 ]);
4094ea47 166 $tester->execute([
c641baad 167 'command' => $command->getName(),
4094ea47 168 ]);
c641baad 169
637dc4bb
JB
170 $this->assertContains('Checking system requirements.', $tester->getDisplay());
171 $this->assertContains('Setting up database.', $tester->getDisplay());
172 $this->assertContains('Administration setup.', $tester->getDisplay());
173 $this->assertContains('Config setup.', $tester->getDisplay());
c641baad
J
174
175 // the current database doesn't already exist
176 $this->assertContains('Creating database and schema, clearing the cache', $tester->getDisplay());
177 }
178
179 public function testRunInstallCommandChooseResetSchema()
180 {
d5027625 181 $application = new Application($this->getClient()->getKernel());
0ee043f7 182 $application->add(new InstallCommandMock());
c641baad
J
183
184 $command = $application->find('wallabag:install');
185
c641baad 186 $tester = new CommandTester($command);
26650fdb
JB
187 $tester->setInputs([
188 'n', // don't want to reset the entire database
189 'y', // do want to reset the schema
190 'n', // don't want to create a new user
191 ]);
4094ea47 192 $tester->execute([
c641baad 193 'command' => $command->getName(),
4094ea47 194 ]);
c641baad 195
637dc4bb
JB
196 $this->assertContains('Checking system requirements.', $tester->getDisplay());
197 $this->assertContains('Setting up database.', $tester->getDisplay());
198 $this->assertContains('Administration setup.', $tester->getDisplay());
199 $this->assertContains('Config setup.', $tester->getDisplay());
c641baad 200
7d2d1d68 201 $this->assertContains('Dropping schema and creating schema', $tester->getDisplay());
c641baad
J
202 }
203
204 public function testRunInstallCommandChooseNothing()
205 {
d5027625 206 $application = new Application($this->getClient()->getKernel());
c641baad
J
207 $application->add(new InstallCommand());
208 $application->add(new DropDatabaseDoctrineCommand());
209 $application->add(new CreateDatabaseDoctrineCommand());
2680b0bc 210 $application->add(new MigrationsMigrateDoctrineCommand());
c641baad
J
211
212 // drop database first, so the install command won't ask to reset things
213 $command = new DropDatabaseDoctrineCommand();
214 $command->setApplication($application);
4094ea47 215 $command->run(new ArrayInput([
c641baad
J
216 'command' => 'doctrine:database:drop',
217 '--force' => true,
4094ea47 218 ]), new NullOutput());
c641baad 219
d5027625 220 $this->getClient()->getContainer()->get('doctrine')->getConnection()->close();
c641baad
J
221
222 $command = new CreateDatabaseDoctrineCommand();
223 $command->setApplication($application);
4094ea47 224 $command->run(new ArrayInput([
c641baad
J
225 'command' => 'doctrine:database:create',
226 '--env' => 'test',
4094ea47 227 ]), new NullOutput());
c641baad
J
228
229 $command = $application->find('wallabag:install');
230
c641baad 231 $tester = new CommandTester($command);
26650fdb
JB
232 $tester->setInputs([
233 'n', // don't want to reset the entire database
234 'n', // don't want to create a new user
235 ]);
4094ea47 236 $tester->execute([
c641baad 237 'command' => $command->getName(),
4094ea47 238 ]);
c641baad 239
637dc4bb
JB
240 $this->assertContains('Checking system requirements.', $tester->getDisplay());
241 $this->assertContains('Setting up database.', $tester->getDisplay());
242 $this->assertContains('Administration setup.', $tester->getDisplay());
243 $this->assertContains('Config setup.', $tester->getDisplay());
c641baad
J
244
245 $this->assertContains('Creating schema', $tester->getDisplay());
246 }
247
248 public function testRunInstallCommandNoInteraction()
249 {
d5027625 250 $application = new Application($this->getClient()->getKernel());
0ee043f7 251 $application->add(new InstallCommandMock());
c641baad
J
252
253 $command = $application->find('wallabag:install');
254
c641baad 255 $tester = new CommandTester($command);
4094ea47 256 $tester->execute([
c641baad 257 'command' => $command->getName(),
26650fdb
JB
258 ], [
259 'interactive' => false,
4094ea47 260 ]);
c641baad 261
637dc4bb
JB
262 $this->assertContains('Checking system requirements.', $tester->getDisplay());
263 $this->assertContains('Setting up database.', $tester->getDisplay());
264 $this->assertContains('Administration setup.', $tester->getDisplay());
265 $this->assertContains('Config setup.', $tester->getDisplay());
c641baad 266 }
0bf99bb1 267}