1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\DependencyInjection\Tests\Loader\Configurator;
use PHPUnit\Framework\TestCase;
use Symfony\Component\DependencyInjection\Loader\Configurator\EnvConfigurator;
use Symfony\Component\DependencyInjection\Tests\Fixtures\StringBackedEnum;
final class EnvConfiguratorTest extends TestCase
{
#[\PHPUnit\Framework\Attributes\DataProvider('provide')]
public function test(string $expected, EnvConfigurator $envConfigurator)
{
$this->assertSame($expected, (string) $envConfigurator);
}
public static function provide(): iterable
{
yield ['%env(FOO)%', new EnvConfigurator('FOO')];
yield ['%env(string:FOO)%', new EnvConfigurator('string:FOO')];
yield ['%env(string:FOO)%', (new EnvConfigurator('FOO'))->string()];
yield ['%env(key:path:url:FOO)%', (new EnvConfigurator('FOO'))->url()->key('path')];
yield ['%env(default:fallback:bar:arg1:FOO)%', (new EnvConfigurator('FOO'))->custom('bar', 'arg1')->default('fallback')];
yield ['%env(my_processor:my_argument:FOO)%', (new EnvConfigurator('FOO'))->myProcessor('my_argument')];
yield ['%env(enum:'.StringBackedEnum::class.':FOO)%', (new EnvConfigurator('FOO'))->enum(StringBackedEnum::class)];
}
}
|