2016-07-28 13:49:27 -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-28 13:49:27 -05:00
|
|
|
namespace ShlinkioTest\Shlink\CLI;
|
|
|
|
|
2020-11-22 11:11:31 -06:00
|
|
|
use Laminas\ServiceManager\AbstractFactory\ConfigAbstractFactory;
|
2023-02-09 13:42:18 -06:00
|
|
|
use PHPUnit\Framework\Attributes\Test;
|
2017-03-24 14:34:18 -05:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2016-07-28 13:49:27 -05:00
|
|
|
use Shlinkio\Shlink\CLI\ConfigProvider;
|
|
|
|
|
|
|
|
class ConfigProviderTest extends TestCase
|
|
|
|
{
|
2019-12-29 15:27:00 -06:00
|
|
|
private ConfigProvider $configProvider;
|
2016-07-28 13:49:27 -05:00
|
|
|
|
2022-09-11 05:02:49 -05:00
|
|
|
protected function setUp(): void
|
2016-07-28 13:49:27 -05:00
|
|
|
{
|
|
|
|
$this->configProvider = new ConfigProvider();
|
|
|
|
}
|
|
|
|
|
2023-02-09 13:42:18 -06:00
|
|
|
#[Test]
|
2020-10-03 17:35:29 -05:00
|
|
|
public function configIsProperlyReturned(): void
|
2016-07-28 13:49:27 -05:00
|
|
|
{
|
2018-11-18 09:02:52 -06:00
|
|
|
$config = ($this->configProvider)();
|
2016-07-28 13:49:27 -05:00
|
|
|
|
2020-11-22 11:11:31 -06:00
|
|
|
self::assertCount(3, $config);
|
2020-10-03 17:35:14 -05:00
|
|
|
self::assertArrayHasKey('cli', $config);
|
|
|
|
self::assertArrayHasKey('dependencies', $config);
|
2020-11-22 11:11:31 -06:00
|
|
|
self::assertArrayHasKey(ConfigAbstractFactory::class, $config);
|
2016-07-28 13:49:27 -05:00
|
|
|
}
|
|
|
|
}
|