Skip to content

Commit cce9850

Browse files
committed
chore: add more tests for run group commadn
1 parent 1119e7f commit cce9850

File tree

3 files changed

+25
-13
lines changed

3 files changed

+25
-13
lines changed

src/Application.php

+5-6
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
use function implode;
3030
use function is_object;
3131
use function is_string;
32-
use function method_exists;
3332
use function str_replace;
3433
use function strlen;
3534
use function strpos;
@@ -404,14 +403,13 @@ protected function createController(array $info): Controller
404403
$handler = $info['handler']; // The controller class or object
405404
if (is_string($handler)) {
406405
$class = $handler;
407-
if (!class_exists($class)) {
408-
Helper::throwInvalidArgument('The console controller class [%s] not exists!', $class);
409-
}
406+
Assert::isTrue(class_exists($class), "The console controller class '$class' not exists!");
410407

411-
$handler = new $class($this->input, $this->output);
408+
// create group object
409+
$handler = new $class();
412410
}
413411

414-
if (!($handler instanceof Controller)) {
412+
if (!$handler instanceof Controller) {
415413
Helper::throwInvalidArgument(
416414
'The console controller class [%s] must instanceof the %s',
417415
$handler,
@@ -422,6 +420,7 @@ protected function createController(array $info): Controller
422420
// force set name and description
423421
$handler::setName($group);
424422
$handler->setApp($this);
423+
$handler->setInputOutput($this->input, $this->output);
425424

426425
// set input name
427426
if ($inputName = $info['name'] ?? '') {

test/ApplicationTest.php

+18-5
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public function testAddCommandError(): void
8989
}
9090
}
9191

92-
public function testRunCommand_class(): void
92+
public function testAddCommand_class_run(): void
9393
{
9494
$app = $this->newApp([
9595
'./app',
@@ -101,7 +101,7 @@ public function testRunCommand_class(): void
101101
self::assertSame('Inhere\ConsoleTest\TestCommand::execute', $ret);
102102
}
103103

104-
public function testRunCommand_callback(): void
104+
public function testAddCommand_callback_run(): void
105105
{
106106
$app = $this->newApp([
107107
'./app',
@@ -116,14 +116,14 @@ public function testRunCommand_callback(): void
116116
self::assertSame('hello', $ret);
117117
}
118118

119-
public function testRun_Command_object(): void
119+
public function testAddCommand_object_run(): void
120120
{
121121
$app = $this->newApp([
122122
'./app',
123123
'test'
124124
]);
125125

126-
$app->addCommand('test', new TestCommand());
126+
$app->command('test', new TestCommand());
127127

128128
$ret = $app->run(false);
129129
self::assertSame('Inhere\ConsoleTest\TestCommand::execute', $ret);
@@ -165,7 +165,7 @@ public function testAddControllerError(): void
165165
}
166166
}
167167

168-
public function testRunController(): void
168+
public function testAdd_Controller_class_Run(): void
169169
{
170170
$app = $this->newApp([
171171
'./app',
@@ -178,6 +178,19 @@ public function testRunController(): void
178178
self::assertSame('Inhere\ConsoleTest\TestController::demoCommand', $ret);
179179
}
180180

181+
public function testAdd_Controller_object_Run(): void
182+
{
183+
$app = $this->newApp([
184+
'./app',
185+
'test:demo'
186+
]);
187+
188+
$app->controller('test', new TestController);
189+
190+
$ret = $app->run(false);
191+
self::assertSame('Inhere\ConsoleTest\TestController::demoCommand', $ret);
192+
}
193+
181194
public function testTriggerEvent(): void
182195
{
183196
$app = $this->newApp([

test/TestController.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ class TestController extends Controller
2525
/**
2626
* this is an demo command in test
2727
*
28-
* @return mixed
28+
* @return string
2929
*/
30-
public function demoCommand(): mixed
30+
public function demoCommand(): string
3131
{
3232
return __METHOD__;
3333
}

0 commit comments

Comments
 (0)