Skip to content

Commit

Permalink
test: add test
Browse files Browse the repository at this point in the history
  • Loading branch information
kenjis committed Jun 18, 2024
1 parent a0e35ba commit 8ce24a7
Show file tree
Hide file tree
Showing 2 changed files with 123 additions and 0 deletions.
59 changes: 59 additions & 0 deletions tests/_support/_command/ListCommands.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
<?php

declare(strict_types=1);

/**
* This file is part of CodeIgniter 4 framework.
*
* (c) CodeIgniter Foundation <[email protected]>
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/

namespace App\Commands;

use CodeIgniter\CLI\CLI;
use CodeIgniter\Commands\ListCommands as BaseListCommands;

class ListCommands extends BaseListCommands
{
/**
* The group the command is lumped under
* when listing commands.
*
* @var string
*/
protected $group = 'App';

/**
* The Command's name
*
* @var string
*/
protected $name = 'list';

/**
* the Command's short description
*
* @var string
*/
protected $description = 'This is testing to override `list` command.';

/**
* the Command's usage
*
* @var string
*/
protected $usage = 'list';

/**
* Displays the help for the spark cli script itself.
*/
public function run(array $params)
{
CLI::write('This is '.__CLASS__);

return EXIT_SUCCESS;
}
}
64 changes: 64 additions & 0 deletions tests/system/Commands/CommandOverrideTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
<?php

declare(strict_types=1);

/**
* This file is part of CodeIgniter 4 framework.
*
* (c) CodeIgniter Foundation <[email protected]>
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/

namespace CodeIgniter\Commands;

use CodeIgniter\Test\CIUnitTestCase;
use CodeIgniter\Test\StreamFilterTrait;
use PHPUnit\Framework\Attributes\Group;

/**
* @internal
*/
#[Group('Others')]
final class CommandOverrideTest extends CIUnitTestCase
{
use StreamFilterTrait;

protected function setUp(): void
{
$this->resetServices();

parent::setUp();
}

protected function getBuffer()

Check failure on line 35 in tests/system/Commands/CommandOverrideTest.php

View workflow job for this annotation

GitHub Actions / PHP Static Analysis

Method CodeIgniter\Commands\CommandOverrideTest::getBuffer() has no return type specified.
{
return $this->getStreamFilterBuffer();
}

public function testOverrideListCommands(): void
{
$this->copyListCommands();

command('list');

$this->assertStringContainsString('This is App\Commands\ListCommands', $this->getBuffer());
$this->assertStringNotContainsString('Displays basic usage information.', $this->getBuffer());

$this->deleteListCommands();
}

private function copyListCommands(): void
{
if (! is_dir(APPPATH . 'Commands')) {
mkdir(APPPATH . 'Commands');
}
copy(SUPPORTPATH . '_command/ListCommands.php', APPPATH . 'Commands/ListCommands.php');
}

private function deleteListCommands(): void
{
unlink(APPPATH . 'Commands/ListCommands.php');
}
}

0 comments on commit 8ce24a7

Please sign in to comment.