-
-
Notifications
You must be signed in to change notification settings - Fork 481
Expand file tree
/
Copy pathDropDatabaseDoctrineTest.php
More file actions
163 lines (134 loc) · 5.2 KB
/
DropDatabaseDoctrineTest.php
File metadata and controls
163 lines (134 loc) · 5.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<?php
declare(strict_types=1);
namespace Doctrine\Bundle\DoctrineBundle\Tests\Command;
use Doctrine\Bundle\DoctrineBundle\Command\DropDatabaseDoctrineCommand;
use Doctrine\Bundle\DoctrineBundle\Tests\Polyfill\SymfonyApp;
use Doctrine\DBAL\Configuration;
use Doctrine\DBAL\Connection;
use Doctrine\DBAL\DriverManager;
use Doctrine\DBAL\Exception as DBALException;
use Doctrine\DBAL\Schema\DefaultSchemaManagerFactory;
use Doctrine\Persistence\ManagerRegistry;
use Generator;
use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\MockObject\Stub;
use PHPUnit\Framework\TestCase;
use Symfony\Component\Console\Tester\CommandTester;
use Symfony\Component\DependencyInjection\Container;
use function array_merge;
use function sprintf;
use function sys_get_temp_dir;
/** @psalm-import-type Params from DriverManager */
class DropDatabaseDoctrineTest extends TestCase
{
/** @param array<string, bool> $options */
#[DataProvider('provideForceOption')]
public function testExecute(array $options): void
{
$connectionName = 'default';
$dbName = 'test';
$params = [
'url' => 'sqlite:///' . sys_get_temp_dir() . '/test.db',
'path' => sys_get_temp_dir() . '/' . $dbName,
'driver' => 'pdo_sqlite',
];
/** @psalm-suppress InvalidArgument Need to be compatible with DBAL < 4, which still has `$params['url']` */
$container = $this->getMockContainer($connectionName, $params);
$application = new SymfonyApp();
$application->addCommand(new DropDatabaseDoctrineCommand($container->get('doctrine')));
$command = $application->find('doctrine:database:drop');
$commandTester = new CommandTester($command);
$commandTester->execute(
array_merge(['command' => $command->getName()], $options),
);
$this->assertStringContainsString(
sprintf(
'Dropped database %s for connection named %s',
sys_get_temp_dir() . '/' . $dbName,
$connectionName,
),
$commandTester->getDisplay(),
);
}
/** @param array<string, bool> $options */
#[DataProvider('provideIncompatibleDriverOptions')]
public function testItThrowsWhenUsingIfExistsWithAnIncompatibleDriver(array $options): void
{
$this->expectException(DBALException::class);
$this->testExecute($options);
}
public function testExecuteWithoutOptionForceWillFailWithAttentionMessage(): void
{
$connectionName = 'default';
$dbName = 'test';
$params = [
'path' => sys_get_temp_dir() . '/' . $dbName,
'driver' => 'pdo_sqlite',
];
$container = $this->getMockContainer($connectionName, $params);
$application = new SymfonyApp();
$application->addCommand(new DropDatabaseDoctrineCommand($container->get('doctrine')));
$command = $application->find('doctrine:database:drop');
$commandTester = new CommandTester($command);
$commandTester->execute(
array_merge(['command' => $command->getName()]),
);
$this->assertStringContainsString(
sprintf(
'Would drop the database %s for connection named %s.',
sys_get_temp_dir() . '/' . $dbName,
$connectionName,
),
$commandTester->getDisplay(),
);
$this->assertStringContainsString(
'Please run the operation with --force to execute',
$commandTester->getDisplay(),
);
}
public static function provideForceOption(): Generator
{
yield 'full name' => [
['--force' => true],
];
yield 'short name' => [
['-f' => true],
];
}
public static function provideIncompatibleDriverOptions(): Generator
{
yield 'full name' => [
[
'--force' => true,
'--if-exists' => true,
],
];
yield 'short name' => [
[
'-f' => true,
'--if-exists' => true,
],
];
}
/**
* @param array{url?: string, path?: string, driver: string} $params Connection parameters
* @psalm-param Params $params
*
* @return Stub&Container
*/
private function getMockContainer(string $connectionName, array $params): Stub
{
// Mock the container and everything you'll need here
$mockDoctrine = $this->createStub(ManagerRegistry::class);
$mockDoctrine->method('getDefaultConnectionName')->willReturn($connectionName);
$config = (new Configuration())->setSchemaManagerFactory(new DefaultSchemaManagerFactory());
$mockConnection = $this->createStub(Connection::class);
$mockConnection->method('getConfiguration')->willReturn($config);
$mockConnection->method('getParams')->willReturn($params);
$mockDoctrine->method('getConnection')->willReturn($mockConnection);
$mockContainer = $this->createStub(Container::class);
$mockContainer->method('get')
->willReturnMap([['doctrine', $mockDoctrine]]);
return $mockContainer;
}
}