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

53 lines
1.4 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;
use PHPUnit\Framework\Attributes\Test;
2017-03-24 14:34:18 -05:00
use PHPUnit\Framework\TestCase;
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;
use ShlinkioTest\Shlink\CLI\Util\CliTestUtils;
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
protected function setUp(): void
2016-07-19 11:28:21 -05:00
{
$this->factory = new ApplicationFactory();
}
#[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
],
]);
$sm->setService('foo', CliTestUtils::createCommandMock('foo'));
$sm->setService('bar', CliTestUtils::createCommandMock('bar'));
2016-07-19 11:28:21 -05:00
$instance = ($this->factory)($sm);
2018-11-17 11:40:47 -06:00
2020-10-03 17:35:14 -05:00
self::assertTrue($instance->has('foo'));
self::assertTrue($instance->has('bar'));
self::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
]]);
}
}