1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
declare(strict_types=1); |
4
|
|
|
|
5
|
|
|
namespace App\Tests\Unit; |
6
|
|
|
|
7
|
|
|
use App\Tests\Support\UnitTester; |
8
|
|
|
use Psr\Container\ContainerInterface; |
9
|
|
|
use Symfony\Component\Console\Application; |
10
|
|
|
use Symfony\Component\Console\CommandLoader\ContainerCommandLoader; |
11
|
|
|
use Symfony\Component\Console\Tester\CommandTester; |
12
|
|
|
use Yiisoft\Config\Config; |
13
|
|
|
use Yiisoft\Config\ConfigPaths; |
14
|
|
|
use Yiisoft\Di\Container; |
15
|
|
|
use Yiisoft\Di\ContainerConfig; |
16
|
|
|
use Yiisoft\Yii\Console\ExitCode; |
17
|
|
|
use Yiisoft\Yii\Runner\ConfigFactory; |
18
|
|
|
|
19
|
|
|
use function dirname; |
20
|
|
|
|
21
|
|
|
final class HelloCest |
22
|
|
|
{ |
23
|
|
|
private ContainerInterface $container; |
24
|
|
|
|
25
|
|
|
public function _before(UnitTester $I): void |
|
|
|
|
26
|
|
|
{ |
27
|
|
|
$config = $this->getConfig(); |
28
|
|
|
|
29
|
|
|
$containerConfig = ContainerConfig::create() |
30
|
|
|
->withDefinitions($config->get('console')) |
31
|
|
|
->withProviders($config->get('providers')); |
32
|
|
|
$this->container = new Container($containerConfig); |
33
|
|
|
} |
34
|
|
|
|
35
|
|
|
public function testExecute(UnitTester $I): void |
36
|
|
|
{ |
37
|
|
|
$app = new Application(); |
38
|
|
|
$params = $this |
39
|
|
|
->getConfig() |
40
|
|
|
->get('params'); |
41
|
|
|
|
42
|
|
|
$loader = new ContainerCommandLoader( |
43
|
|
|
$this->container, |
44
|
|
|
$params['yiisoft/yii-console']['commands'] |
45
|
|
|
); |
46
|
|
|
|
47
|
|
|
$app->setCommandLoader($loader); |
48
|
|
|
|
49
|
|
|
$command = $app->find('hello'); |
50
|
|
|
|
51
|
|
|
$commandCreate = new CommandTester($command); |
52
|
|
|
|
53
|
|
|
$commandCreate->setInputs(['yes']); |
54
|
|
|
|
55
|
|
|
$I->assertSame(ExitCode::OK, $commandCreate->execute([])); |
56
|
|
|
|
57
|
|
|
$output = $commandCreate->getDisplay(true); |
58
|
|
|
|
59
|
|
|
$I->assertStringContainsString('Hello!', $output); |
60
|
|
|
} |
61
|
|
|
|
62
|
|
|
private function getConfig(): Config |
63
|
|
|
{ |
64
|
|
|
return ConfigFactory::create(new ConfigPaths(dirname(__DIR__, 2), 'config'), null); |
65
|
|
|
} |
66
|
|
|
} |
67
|
|
|
|
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.