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
|
<?php
declare(strict_types=1);
namespace Doctrine\Tests\ORM\Tools\Console\Command;
use Doctrine\DBAL\Platforms\SqlitePlatform;
use Doctrine\ORM\Tools\Console\Command\ValidateSchemaCommand;
use Doctrine\ORM\Tools\Console\EntityManagerProvider\SingleManagerProvider;
use Doctrine\Tests\OrmFunctionalTestCase;
use Symfony\Component\Console\Application;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Tester\CommandTester;
/**
* Tests for {@see \Doctrine\ORM\Tools\Console\Command\ValidateSchemaCommand}
*
* @covers \Doctrine\ORM\Tools\Console\Command\ValidateSchemaCommand
*/
class ValidateSchemaCommandTest extends OrmFunctionalTestCase
{
/** @var ValidateSchemaCommand */
private $command;
/** @var CommandTester */
private $tester;
protected function setUp(): void
{
parent::setUp();
if (! $this->_em->getConnection()->getDatabasePlatform() instanceof SqlitePlatform) {
self::markTestSkipped('Only with sqlite');
}
$application = new Application();
$application->add(new ValidateSchemaCommand(new SingleManagerProvider($this->_em)));
$this->command = $application->find('orm:validate-schema');
$this->tester = new CommandTester($this->command);
}
public function testNotInSync(): void
{
$this->tester->execute(
[
'command' => $this->command->getName(),
]
);
$display = $this->tester->getDisplay();
self::assertStringContainsString('The database schema is not in sync with the current mapping file', $display);
self::assertStringNotContainsString('cache_login', $display);
}
public function testNotInSyncVerbose(): void
{
$schemaManager = $this->createSchemaManager();
if ($schemaManager->tablesExist('cache_login')) {
$schemaManager->dropTable('cache_login');
}
$this->tester->execute(
[
'command' => $this->command->getName(),
],
[
'verbosity' => OutputInterface::VERBOSITY_VERBOSE,
]
);
$display = $this->tester->getDisplay();
self::assertStringContainsString('The database schema is not in sync with the current mapping file', $display);
self::assertStringContainsString('cache_login', $display);
}
}
|