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
Nicolas Grekas a8755cc7d7 Merge branch '3.3' into 3.4
* 3.3:
  [2.7] Fix issues found by PHPStan
  Add php_unit_dedicate_assert to PHPCS
  [WebProfilerBundle] Let fetch() cast URL to string
  improve FormType::getType exception message details
  [Intl] Update ICU data to 60.2
  [Console] fix a bug when you are passing a default value and passing -n would ouput the index
2017-12-20 12:08:06 +01:00

89 lines
2.8 KiB
PHP

<?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'));
$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());
}
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');
}
}