123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356 |
- <?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;
- use PHPUnit\Framework\TestCase;
- use Symfony\Component\Config\FileLocator;
- use Symfony\Component\Config\Loader\LoaderResolver;
- use Symfony\Component\DependencyInjection\ContainerBuilder;
- use Symfony\Component\DependencyInjection\Loader\IniFileLoader;
- use Symfony\Component\DependencyInjection\Loader\PhpFileLoader;
- use Symfony\Component\DependencyInjection\Loader\XmlFileLoader;
- use Symfony\Component\DependencyInjection\Loader\YamlFileLoader;
- use Symfony\Component\DependencyInjection\Reference;
- use Symfony\Component\ExpressionLanguage\Expression;
- class YamlFileLoaderTest extends TestCase
- {
- protected static $fixturesPath;
- public static function setUpBeforeClass()
- {
- self::$fixturesPath = realpath(__DIR__.'/../Fixtures/');
- require_once self::$fixturesPath.'/includes/foo.php';
- require_once self::$fixturesPath.'/includes/ProjectExtension.php';
- }
- /**
- * @expectedException \Symfony\Component\DependencyInjection\Exception\InvalidArgumentException
- * @expectedExceptionMessageRegExp /The file ".+" does not exist./
- */
- public function testLoadUnExistFile()
- {
- $loader = new YamlFileLoader(new ContainerBuilder(), new FileLocator(self::$fixturesPath.'/ini'));
- $r = new \ReflectionObject($loader);
- $m = $r->getMethod('loadFile');
- $m->setAccessible(true);
- $m->invoke($loader, 'foo.yml');
- }
- /**
- * @expectedException \Symfony\Component\DependencyInjection\Exception\InvalidArgumentException
- * @expectedExceptionMessageRegExp /The file ".+" does not contain valid YAML./
- */
- public function testLoadInvalidYamlFile()
- {
- $path = self::$fixturesPath.'/ini';
- $loader = new YamlFileLoader(new ContainerBuilder(), new FileLocator($path));
- $r = new \ReflectionObject($loader);
- $m = $r->getMethod('loadFile');
- $m->setAccessible(true);
- $m->invoke($loader, $path.'/parameters.ini');
- }
- /**
- * @dataProvider provideInvalidFiles
- * @expectedException \Symfony\Component\DependencyInjection\Exception\InvalidArgumentException
- */
- public function testLoadInvalidFile($file)
- {
- $loader = new YamlFileLoader(new ContainerBuilder(), new FileLocator(self::$fixturesPath.'/yaml'));
- $loader->load($file.'.yml');
- }
- public function provideInvalidFiles()
- {
- return array(
- array('bad_parameters'),
- array('bad_imports'),
- array('bad_import'),
- array('bad_services'),
- array('bad_service'),
- array('bad_calls'),
- array('bad_format'),
- array('nonvalid1'),
- array('nonvalid2'),
- );
- }
- public function testLoadParameters()
- {
- $container = new ContainerBuilder();
- $loader = new YamlFileLoader($container, new FileLocator(self::$fixturesPath.'/yaml'));
- $loader->load('services2.yml');
- $this->assertEquals(array('foo' => 'bar', 'mixedcase' => array('MixedCaseKey' => 'value'), 'values' => array(true, false, 0, 1000.3), 'bar' => 'foo', 'escape' => '@escapeme', 'foo_bar' => new Reference('foo_bar')), $container->getParameterBag()->all(), '->load() converts YAML keys to lowercase');
- }
- public function testLoadImports()
- {
- $container = new ContainerBuilder();
- $resolver = new LoaderResolver(array(
- new IniFileLoader($container, new FileLocator(self::$fixturesPath.'/ini')),
- new XmlFileLoader($container, new FileLocator(self::$fixturesPath.'/xml')),
- new PhpFileLoader($container, new FileLocator(self::$fixturesPath.'/php')),
- $loader = new YamlFileLoader($container, new FileLocator(self::$fixturesPath.'/yaml')),
- ));
- $loader->setResolver($resolver);
- $loader->load('services4.yml');
- $actual = $container->getParameterBag()->all();
- $expected = array('foo' => 'bar', 'values' => array(true, false), 'bar' => '%foo%', 'escape' => '@escapeme', 'foo_bar' => new Reference('foo_bar'), 'mixedcase' => array('MixedCaseKey' => 'value'), 'imported_from_ini' => true, 'imported_from_xml' => true);
- $this->assertEquals(array_keys($expected), array_keys($actual), '->load() imports and merges imported files');
- // Bad import throws no exception due to ignore_errors value.
- $loader->load('services4_bad_import.yml');
- }
- /**
- * @group legacy
- */
- public function testLegacyLoadServices()
- {
- $container = new ContainerBuilder();
- $loader = new YamlFileLoader($container, new FileLocator(self::$fixturesPath.'/yaml'));
- $loader->load('legacy-services6.yml');
- $services = $container->getDefinitions();
- $this->assertEquals('FooClass', $services['constructor']->getClass());
- $this->assertEquals('getInstance', $services['constructor']->getFactoryMethod());
- $this->assertEquals('BazClass', $services['factory_service']->getClass());
- $this->assertEquals('baz_factory', $services['factory_service']->getFactoryService());
- $this->assertEquals('getInstance', $services['factory_service']->getFactoryMethod());
- $this->assertEquals('container', $services['scope.container']->getScope());
- $this->assertEquals('custom', $services['scope.custom']->getScope());
- $this->assertEquals('prototype', $services['scope.prototype']->getScope());
- $this->assertTrue($services['request']->isSynthetic(), '->load() parses the synthetic flag');
- $this->assertTrue($services['request']->isSynchronized(), '->load() parses the synchronized flag');
- $this->assertTrue($services['request']->isLazy(), '->load() parses the lazy flag');
- $this->assertNull($services['request']->getDecoratedService());
- }
- public function testLoadServices()
- {
- $container = new ContainerBuilder();
- $loader = new YamlFileLoader($container, new FileLocator(self::$fixturesPath.'/yaml'));
- $loader->load('services6.yml');
- $services = $container->getDefinitions();
- $this->assertArrayHasKey('foo', $services, '->load() parses service elements');
- $this->assertFalse($services['not_shared']->isShared(), '->load() parses the shared flag');
- $this->assertInstanceOf('Symfony\\Component\\DependencyInjection\\Definition', $services['foo'], '->load() converts service element to Definition instances');
- $this->assertEquals('FooClass', $services['foo']->getClass(), '->load() parses the class attribute');
- $this->assertEquals('%path%/foo.php', $services['file']->getFile(), '->load() parses the file tag');
- $this->assertEquals(array('foo', new Reference('foo'), array(true, false)), $services['arguments']->getArguments(), '->load() parses the argument tags');
- $this->assertEquals('sc_configure', $services['configurator1']->getConfigurator(), '->load() parses the configurator tag');
- $this->assertEquals(array(new Reference('baz'), 'configure'), $services['configurator2']->getConfigurator(), '->load() parses the configurator tag');
- $this->assertEquals(array('BazClass', 'configureStatic'), $services['configurator3']->getConfigurator(), '->load() parses the configurator tag');
- $this->assertEquals(array(array('setBar', array()), array('setBar', array()), array('setBar', array(new Expression('service("foo").foo() ~ (container.hasParameter("foo") ? parameter("foo") : "default")')))), $services['method_call1']->getMethodCalls(), '->load() parses the method_call tag');
- $this->assertEquals(array(array('setBar', array('foo', new Reference('foo'), array(true, false)))), $services['method_call2']->getMethodCalls(), '->load() parses the method_call tag');
- $this->assertEquals('factory', $services['new_factory1']->getFactory(), '->load() parses the factory tag');
- $this->assertEquals(array(new Reference('baz'), 'getClass'), $services['new_factory2']->getFactory(), '->load() parses the factory tag');
- $this->assertEquals(array('BazClass', 'getInstance'), $services['new_factory3']->getFactory(), '->load() parses the factory tag');
- $aliases = $container->getAliases();
- $this->assertArrayHasKey('alias_for_foo', $aliases, '->load() parses aliases');
- $this->assertEquals('foo', (string) $aliases['alias_for_foo'], '->load() parses aliases');
- $this->assertTrue($aliases['alias_for_foo']->isPublic());
- $this->assertArrayHasKey('another_alias_for_foo', $aliases);
- $this->assertEquals('foo', (string) $aliases['another_alias_for_foo']);
- $this->assertFalse($aliases['another_alias_for_foo']->isPublic());
- $this->assertEquals(array('decorated', null, 0), $services['decorator_service']->getDecoratedService());
- $this->assertEquals(array('decorated', 'decorated.pif-pouf', 0), $services['decorator_service_with_name']->getDecoratedService());
- $this->assertEquals(array('decorated', 'decorated.pif-pouf', 5), $services['decorator_service_with_name_and_priority']->getDecoratedService());
- }
- public function testLoadFactoryShortSyntax()
- {
- $container = new ContainerBuilder();
- $loader = new YamlFileLoader($container, new FileLocator(self::$fixturesPath.'/yaml'));
- $loader->load('services14.yml');
- $services = $container->getDefinitions();
- $this->assertEquals(array(new Reference('baz'), 'getClass'), $services['factory']->getFactory(), '->load() parses the factory tag with service:method');
- $this->assertEquals(array('FooBacFactory', 'createFooBar'), $services['factory_with_static_call']->getFactory(), '->load() parses the factory tag with Class::method');
- }
- public function testExtensions()
- {
- $container = new ContainerBuilder();
- $container->registerExtension(new \ProjectExtension());
- $loader = new YamlFileLoader($container, new FileLocator(self::$fixturesPath.'/yaml'));
- $loader->load('services10.yml');
- $container->compile();
- $services = $container->getDefinitions();
- $parameters = $container->getParameterBag()->all();
- $this->assertArrayHasKey('project.service.bar', $services, '->load() parses extension elements');
- $this->assertArrayHasKey('project.parameter.bar', $parameters, '->load() parses extension elements');
- $this->assertEquals('BAR', $services['project.service.foo']->getClass(), '->load() parses extension elements');
- $this->assertEquals('BAR', $parameters['project.parameter.foo'], '->load() parses extension elements');
- try {
- $loader->load('services11.yml');
- $this->fail('->load() throws an InvalidArgumentException if the tag is not valid');
- } catch (\Exception $e) {
- $this->assertInstanceOf('\InvalidArgumentException', $e, '->load() throws an InvalidArgumentException if the tag is not valid');
- $this->assertStringStartsWith('There is no extension able to load the configuration for "foobarfoobar" (in', $e->getMessage(), '->load() throws an InvalidArgumentException if the tag is not valid');
- }
- }
- public function testExtensionWithNullConfig()
- {
- $container = new ContainerBuilder();
- $container->registerExtension(new \ProjectExtension());
- $loader = new YamlFileLoader($container, new FileLocator(self::$fixturesPath.'/yaml'));
- $loader->load('null_config.yml');
- $container->compile();
- $this->assertSame(array(null), $container->getParameter('project.configs'));
- }
- public function testSupports()
- {
- $loader = new YamlFileLoader(new ContainerBuilder(), new FileLocator());
- $this->assertTrue($loader->supports('foo.yml'), '->supports() returns true if the resource is loadable');
- $this->assertTrue($loader->supports('foo.yaml'), '->supports() returns true if the resource is loadable');
- $this->assertFalse($loader->supports('foo.foo'), '->supports() returns true if the resource is loadable');
- }
- public function testNonArrayTagsThrowsException()
- {
- $loader = new YamlFileLoader(new ContainerBuilder(), new FileLocator(self::$fixturesPath.'/yaml'));
- try {
- $loader->load('badtag1.yml');
- $this->fail('->load() should throw an exception when the tags key of a service is not an array');
- } catch (\Exception $e) {
- $this->assertInstanceOf('Symfony\Component\DependencyInjection\Exception\InvalidArgumentException', $e, '->load() throws an InvalidArgumentException if the tags key is not an array');
- $this->assertStringStartsWith('Parameter "tags" must be an array for service', $e->getMessage(), '->load() throws an InvalidArgumentException if the tags key is not an array');
- }
- }
- /**
- * @expectedException \Symfony\Component\DependencyInjection\Exception\InvalidArgumentException
- * @expectedExceptionMessage A "tags" entry must be an array for service
- */
- public function testNonArrayTagThrowsException()
- {
- $loader = new YamlFileLoader(new ContainerBuilder(), new FileLocator(self::$fixturesPath.'/yaml'));
- $loader->load('badtag4.yml');
- }
- public function testTagWithoutNameThrowsException()
- {
- $loader = new YamlFileLoader(new ContainerBuilder(), new FileLocator(self::$fixturesPath.'/yaml'));
- try {
- $loader->load('badtag2.yml');
- $this->fail('->load() should throw an exception when a tag is missing the name key');
- } catch (\Exception $e) {
- $this->assertInstanceOf('Symfony\Component\DependencyInjection\Exception\InvalidArgumentException', $e, '->load() throws an InvalidArgumentException if a tag is missing the name key');
- $this->assertStringStartsWith('A "tags" entry is missing a "name" key for service ', $e->getMessage(), '->load() throws an InvalidArgumentException if a tag is missing the name key');
- }
- }
- public function testTagWithAttributeArrayThrowsException()
- {
- $loader = new YamlFileLoader(new ContainerBuilder(), new FileLocator(self::$fixturesPath.'/yaml'));
- try {
- $loader->load('badtag3.yml');
- $this->fail('->load() should throw an exception when a tag-attribute is not a scalar');
- } catch (\Exception $e) {
- $this->assertInstanceOf('Symfony\Component\DependencyInjection\Exception\InvalidArgumentException', $e, '->load() throws an InvalidArgumentException if a tag-attribute is not a scalar');
- $this->assertStringStartsWith('A "tags" attribute must be of a scalar-type for service "foo_service", tag "foo", attribute "bar"', $e->getMessage(), '->load() throws an InvalidArgumentException if a tag-attribute is not a scalar');
- }
- }
- public function testLoadYamlOnlyWithKeys()
- {
- $container = new ContainerBuilder();
- $loader = new YamlFileLoader($container, new FileLocator(self::$fixturesPath.'/yaml'));
- $loader->load('services21.yml');
- $definition = $container->getDefinition('manager');
- $this->assertEquals(array(array('setLogger', array(new Reference('logger'))), array('setClass', array('User'))), $definition->getMethodCalls());
- $this->assertEquals(array(true), $definition->getArguments());
- $this->assertEquals(array('manager' => array(array('alias' => 'user'))), $definition->getTags());
- }
- /**
- * @expectedException \Symfony\Component\DependencyInjection\Exception\InvalidArgumentException
- * @expectedExceptionMessageRegExp /The tag name for service ".+" in .+ must be a non-empty string/
- */
- public function testTagWithEmptyNameThrowsException()
- {
- $loader = new YamlFileLoader(new ContainerBuilder(), new FileLocator(self::$fixturesPath.'/yaml'));
- $loader->load('tag_name_empty_string.yml');
- }
- /**
- * @expectedException \Symfony\Component\DependencyInjection\Exception\InvalidArgumentException
- * @expectedExceptionMessageREgExp /The tag name for service "\.+" must be a non-empty string/
- */
- public function testTagWithNonStringNameThrowsException()
- {
- $loader = new YamlFileLoader(new ContainerBuilder(), new FileLocator(self::$fixturesPath.'/yaml'));
- $loader->load('tag_name_no_string.yml');
- }
- /**
- * @expectedException \Symfony\Component\DependencyInjection\Exception\InvalidArgumentException
- */
- public function testTypesNotArray()
- {
- $loader = new YamlFileLoader(new ContainerBuilder(), new FileLocator(self::$fixturesPath.'/yaml'));
- $loader->load('bad_types1.yml');
- }
- /**
- * @expectedException \Symfony\Component\DependencyInjection\Exception\InvalidArgumentException
- */
- public function testTypeNotString()
- {
- $loader = new YamlFileLoader(new ContainerBuilder(), new FileLocator(self::$fixturesPath.'/yaml'));
- $loader->load('bad_types2.yml');
- }
- public function testTypes()
- {
- $container = new ContainerBuilder();
- $loader = new YamlFileLoader($container, new FileLocator(self::$fixturesPath.'/yaml'));
- $loader->load('services22.yml');
- $this->assertEquals(array('Foo', 'Bar'), $container->getDefinition('foo_service')->getAutowiringTypes());
- $this->assertEquals(array('Foo'), $container->getDefinition('baz_service')->getAutowiringTypes());
- }
- public function testAutowire()
- {
- $container = new ContainerBuilder();
- $loader = new YamlFileLoader($container, new FileLocator(self::$fixturesPath.'/yaml'));
- $loader->load('services23.yml');
- $this->assertTrue($container->getDefinition('bar_service')->isAutowired());
- }
- /**
- * @expectedException \Symfony\Component\DependencyInjection\Exception\InvalidArgumentException
- * @expectedExceptionMessage The value of the "decorates" option for the "bar" service must be the id of the service without the "@" prefix (replace "@foo" with "foo").
- */
- public function testDecoratedServicesWithWrongSyntaxThrowsException()
- {
- $loader = new YamlFileLoader(new ContainerBuilder(), new FileLocator(self::$fixturesPath.'/yaml'));
- $loader->load('bad_decorates.yml');
- }
- }
|