mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-22 17:45:40 +03:00
5165ea265d
* refactor * fix: case-sensitive config from env, fix #2935 * lowercase all config section and keys * test: add test for case-insensitivity
38 lines
1.4 KiB
PHP
38 lines
1.4 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace RssBridge\Tests;
|
|
|
|
use Configuration;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
final class ConfigurationTest extends TestCase
|
|
{
|
|
public function testValueFromDefaultConfig()
|
|
{
|
|
Configuration::loadConfiguration();
|
|
$this->assertSame(null, Configuration::getConfig('foobar', ''));
|
|
$this->assertSame(null, Configuration::getConfig('foo', 'bar'));
|
|
$this->assertSame(null, Configuration::getConfig('cache', ''));
|
|
$this->assertSame('UTC', Configuration::getConfig('system', 'timezone'));
|
|
}
|
|
|
|
public function testValueFromCustomConfig()
|
|
{
|
|
Configuration::loadConfiguration(['system' => ['timezone' => 'Europe/Berlin']]);
|
|
$this->assertSame('Europe/Berlin', Configuration::getConfig('system', 'timezone'));
|
|
}
|
|
|
|
public function testValueFromEnv()
|
|
{
|
|
putenv('RSSBRIDGE_system_timezone=Europe/Berlin');
|
|
putenv('RSSBRIDGE_TwitterV2Bridge_twitterv2apitoken=aaa');
|
|
putenv('RSSBRIDGE_SQLiteCache_file=bbb');
|
|
Configuration::loadConfiguration([], getenv());
|
|
$this->assertSame('Europe/Berlin', Configuration::getConfig('system', 'timezone'));
|
|
$this->assertSame('aaa', Configuration::getConfig('TwitterV2Bridge', 'twitterv2apitoken'));
|
|
$this->assertSame('bbb', Configuration::getConfig('SQLiteCache', 'file'));
|
|
$this->assertSame('bbb', Configuration::getConfig('sqlitecache', 'file'));
|
|
}
|
|
}
|