72 lines
2.1 KiB
PHP
72 lines
2.1 KiB
PHP
<?php declare(strict_types=1);
|
|
|
|
/*
|
|
* Copyleft (C) 2017 http://sikofitt.com sikofitt@gmail.com
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
namespace Sikofitt\Tests\Config;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
use Sikofitt\Config\DotConfig;
|
|
use Sikofitt\Config\Loader\Exception\JsonDecodingException;
|
|
|
|
class JsonFileTest extends TestCase
|
|
{
|
|
/**
|
|
* @var DotConfig
|
|
*/
|
|
private $config;
|
|
|
|
/**
|
|
* @var \Composer\Autoload\ClassLoader;
|
|
*/
|
|
private $loader;
|
|
|
|
public function setUp(): void
|
|
{
|
|
$this->loader = require __DIR__.'/../../../../vendor/autoload.php';
|
|
|
|
$this->config = new DotConfig(__DIR__.'/../../../fixtures/config.json');
|
|
|
|
parent::setUp();
|
|
}
|
|
|
|
public function testSuccess(): void
|
|
{
|
|
$arrayConfig['config'] = [
|
|
'value' => 'json',
|
|
'json_test' => [
|
|
'testing1',
|
|
'testing2',
|
|
],
|
|
];
|
|
|
|
$this->assertSame($arrayConfig, $this->config->all());
|
|
$this->assertInternalType('array', $this->config->all());
|
|
}
|
|
|
|
public function testFailure(): void
|
|
{
|
|
if (false === getenv('JSON_TEST') && class_exists(\Webmozart\Json\JsonDecoder::class)) {
|
|
$this->expectException(\Webmozart\Json\DecodingFailedException::class);
|
|
} else {
|
|
$this->expectException(JsonDecodingException::class);
|
|
}
|
|
|
|
$config = new DotConfig(__DIR__.'/../../../fixtures/failure/config.json');
|
|
}
|
|
}
|