| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668 |
- <?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\DependencyInjection\Argument\IteratorArgument;
- use Symfony\Component\DependencyInjection\ContainerBuilder;
- use Symfony\Component\DependencyInjection\Reference;
- use Symfony\Component\DependencyInjection\Loader\XmlFileLoader;
- use Symfony\Component\DependencyInjection\Loader\YamlFileLoader;
- use Symfony\Component\DependencyInjection\Loader\IniFileLoader;
- use Symfony\Component\DependencyInjection\Loader\PhpFileLoader;
- use Symfony\Component\Config\Loader\LoaderResolver;
- use Symfony\Component\Config\FileLocator;
- use Symfony\Component\Config\Resource\FileResource;
- use Symfony\Component\Config\Resource\GlobResource;
- use Symfony\Component\DependencyInjection\Tests\Fixtures\CaseSensitiveClass;
- use Symfony\Component\DependencyInjection\Tests\Fixtures\Prototype;
- use Symfony\Component\DependencyInjection\Tests\Fixtures\NamedArgumentsDummy;
- 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, PHP_INT_MAX), '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, PHP_INT_MAX),
- 'bar' => '%foo%',
- 'escape' => '@escapeme',
- 'foo_bar' => new Reference('foo_bar'),
- 'mixedcase' => array('MixedCaseKey' => 'value'),
- 'imported_from_ini' => true,
- 'imported_from_xml' => true,
- 'with_wrong_ext' => 'from yaml',
- );
- $this->assertEquals(array_keys($expected), array_keys($actual), '->load() imports and merges imported files');
- $this->assertTrue($actual['imported_from_ini']);
- // Bad import throws no exception due to ignore_errors value.
- $loader->load('services4_bad_import.yml');
- }
- 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');
- $this->assertSame(array(null, 'getInstance'), $services['new_factory4']->getFactory(), '->load() accepts factory tag without class');
- $this->assertEquals(array('foo', new Reference('baz')), $services['Acme\WithShortCutArgs']->getArguments(), '->load() parses short service definition');
- $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->assertTrue(isset($aliases['another_third_alias_for_foo']));
- $this->assertEquals('foo', (string) $aliases['another_third_alias_for_foo']);
- $this->assertTrue($aliases['another_third_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 testLoadConfiguratorShortSyntax()
- {
- $container = new ContainerBuilder();
- $loader = new YamlFileLoader($container, new FileLocator(self::$fixturesPath.'/yaml'));
- $loader->load('services_configurator_short_syntax.yml');
- $services = $container->getDefinitions();
- $this->assertEquals(array(new Reference('foo_bar_configurator'), 'configure'), $services['foo_bar']->getConfigurator(), '->load() parses the configurator tag with service:method');
- $this->assertEquals(array('FooBarConfigurator', 'configureFooBar'), $services['foo_bar_with_static_call']->getConfigurator(), '->load() parses the configurator 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 false if the resource is not loadable');
- $this->assertTrue($loader->supports('with_wrong_ext.xml', 'yml'), '->supports() returns true if the resource with forced type is loadable');
- $this->assertTrue($loader->supports('with_wrong_ext.xml', 'yaml'), '->supports() returns true if the resource with forced type 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');
- }
- }
- 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 testNameOnlyTagsAreAllowedAsString()
- {
- $container = new ContainerBuilder();
- $loader = new YamlFileLoader($container, new FileLocator(self::$fixturesPath.'/yaml'));
- $loader->load('tag_name_only.yml');
- $this->assertCount(1, $container->getDefinition('foo_service')->getTag('foo'));
- }
- 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');
- }
- /**
- * @group legacy
- */
- 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 testParsesIteratorArgument()
- {
- $container = new ContainerBuilder();
- $loader = new YamlFileLoader($container, new FileLocator(self::$fixturesPath.'/yaml'));
- $loader->load('services9.yml');
- $lazyDefinition = $container->getDefinition('lazy_context');
- $this->assertEquals(array(new IteratorArgument(array('k1' => new Reference('foo.baz'), 'k2' => new Reference('service_container'))), new IteratorArgument(array())), $lazyDefinition->getArguments(), '->load() parses lazy arguments');
- }
- 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());
- }
- public function testClassFromId()
- {
- $container = new ContainerBuilder();
- $loader = new YamlFileLoader($container, new FileLocator(self::$fixturesPath.'/yaml'));
- $loader->load('class_from_id.yml');
- $container->compile();
- $this->assertEquals(CaseSensitiveClass::class, $container->getDefinition(CaseSensitiveClass::class)->getClass());
- }
- public function testPrototype()
- {
- $container = new ContainerBuilder();
- $loader = new YamlFileLoader($container, new FileLocator(self::$fixturesPath.'/yaml'));
- $loader->load('services_prototype.yml');
- $ids = array_keys($container->getDefinitions());
- sort($ids);
- $this->assertSame(array(Prototype\Foo::class, Prototype\Sub\Bar::class, 'service_container'), $ids);
- $resources = $container->getResources();
- $fixturesDir = dirname(__DIR__).DIRECTORY_SEPARATOR.'Fixtures'.DIRECTORY_SEPARATOR;
- $this->assertTrue(false !== array_search(new FileResource($fixturesDir.'yaml'.DIRECTORY_SEPARATOR.'services_prototype.yml'), $resources));
- $this->assertTrue(false !== array_search(new GlobResource($fixturesDir.'Prototype', '', true), $resources));
- $resources = array_map('strval', $resources);
- $this->assertContains('reflection.Symfony\Component\DependencyInjection\Tests\Fixtures\Prototype\Foo', $resources);
- $this->assertContains('reflection.Symfony\Component\DependencyInjection\Tests\Fixtures\Prototype\Sub\Bar', $resources);
- }
- public function testDefaults()
- {
- $container = new ContainerBuilder();
- $loader = new YamlFileLoader($container, new FileLocator(self::$fixturesPath.'/yaml'));
- $loader->load('services28.yml');
- $this->assertFalse($container->getDefinition('with_defaults')->isPublic());
- $this->assertSame(array('foo' => array(array())), $container->getDefinition('with_defaults')->getTags());
- $this->assertTrue($container->getDefinition('with_defaults')->isAutowired());
- $this->assertArrayNotHasKey('public', $container->getDefinition('with_defaults')->getChanges());
- $this->assertArrayNotHasKey('autowire', $container->getDefinition('with_defaults')->getChanges());
- $this->assertFalse($container->getAlias('with_defaults_aliased')->isPublic());
- $this->assertFalse($container->getAlias('with_defaults_aliased_short')->isPublic());
- $this->assertFalse($container->getDefinition('Acme\WithShortCutArgs')->isPublic());
- $this->assertSame(array('foo' => array(array())), $container->getDefinition('Acme\WithShortCutArgs')->getTags());
- $this->assertTrue($container->getDefinition('Acme\WithShortCutArgs')->isAutowired());
- $container->compile();
- $this->assertTrue($container->getDefinition('with_null')->isPublic());
- $this->assertTrue($container->getDefinition('no_defaults')->isPublic());
- // foo tag is inherited from defaults
- $this->assertSame(array('foo' => array(array())), $container->getDefinition('with_null')->getTags());
- $this->assertSame(array('foo' => array(array())), $container->getDefinition('no_defaults')->getTags());
- $this->assertTrue($container->getDefinition('with_null')->isAutowired());
- $this->assertFalse($container->getDefinition('no_defaults')->isAutowired());
- $this->assertTrue($container->getDefinition('child_def')->isPublic());
- $this->assertSame(array('foo' => array(array())), $container->getDefinition('child_def')->getTags());
- $this->assertFalse($container->getDefinition('child_def')->isAutowired());
- }
- public function testNamedArguments()
- {
- $container = new ContainerBuilder();
- $loader = new YamlFileLoader($container, new FileLocator(self::$fixturesPath.'/yaml'));
- $loader->load('services_named_args.yml');
- $this->assertEquals(array(null, '$apiKey' => 'ABCD'), $container->getDefinition(NamedArgumentsDummy::class)->getArguments());
- $this->assertEquals(array(null, '$apiKey' => 'ABCD'), $container->getDefinition('another_one')->getArguments());
- $container->compile();
- $this->assertEquals(array(null, 'ABCD'), $container->getDefinition(NamedArgumentsDummy::class)->getArguments());
- $this->assertEquals(array(null, 'ABCD'), $container->getDefinition('another_one')->getArguments());
- $this->assertEquals(array(array('setApiKey', array('123'))), $container->getDefinition('another_one')->getMethodCalls());
- }
- public function testInstanceof()
- {
- $container = new ContainerBuilder();
- $loader = new YamlFileLoader($container, new FileLocator(self::$fixturesPath.'/yaml'));
- $loader->load('services_instanceof.yml');
- $container->compile();
- $definition = $container->getDefinition(Foo::class);
- $this->assertTrue($definition->isAutowired());
- $this->assertTrue($definition->isLazy());
- $this->assertSame(array('foo' => array(array()), 'bar' => array(array())), $definition->getTags());
- }
- /**
- * @expectedException \Symfony\Component\DependencyInjection\Exception\InvalidArgumentException
- * @expectedExceptionMessage The service "child_service" cannot use the "parent" option in the same file where "_instanceof" configuration is defined as using both is not supported. Move your child definitions to a separate file.
- */
- public function testInstanceOfAndChildDefinitionNotAllowed()
- {
- $container = new ContainerBuilder();
- $loader = new YamlFileLoader($container, new FileLocator(self::$fixturesPath.'/yaml'));
- $loader->load('services_instanceof_with_parent.yml');
- $container->compile();
- }
- /**
- * @expectedException \Symfony\Component\DependencyInjection\Exception\InvalidArgumentException
- * @expectedExceptionMessage The service "child_service" cannot have a "parent" and also have "autoconfigure". Try setting "autoconfigure: false" for the service.
- */
- public function testAutoConfigureAndChildDefinitionNotAllowed()
- {
- $container = new ContainerBuilder();
- $loader = new YamlFileLoader($container, new FileLocator(self::$fixturesPath.'/yaml'));
- $loader->load('services_autoconfigure_with_parent.yml');
- $container->compile();
- }
- /**
- * @expectedException \Symfony\Component\DependencyInjection\Exception\InvalidArgumentException
- * @expectedExceptionMessage Attribute "autowire" on service "child_service" cannot be inherited from "_defaults" when a "parent" is set. Move your child definitions to a separate file or define this attribute explicitly.
- */
- public function testDefaultsAndChildDefinitionNotAllowed()
- {
- $container = new ContainerBuilder();
- $loader = new YamlFileLoader($container, new FileLocator(self::$fixturesPath.'/yaml'));
- $loader->load('services_defaults_with_parent.yml');
- $container->compile();
- }
- /**
- * @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');
- }
- /**
- * @expectedException \Symfony\Component\DependencyInjection\Exception\InvalidArgumentException
- * @expectedExceptionMessageRegExp /Parameter "tags" must be an array for service "Foo\\Bar" in .+services31_invalid_tags\.yml\. Check your YAML syntax./
- */
- public function testInvalidTagsWithDefaults()
- {
- $loader = new YamlFileLoader(new ContainerBuilder(), new FileLocator(self::$fixturesPath.'/yaml'));
- $loader->load('services31_invalid_tags.yml');
- }
- /**
- * @group legacy
- * @expectedDeprecation Service names that start with an underscore are deprecated since Symfony 3.3 and will be reserved in 4.0. Rename the "_foo" service or define it in XML instead.
- */
- public function testUnderscoreServiceId()
- {
- $container = new ContainerBuilder();
- $loader = new YamlFileLoader($container, new FileLocator(self::$fixturesPath.'/yaml'));
- $loader->load('services_underscore.yml');
- }
- public function testAnonymousServices()
- {
- $container = new ContainerBuilder();
- $loader = new YamlFileLoader($container, new FileLocator(self::$fixturesPath.'/yaml'));
- $loader->load('anonymous_services.yml');
- $definition = $container->getDefinition('Foo');
- $this->assertTrue($definition->isAutowired());
- // Anonymous service in an argument
- $args = $definition->getArguments();
- $this->assertCount(1, $args);
- $this->assertInstanceOf(Reference::class, $args[0]);
- $this->assertTrue($container->has((string) $args[0]));
- $this->assertRegExp('/^\d+_[A-Za-z0-9]{64}$/', (string) $args[0]);
- $anonymous = $container->getDefinition((string) $args[0]);
- $this->assertEquals('Bar', $anonymous->getClass());
- $this->assertFalse($anonymous->isPublic());
- $this->assertTrue($anonymous->isAutowired());
- // Anonymous service in a callable
- $factory = $definition->getFactory();
- $this->assertInternalType('array', $factory);
- $this->assertInstanceOf(Reference::class, $factory[0]);
- $this->assertTrue($container->has((string) $factory[0]));
- $this->assertRegExp('/^\d+_[A-Za-z0-9]{64}$/', (string) $factory[0]);
- $this->assertEquals('constructFoo', $factory[1]);
- $anonymous = $container->getDefinition((string) $factory[0]);
- $this->assertEquals('Quz', $anonymous->getClass());
- $this->assertFalse($anonymous->isPublic());
- $this->assertFalse($anonymous->isAutowired());
- }
- public function testAnonymousServicesInDifferentFilesWithSameNameDoNotConflict()
- {
- $container = new ContainerBuilder();
- $loader = new YamlFileLoader($container, new FileLocator(self::$fixturesPath.'/yaml/foo'));
- $loader->load('services.yml');
- $loader = new YamlFileLoader($container, new FileLocator(self::$fixturesPath.'/yaml/bar'));
- $loader->load('services.yml');
- $this->assertCount(5, $container->getDefinitions());
- }
- public function testAnonymousServicesInInstanceof()
- {
- $container = new ContainerBuilder();
- $loader = new YamlFileLoader($container, new FileLocator(self::$fixturesPath.'/yaml'));
- $loader->load('anonymous_services_in_instanceof.yml');
- $definition = $container->getDefinition('Dummy');
- $instanceof = $definition->getInstanceofConditionals();
- $this->assertCount(3, $instanceof);
- $this->assertArrayHasKey('DummyInterface', $instanceof);
- $args = $instanceof['DummyInterface']->getProperties();
- $this->assertCount(1, $args);
- $this->assertInstanceOf(Reference::class, $args['foo']);
- $this->assertTrue($container->has((string) $args['foo']));
- $anonymous = $container->getDefinition((string) $args['foo']);
- $this->assertEquals('Anonymous', $anonymous->getClass());
- $this->assertFalse($anonymous->isPublic());
- $this->assertEmpty($anonymous->getInstanceofConditionals());
- $this->assertFalse($container->has('Bar'));
- }
- /**
- * @expectedException \Symfony\Component\DependencyInjection\Exception\InvalidArgumentException
- * @expectedExceptionMessageRegExp /Creating an alias using the tag "!service" is not allowed in ".+anonymous_services_alias\.yml"\./
- */
- public function testAnonymousServicesWithAliases()
- {
- $container = new ContainerBuilder();
- $loader = new YamlFileLoader($container, new FileLocator(self::$fixturesPath.'/yaml'));
- $loader->load('anonymous_services_alias.yml');
- }
- /**
- * @expectedException \Symfony\Component\DependencyInjection\Exception\InvalidArgumentException
- * @expectedExceptionMessageRegExp /Using an anonymous service in a parameter is not allowed in ".+anonymous_services_in_parameters\.yml"\./
- */
- public function testAnonymousServicesInParameters()
- {
- $container = new ContainerBuilder();
- $loader = new YamlFileLoader($container, new FileLocator(self::$fixturesPath.'/yaml'));
- $loader->load('anonymous_services_in_parameters.yml');
- }
- public function testAutoConfigureInstanceof()
- {
- $container = new ContainerBuilder();
- $loader = new YamlFileLoader($container, new FileLocator(self::$fixturesPath.'/yaml'));
- $loader->load('services_autoconfigure.yml');
- $this->assertTrue($container->getDefinition('use_defaults_settings')->isAutoconfigured());
- $this->assertFalse($container->getDefinition('override_defaults_settings_to_false')->isAutoconfigured());
- }
- /**
- * @expectedException \Symfony\Component\DependencyInjection\Exception\InvalidArgumentException
- * @expectedExceptionMessageRegExp /Service "_defaults" key must be an array, "NULL" given in ".+bad_empty_defaults\.yml"\./
- */
- public function testEmptyDefaultsThrowsClearException()
- {
- $container = new ContainerBuilder();
- $loader = new YamlFileLoader($container, new FileLocator(self::$fixturesPath.'/yaml'));
- $loader->load('bad_empty_defaults.yml');
- }
- /**
- * @expectedException \Symfony\Component\DependencyInjection\Exception\InvalidArgumentException
- * @expectedExceptionMessageRegExp /Service "_instanceof" key must be an array, "NULL" given in ".+bad_empty_instanceof\.yml"\./
- */
- public function testEmptyInstanceofThrowsClearException()
- {
- $container = new ContainerBuilder();
- $loader = new YamlFileLoader($container, new FileLocator(self::$fixturesPath.'/yaml'));
- $loader->load('bad_empty_instanceof.yml');
- }
- }
- interface FooInterface
- {
- }
- class Foo implements FooInterface
- {
- }
|