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
|
<?php
namespace Illuminate\Tests\Database;
use Illuminate\Contracts\Events\Dispatcher;
use Illuminate\Database\Console\Migrations\MigrateCommand;
use Illuminate\Database\Console\Migrations\RefreshCommand;
use Illuminate\Database\Console\Migrations\ResetCommand;
use Illuminate\Database\Console\Migrations\RollbackCommand;
use Illuminate\Database\Events\DatabaseRefreshed;
use Illuminate\Foundation\Application;
use Mockery as m;
use PHPUnit\Framework\TestCase;
use Symfony\Component\Console\Application as ConsoleApplication;
use Symfony\Component\Console\Input\ArrayInput;
use Symfony\Component\Console\Output\NullOutput;
class DatabaseMigrationRefreshCommandTest extends TestCase
{
protected function tearDown(): void
{
RefreshCommand::prohibit(false);
m::close();
}
public function testRefreshCommandCallsCommandsWithProperArguments()
{
$command = new RefreshCommand;
$app = new ApplicationDatabaseRefreshStub(['path.database' => __DIR__]);
$dispatcher = $app->instance(Dispatcher::class, $events = m::mock());
$console = m::mock(ConsoleApplication::class)->makePartial();
$console->__construct();
$command->setLaravel($app);
$command->setApplication($console);
$resetCommand = m::mock(ResetCommand::class);
$migrateCommand = m::mock(MigrateCommand::class);
$console->shouldReceive('find')->with('migrate:reset')->andReturn($resetCommand);
$console->shouldReceive('find')->with('migrate')->andReturn($migrateCommand);
$dispatcher->shouldReceive('dispatch')->once()->with(m::type(DatabaseRefreshed::class));
$quote = DIRECTORY_SEPARATOR === '\\' ? '"' : "'";
$resetCommand->shouldReceive('run')->with(new InputMatcher("--force=1 {$quote}migrate:reset{$quote}"), m::any());
$migrateCommand->shouldReceive('run')->with(new InputMatcher('--force=1 migrate'), m::any());
$this->runCommand($command);
}
public function testRefreshCommandCallsCommandsWithStep()
{
$command = new RefreshCommand;
$app = new ApplicationDatabaseRefreshStub(['path.database' => __DIR__]);
$dispatcher = $app->instance(Dispatcher::class, $events = m::mock());
$console = m::mock(ConsoleApplication::class)->makePartial();
$console->__construct();
$command->setLaravel($app);
$command->setApplication($console);
$rollbackCommand = m::mock(RollbackCommand::class);
$migrateCommand = m::mock(MigrateCommand::class);
$console->shouldReceive('find')->with('migrate:rollback')->andReturn($rollbackCommand);
$console->shouldReceive('find')->with('migrate')->andReturn($migrateCommand);
$dispatcher->shouldReceive('dispatch')->once()->with(m::type(DatabaseRefreshed::class));
$quote = DIRECTORY_SEPARATOR === '\\' ? '"' : "'";
$rollbackCommand->shouldReceive('run')->with(new InputMatcher("--step=2 --force=1 {$quote}migrate:rollback{$quote}"), m::any());
$migrateCommand->shouldReceive('run')->with(new InputMatcher('--force=1 migrate'), m::any());
$this->runCommand($command, ['--step' => 2]);
}
public function testRefreshCommandExitsWhenProhibited()
{
$command = new RefreshCommand;
$app = new ApplicationDatabaseRefreshStub(['path.database' => __DIR__]);
$dispatcher = $app->instance(Dispatcher::class, $events = m::mock());
$console = m::mock(ConsoleApplication::class)->makePartial();
$console->__construct();
$command->setLaravel($app);
$command->setApplication($console);
RefreshCommand::prohibit();
$code = $this->runCommand($command);
$this->assertSame(1, $code);
$console->shouldNotHaveBeenCalled();
$dispatcher->shouldNotReceive('dispatch');
}
protected function runCommand($command, $input = [])
{
return $command->run(new ArrayInput($input), new NullOutput);
}
}
class InputMatcher extends m\Matcher\MatcherAbstract
{
/**
* @param \Symfony\Component\Console\Input\ArrayInput $actual
* @return bool
*/
public function match(&$actual)
{
return (string) $actual == $this->_expected;
}
public function __toString()
{
return '';
}
}
class ApplicationDatabaseRefreshStub extends Application
{
public function __construct(array $data = [])
{
foreach ($data as $abstract => $instance) {
$this->instance($abstract, $instance);
}
}
public function environment(...$environments)
{
return 'development';
}
}
|