Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add migrations --help command #710

Merged
merged 3 commits into from
Apr 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
150 changes: 150 additions & 0 deletions src/Command/EntryCommand.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,150 @@
<?php
declare(strict_types=1);

/**
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
*
* Licensed under The MIT License
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
* @link https://cakephp.org CakePHP(tm) Project
* @since 4.3.0
* @license https://www.opensource.org/licenses/mit-license.php MIT License
*/
namespace Migrations\Command;

use Cake\Command\Command;
use Cake\Console\Arguments;
use Cake\Console\Command\HelpCommand;
use Cake\Console\CommandCollection;
use Cake\Console\CommandCollectionAwareInterface;
use Cake\Console\ConsoleIo;
use Cake\Console\Exception\ConsoleException;

/**
* Command that provides help and an entry point to migrations tools.
*/
class EntryCommand extends Command implements CommandCollectionAwareInterface
{
/**
* The command collection to get help on.
*
* @var \Cake\Console\CommandCollection
*/
protected CommandCollection $commands;

/**
* @inheritDoc
*/
public static function defaultName(): string
{
return 'migrations';
}

/**
* @inheritDoc
*/
public function setCommandCollection(CommandCollection $commands): void
{
$this->commands = $commands;
}

/**
* Run the command.
*
* Override the run() method for special handling of the `--help` option.
*
* @param array $argv Arguments from the CLI environment.
* @param \Cake\Console\ConsoleIo $io The console io
* @return int|null Exit code or null for success.
*/
public function run(array $argv, ConsoleIo $io): ?int
{
$this->initialize();

$parser = $this->getOptionParser();
try {
[$options, $arguments] = $parser->parse($argv);
$args = new Arguments(
$arguments,
$options,
$parser->argumentNames()
);
} catch (ConsoleException $e) {
$io->err('Error: ' . $e->getMessage());

return static::CODE_ERROR;
}
$this->setOutputLevel($args, $io);

// This is the variance from Command::run()
if (!$args->getArgumentAt(0) && $args->getOption('help')) {
$io->out([
'<info>Migrations</info>',
'',
"Migrations provides commands for managing your application's database schema and initial data.",
'',
]);
$help = $this->getHelp();
$this->executeCommand($help, [], $io);

return static::CODE_SUCCESS;
}

return $this->execute($args, $io);
}

/**
* Execute the command.
*
* @param \Cake\Console\Arguments $args The command arguments.
* @param \Cake\Console\ConsoleIo $io The console io
* @return int|null The exit code or null for success
*/
public function execute(Arguments $args, ConsoleIo $io): ?int
{
if ($args->hasArgumentAt(0)) {
$name = $args->getArgumentAt(0);
$io->err(
"<error>Could not find migrations command named `$name`."
. ' Run `migrations --help` to get a list of commands.</error>'
);

return static::CODE_ERROR;
}
$io->err('<warning>No command provided. Run `migrations --help` to get a list of commands.</warning>');

return static::CODE_ERROR;
}

/**
* Gets the generated help command
*
* @return \Cake\Console\Command\HelpCommand
*/
public function getHelp(): HelpCommand
{
$help = new HelpCommand();
$commands = [];
foreach ($this->commands as $command => $class) {
if (str_starts_with($command, 'migrations')) {
$parts = explode(' ', $command);

// Remove `migrations`
array_shift($parts);
if (count($parts) === 0) {
continue;
}
$commands[$command] = $class;
}
}

$CommandCollection = new CommandCollection($commands);
$help->setCommandCollection($CommandCollection);

return $help;
}
}
2 changes: 2 additions & 0 deletions src/MigrationsPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
use Migrations\Command\BakeMigrationSnapshotCommand;
use Migrations\Command\BakeSeedCommand;
use Migrations\Command\DumpCommand;
use Migrations\Command\EntryCommand;
use Migrations\Command\MarkMigratedCommand;
use Migrations\Command\MigrateCommand;
use Migrations\Command\MigrationsCacheBuildCommand;
Expand Down Expand Up @@ -97,6 +98,7 @@ public function console(CommandCollection $commands): CommandCollection
if (Configure::read('Migrations.backend') == 'builtin') {
$classes = [
DumpCommand::class,
EntryCommand::class,
MarkMigratedCommand::class,
MigrateCommand::class,
RollbackCommand::class,
Expand Down
65 changes: 65 additions & 0 deletions tests/TestCase/Command/EntryCommandTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
<?php
declare(strict_types=1);

/**
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
*
* Licensed under The MIT License
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
* @link https://cakephp.org CakePHP(tm) Project
* @since 4.3.0
* @license https://www.opensource.org/licenses/mit-license.php MIT License
*/
namespace Migrations\Test\TestCase\Command;

use Cake\Console\TestSuite\ConsoleIntegrationTestTrait;
use Cake\Core\Configure;
use Cake\TestSuite\TestCase;

/**
* EntryCommand Test
*/
class EntryCommandTest extends TestCase
{
use ConsoleIntegrationTestTrait;

public function setUp(): void
{
parent::setUp();

Configure::write('Migrations.backend', 'builtin');
}

/**
* Test execute() generating help
*
* @return void
*/
public function testExecuteHelp()
{
$this->exec('migrations --help');

$this->assertExitSuccess();
$this->assertOutputContains('Available Commands');
$this->assertOutputContains('migrations migrate');
$this->assertOutputContains('migrations status');
$this->assertOutputContains('migrations rollback');
}

/**
* Test execute() generating help
*
* @return void
*/
public function testExecuteMissingCommand()
{
$this->exec('migrations derp');

$this->assertExitError();
$this->assertErrorContains('Could not find migrations command named `derp`');
}
}
Loading