shlink/module/CLI/test/Factory/ApplicationFactoryTest.php

68 lines
1.9 KiB
PHP
Raw Normal View History

2016-07-19 11:28:21 -05:00
<?php
2019-10-05 10:26:10 -05:00
2017-10-12 03:13:20 -05:00
declare(strict_types=1);
2016-07-19 11:28:21 -05:00
namespace ShlinkioTest\Shlink\CLI\Factory;
2020-01-01 14:11:53 -06:00
use Laminas\ServiceManager\ServiceManager;
2017-03-24 14:34:18 -05:00
use PHPUnit\Framework\TestCase;
2018-11-17 11:40:47 -06:00
use Prophecy\Argument;
use Prophecy\Prophecy\ObjectProphecy;
2016-07-19 11:28:21 -05:00
use Shlinkio\Shlink\CLI\Factory\ApplicationFactory;
2016-08-15 02:52:44 -05:00
use Shlinkio\Shlink\Core\Options\AppOptions;
2016-07-19 11:28:21 -05:00
use Symfony\Component\Console\Application;
use Symfony\Component\Console\Command\Command;
2016-07-19 11:28:21 -05:00
class ApplicationFactoryTest extends TestCase
{
2019-12-29 15:27:00 -06:00
private ApplicationFactory $factory;
2016-07-19 11:28:21 -05:00
2019-02-16 03:53:45 -06:00
public function setUp(): void
2016-07-19 11:28:21 -05:00
{
$this->factory = new ApplicationFactory();
}
2019-02-17 13:28:34 -06:00
/** @test */
public function allCommandsWhichAreServicesAreAdded(): void
2016-07-19 11:28:21 -05:00
{
$sm = $this->createServiceManager([
'commands' => [
2018-11-17 11:40:47 -06:00
'foo' => 'foo',
'bar' => 'bar',
'baz' => 'baz',
2016-07-19 11:28:21 -05:00
],
]);
2018-11-17 11:40:47 -06:00
$sm->setService('foo', $this->createCommandMock('foo')->reveal());
$sm->setService('bar', $this->createCommandMock('bar')->reveal());
2016-07-19 11:28:21 -05:00
$instance = ($this->factory)($sm);
2018-11-17 11:40:47 -06:00
$this->assertTrue($instance->has('foo'));
$this->assertTrue($instance->has('bar'));
$this->assertFalse($instance->has('baz'));
2016-07-19 11:28:21 -05:00
}
2018-11-17 11:40:47 -06:00
private function createServiceManager(array $config = []): ServiceManager
2016-07-19 11:28:21 -05:00
{
return new ServiceManager(['services' => [
'config' => [
'cli' => $config,
2016-07-19 11:28:21 -05:00
],
2016-08-15 02:52:44 -05:00
AppOptions::class => new AppOptions(),
2016-07-19 11:28:21 -05:00
]]);
}
2018-11-17 11:40:47 -06:00
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([]);
2020-01-01 13:48:31 -06:00
$command->setApplication(Argument::type(Application::class))->willReturn(function (): void {
2018-11-17 11:40:47 -06:00
});
return $command;
}
2016-07-19 11:28:21 -05:00
}