mirror of
https://github.com/shlinkio/shlink.git
synced 2024-12-11 08:38:03 +03:00
56 lines
2.1 KiB
PHP
56 lines
2.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ShlinkioTest\Shlink\CLI\Command\Db;
|
|
|
|
use PHPUnit\Framework\Attributes\Test;
|
|
use PHPUnit\Framework\MockObject\MockObject;
|
|
use PHPUnit\Framework\TestCase;
|
|
use Shlinkio\Shlink\CLI\Command\Db\MigrateDatabaseCommand;
|
|
use Shlinkio\Shlink\CLI\Util\ProcessRunnerInterface;
|
|
use ShlinkioTest\Shlink\CLI\Util\CliTestUtils;
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
|
use Symfony\Component\Console\Tester\CommandTester;
|
|
use Symfony\Component\Lock\LockFactory;
|
|
use Symfony\Component\Lock\SharedLockInterface;
|
|
use Symfony\Component\Process\PhpExecutableFinder;
|
|
|
|
class MigrateDatabaseCommandTest extends TestCase
|
|
{
|
|
private CommandTester $commandTester;
|
|
private MockObject & ProcessRunnerInterface $processHelper;
|
|
|
|
protected function setUp(): void
|
|
{
|
|
$locker = $this->createMock(LockFactory::class);
|
|
$lock = $this->createMock(SharedLockInterface::class);
|
|
$lock->method('acquire')->withAnyParameters()->willReturn(true);
|
|
$locker->method('createLock')->withAnyParameters()->willReturn($lock);
|
|
|
|
$phpExecutableFinder = $this->createMock(PhpExecutableFinder::class);
|
|
$phpExecutableFinder->method('find')->with($this->isFalse())->willReturn('/usr/local/bin/php');
|
|
|
|
$this->processHelper = $this->createMock(ProcessRunnerInterface::class);
|
|
|
|
$command = new MigrateDatabaseCommand($locker, $this->processHelper, $phpExecutableFinder);
|
|
$this->commandTester = CliTestUtils::testerForCommand($command);
|
|
}
|
|
|
|
#[Test]
|
|
public function migrationsCommandIsRunWithProperVerbosity(): void
|
|
{
|
|
$this->processHelper->expects($this->once())->method('run')->with($this->isInstanceOf(OutputInterface::class), [
|
|
'/usr/local/bin/php',
|
|
MigrateDatabaseCommand::DOCTRINE_MIGRATIONS_SCRIPT,
|
|
MigrateDatabaseCommand::DOCTRINE_MIGRATE_COMMAND,
|
|
'--no-interaction',
|
|
]);
|
|
|
|
$this->commandTester->execute([]);
|
|
$output = $this->commandTester->getDisplay();
|
|
|
|
self::assertStringContainsString('Migrating database...', $output);
|
|
self::assertStringContainsString('Database properly migrated!', $output);
|
|
}
|
|
}
|