. */ 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'); } }