This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/DependencyInjection/Tests/Compiler/RegisterEnvVarProcessorsPassTest.php

89 lines
2.8 KiB
PHP
Raw Normal View History

2016-10-22 17:25:15 +01:00
<?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\Compiler;
use PHPUnit\Framework\TestCase;
use Symfony\Component\DependencyInjection\Compiler\RegisterEnvVarProcessorsPass;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\EnvVarProcessorInterface;
class RegisterEnvVarProcessorsPassTest extends TestCase
{
public function testSimpleProcessor()
{
$container = new ContainerBuilder();
$container->register('foo', SimpleProcessor::class)->addTag('container.env_var_processor');
(new RegisterEnvVarProcessorsPass())->process($container);
$this->assertTrue($container->has('container.env_var_processors_locator'));
$this->assertInstanceOf(SimpleProcessor::class, $container->get('container.env_var_processors_locator')->get('foo'));
2016-10-22 17:25:15 +01:00
$expected = array(
'foo' => array('string'),
'base64' => array('string'),
'bool' => array('bool'),
'const' => array('bool', 'int', 'float', 'string', 'array'),
'file' => array('string'),
'float' => array('float'),
'int' => array('int'),
'json' => array('array'),
'resolve' => array('string'),
'string' => array('string'),
);
$this->assertSame($expected, $container->getParameterBag()->getProvidedTypes());
2016-10-22 17:25:15 +01:00
}
public function testNoProcessor()
{
$container = new ContainerBuilder();
(new RegisterEnvVarProcessorsPass())->process($container);
$this->assertFalse($container->has('container.env_var_processors_locator'));
}
/**
* @expectedException \Symfony\Component\DependencyInjection\Exception\InvalidArgumentException
* @expectedExceptionMessage Invalid type "foo" returned by "Symfony\Component\DependencyInjection\Tests\Compiler\BadProcessor::getProvidedTypes()", expected one of "array", "bool", "float", "int", "string".
*/
public function testBadProcessor()
{
$container = new ContainerBuilder();
$container->register('foo', BadProcessor::class)->addTag('container.env_var_processor');
(new RegisterEnvVarProcessorsPass())->process($container);
}
}
class SimpleProcessor implements EnvVarProcessorInterface
{
public function getEnv($prefix, $name, \Closure $getEnv)
{
return $getEnv($name);
}
public static function getProvidedTypes()
{
return array('foo' => 'string');
}
}
class BadProcessor extends SimpleProcessor
{
public static function getProvidedTypes()
{
return array('foo' => 'string|foo');
}
}