mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-24 21:58:40 +03:00
69 lines
2 KiB
PHP
69 lines
2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ShlinkioTest\Shlink\CLI\Factory;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
use Prophecy\Argument;
|
|
use Prophecy\Prophecy\ObjectProphecy;
|
|
use Shlinkio\Shlink\CLI\Factory\ApplicationFactory;
|
|
use Shlinkio\Shlink\Core\Options\AppOptions;
|
|
use Symfony\Component\Console\Application;
|
|
use Symfony\Component\Console\Command\Command;
|
|
use Zend\ServiceManager\ServiceManager;
|
|
|
|
class ApplicationFactoryTest extends TestCase
|
|
{
|
|
/** @var ApplicationFactory */
|
|
private $factory;
|
|
|
|
public function setUp(): void
|
|
{
|
|
$this->factory = new ApplicationFactory();
|
|
}
|
|
|
|
/** @test */
|
|
public function allCommandsWhichAreServicesAreAdded(): void
|
|
{
|
|
$sm = $this->createServiceManager([
|
|
'commands' => [
|
|
'foo' => 'foo',
|
|
'bar' => 'bar',
|
|
'baz' => 'baz',
|
|
],
|
|
]);
|
|
$sm->setService('foo', $this->createCommandMock('foo')->reveal());
|
|
$sm->setService('bar', $this->createCommandMock('bar')->reveal());
|
|
|
|
/** @var Application $instance */
|
|
$instance = ($this->factory)($sm);
|
|
|
|
$this->assertTrue($instance->has('foo'));
|
|
$this->assertTrue($instance->has('bar'));
|
|
$this->assertFalse($instance->has('baz'));
|
|
}
|
|
|
|
private function createServiceManager(array $config = []): ServiceManager
|
|
{
|
|
return new ServiceManager(['services' => [
|
|
'config' => [
|
|
'cli' => $config,
|
|
],
|
|
AppOptions::class => new AppOptions(),
|
|
]]);
|
|
}
|
|
|
|
private function createCommandMock(string $name): ObjectProphecy
|
|
{
|
|
$command = $this->prophesize(Command::class);
|
|
$command->getName()->willReturn($name);
|
|
$command->getDefinition()->willReturn($name);
|
|
$command->isEnabled()->willReturn(true);
|
|
$command->getAliases()->willReturn([]);
|
|
$command->setApplication(Argument::type(Application::class))->willReturn(function () {
|
|
});
|
|
|
|
return $command;
|
|
}
|
|
}
|