1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <?php
- namespace Illuminate\Tests\Database;
- use Closure;
- use Illuminate\Database\Console\Migrations\ResetCommand;
- use Illuminate\Database\Migrations\Migrator;
- use Illuminate\Foundation\Application;
- use Mockery as m;
- use PHPUnit\Framework\TestCase;
- use Symfony\Component\Console\Input\ArrayInput;
- use Symfony\Component\Console\Output\NullOutput;
- class DatabaseMigrationResetCommandTest extends TestCase
- {
- protected function tearDown(): void
- {
- m::close();
- }
- public function testResetCommandCallsMigratorWithProperArguments()
- {
- $command = new ResetCommand($migrator = m::mock(Migrator::class));
- $app = new ApplicationDatabaseResetStub(['path.database' => __DIR__]);
- $app->useDatabasePath(__DIR__);
- $command->setLaravel($app);
- $migrator->shouldReceive('paths')->once()->andReturn([]);
- $migrator->shouldReceive('usingConnection')->once()->with(null, m::type(Closure::class))->andReturnUsing(function ($connection, $callback) {
- $callback();
- });
- $migrator->shouldReceive('repositoryExists')->once()->andReturn(true);
- $migrator->shouldReceive('setOutput')->once()->andReturn($migrator);
- $migrator->shouldReceive('reset')->once()->with([__DIR__.DIRECTORY_SEPARATOR.'migrations'], false);
- $this->runCommand($command);
- }
- public function testResetCommandCanBePretended()
- {
- $command = new ResetCommand($migrator = m::mock(Migrator::class));
- $app = new ApplicationDatabaseResetStub(['path.database' => __DIR__]);
- $app->useDatabasePath(__DIR__);
- $command->setLaravel($app);
- $migrator->shouldReceive('paths')->once()->andReturn([]);
- $migrator->shouldReceive('usingConnection')->once()->with('foo', m::type(Closure::class))->andReturnUsing(function ($connection, $callback) {
- $callback();
- });
- $migrator->shouldReceive('repositoryExists')->once()->andReturn(true);
- $migrator->shouldReceive('setOutput')->once()->andReturn($migrator);
- $migrator->shouldReceive('reset')->once()->with([__DIR__.DIRECTORY_SEPARATOR.'migrations'], true);
- $this->runCommand($command, ['--pretend' => true, '--database' => 'foo']);
- }
- protected function runCommand($command, $input = [])
- {
- return $command->run(new ArrayInput($input), new NullOutput);
- }
- }
- class ApplicationDatabaseResetStub extends Application
- {
- public function __construct(array $data = [])
- {
- foreach ($data as $abstract => $instance) {
- $this->instance($abstract, $instance);
- }
- }
- public function environment(...$environments)
- {
- return 'development';
- }
- }
|