2016-07-19 18:28:21 +02:00
|
|
|
<?php
|
2019-10-05 17:26:10 +02:00
|
|
|
|
2017-10-12 10:13:20 +02:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2016-07-19 18:28:21 +02:00
|
|
|
namespace ShlinkioTest\Shlink\CLI\Factory;
|
|
|
|
|
2020-01-01 21:11:53 +01:00
|
|
|
use Laminas\ServiceManager\ServiceManager;
|
2017-03-24 20:34:18 +01:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2016-07-19 18:28:21 +02:00
|
|
|
use Shlinkio\Shlink\CLI\Factory\ApplicationFactory;
|
2016-08-15 09:52:44 +02:00
|
|
|
use Shlinkio\Shlink\Core\Options\AppOptions;
|
2021-04-08 13:12:37 +02:00
|
|
|
use ShlinkioTest\Shlink\CLI\CliTestUtilsTrait;
|
2019-02-26 22:56:43 +01:00
|
|
|
|
2016-07-19 18:28:21 +02:00
|
|
|
class ApplicationFactoryTest extends TestCase
|
|
|
|
{
|
2021-04-08 13:12:37 +02:00
|
|
|
use CliTestUtilsTrait;
|
2020-11-02 11:50:19 +01:00
|
|
|
|
2019-12-29 22:27:00 +01:00
|
|
|
private ApplicationFactory $factory;
|
2016-07-19 18:28:21 +02:00
|
|
|
|
2022-09-11 12:02:49 +02:00
|
|
|
protected function setUp(): void
|
2016-07-19 18:28:21 +02:00
|
|
|
{
|
|
|
|
$this->factory = new ApplicationFactory();
|
|
|
|
}
|
|
|
|
|
2019-02-17 20:28:34 +01:00
|
|
|
/** @test */
|
2019-08-04 11:16:46 +02:00
|
|
|
public function allCommandsWhichAreServicesAreAdded(): void
|
2016-07-19 18:28:21 +02:00
|
|
|
{
|
|
|
|
$sm = $this->createServiceManager([
|
|
|
|
'commands' => [
|
2018-11-17 18:40:47 +01:00
|
|
|
'foo' => 'foo',
|
|
|
|
'bar' => 'bar',
|
|
|
|
'baz' => 'baz',
|
2016-07-19 18:28:21 +02:00
|
|
|
],
|
|
|
|
]);
|
2022-10-22 12:46:16 +02:00
|
|
|
$sm->setService('foo', $this->createCommandMock('foo'));
|
|
|
|
$sm->setService('bar', $this->createCommandMock('bar'));
|
2016-07-19 18:28:21 +02:00
|
|
|
|
2019-08-04 11:16:46 +02:00
|
|
|
$instance = ($this->factory)($sm);
|
2018-11-17 18:40:47 +01:00
|
|
|
|
2020-10-04 00:35:14 +02:00
|
|
|
self::assertTrue($instance->has('foo'));
|
|
|
|
self::assertTrue($instance->has('bar'));
|
|
|
|
self::assertFalse($instance->has('baz'));
|
2016-07-19 18:28:21 +02:00
|
|
|
}
|
|
|
|
|
2018-11-17 18:40:47 +01:00
|
|
|
private function createServiceManager(array $config = []): ServiceManager
|
2016-07-19 18:28:21 +02:00
|
|
|
{
|
|
|
|
return new ServiceManager(['services' => [
|
|
|
|
'config' => [
|
2019-09-12 08:09:17 +02:00
|
|
|
'cli' => $config,
|
2016-07-19 18:28:21 +02:00
|
|
|
],
|
2016-08-15 09:52:44 +02:00
|
|
|
AppOptions::class => new AppOptions(),
|
2016-07-19 18:28:21 +02:00
|
|
|
]]);
|
|
|
|
}
|
|
|
|
}
|