engelsystem/tests/Unit/Config/ConfigServiceProviderTest.php

155 lines
5.0 KiB
PHP
Raw Normal View History

2017-10-31 13:40:13 +01:00
<?php
namespace Engelsystem\Test\Unit\Config;
2017-10-31 13:40:13 +01:00
use DMS\PHPUnitExtensions\ArraySubset\ArraySubsetAsserts;
2017-10-31 13:40:13 +01:00
use Engelsystem\Application;
use Engelsystem\Config\Config;
use Engelsystem\Config\ConfigServiceProvider;
use Engelsystem\Models\EventConfig;
2017-10-31 14:15:19 +01:00
use Engelsystem\Test\Unit\ServiceProviderTest;
use Exception;
use Illuminate\Database\Eloquent\Builder as EloquentBuilder;
use Illuminate\Database\QueryException;
use PHPUnit\Framework\MockObject\MockObject;
2017-10-31 13:40:13 +01:00
2017-10-31 14:15:19 +01:00
class ConfigServiceProviderTest extends ServiceProviderTest
2017-10-31 13:40:13 +01:00
{
use ArraySubsetAsserts;
2017-10-31 13:40:13 +01:00
/**
* @covers \Engelsystem\Config\ConfigServiceProvider::getConfigPath
* @covers \Engelsystem\Config\ConfigServiceProvider::register
2017-10-31 13:40:13 +01:00
*/
public function testRegister(): void
2017-10-31 13:40:13 +01:00
{
/** @var Application|MockObject $app */
/** @var Config|MockObject $config */
list($app, $config) = $this->getConfiguredApp(__DIR__ . '/../../../config');
2017-10-31 13:40:13 +01:00
2020-12-20 14:52:29 +01:00
$this->setExpects($config, 'set', null, null, $this->exactly(3));
$config->expects($this->exactly(4))
->method('get')
->with(null)
2020-12-20 14:52:29 +01:00
->willReturnOnConsecutiveCalls([], [], [], ['lor' => 'em']);
2017-10-31 13:40:13 +01:00
$configFile = __DIR__ . '/../../../config/config.php';
$configExists = file_exists($configFile);
if (!$configExists) {
file_put_contents($configFile, '<?php return ["lor"=>"em"];');
}
2017-10-31 13:40:13 +01:00
$serviceProvider = new ConfigServiceProvider($app);
$serviceProvider->register();
if (!$configExists) {
unlink($configFile);
}
2017-10-31 13:40:13 +01:00
}
/**
* @covers \Engelsystem\Config\ConfigServiceProvider::register
*/
public function testRegisterException(): void
{
/** @var Application|MockObject $app */
/** @var Config|MockObject $config */
list($app, $config) = $this->getConfiguredApp(__DIR__ . '/not_existing');
$this->setExpects($config, 'set', null, null, $this->never());
$this->setExpects($config, 'get', [null], []);
$this->expectException(Exception::class);
$serviceProvider = new ConfigServiceProvider($app);
$serviceProvider->register();
}
/**
* @covers \Engelsystem\Config\ConfigServiceProvider::__construct
* @covers \Engelsystem\Config\ConfigServiceProvider::boot
*/
public function testBoot(): void
{
$app = $this->getApp(['get']);
/** @var EventConfig|MockObject $eventConfig */
$eventConfig = $this->createMock(EventConfig::class);
/** @var EloquentBuilder|MockObject $eloquentBuilder */
$eloquentBuilder = $this->getMockBuilder(EloquentBuilder::class)
->disableOriginalConstructor()
->getMock();
$config = new Config(['foo' => 'bar', 'lorem' => ['ipsum' => 'dolor', 'bla' => 'foo']]);
$configs = [
new EventConfig(['name' => 'test', 'value' => 'testing']),
new EventConfig(['name' => 'lorem', 'value' => ['ipsum' => 'tester']]),
];
$returnValue = $eloquentBuilder;
$eventConfig
->expects($this->exactly(3))
->method('newQuery')
->willReturnCallback(function () use (&$returnValue) {
if ($returnValue instanceof EloquentBuilder) {
$return = $returnValue;
$returnValue = null;
return $return;
}
if (is_null($returnValue)) {
throw new QueryException('', [], new Exception());
}
return null;
});
$this->setExpects($eloquentBuilder, 'get', [['name', 'value']], $configs);
$this->setExpects($app, 'get', ['config'], $config, $this->exactly(3));
$serviceProvider = new ConfigServiceProvider($app);
$serviceProvider->boot();
$serviceProvider = new ConfigServiceProvider($app, $eventConfig);
$serviceProvider->boot();
$serviceProvider->boot();
$serviceProvider->boot();
$this->assertArraySubset(
[
'foo' => 'bar',
'lorem' => [
'ipsum' => 'tester',
'bla' => 'foo',
],
'test' => 'testing',
],
$config->get(null)
);
}
/**
* @return Application[]|Config[]
*/
protected function getConfiguredApp(string $configPath): array
{
/** @var Config|MockObject $config */
$config = $this->getMockBuilder(Config::class)
->getMock();
$app = $this->getApp(['make', 'instance', 'get']);
Application::setInstance($app);
$this->setExpects($app, 'make', [Config::class], $config);
$this->setExpects($app, 'get', ['path.config'], $configPath, $this->atLeastOnce());
$app->expects($this->exactly(2))
->method('instance')
->withConsecutive(
[Config::class, $config],
['config', $config]
);
return [$app, $config];
}
2017-10-31 13:40:13 +01:00
}