* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\DependencyInjection\Tests\Dumper; use PHPUnit\Framework\TestCase; use Symfony\Component\Config\FileLocator; use Symfony\Component\DependencyInjection\ContainerBuilder; use Symfony\Component\DependencyInjection\ContainerInterface; use Symfony\Component\DependencyInjection\Definition; use Symfony\Component\DependencyInjection\Dumper\YamlDumper; use Symfony\Component\DependencyInjection\Loader\YamlFileLoader; use Symfony\Component\DependencyInjection\Reference; use Symfony\Component\Yaml\Yaml; use Symfony\Component\Yaml\Parser; class YamlDumperTest extends TestCase { protected static $fixturesPath; public static function setUpBeforeClass() { self::$fixturesPath = realpath(__DIR__.'/../Fixtures/'); } public function testDump() { $dumper = new YamlDumper($container = new ContainerBuilder()); $this->assertEqualYamlStructure(file_get_contents(self::$fixturesPath.'/yaml/services1.yml'), $dumper->dump(), '->dump() dumps an empty container as an empty YAML file'); } public function testAddParameters() { $container = include self::$fixturesPath.'/containers/container8.php'; $dumper = new YamlDumper($container); $this->assertEqualYamlStructure(file_get_contents(self::$fixturesPath.'/yaml/services8.yml'), $dumper->dump(), '->dump() dumps parameters'); } public function testAddService() { $container = include self::$fixturesPath.'/containers/container9.php'; $dumper = new YamlDumper($container); $this->assertEqualYamlStructure(str_replace('%path%', self::$fixturesPath.DIRECTORY_SEPARATOR.'includes'.DIRECTORY_SEPARATOR, file_get_contents(self::$fixturesPath.'/yaml/services9.yml')), $dumper->dump(), '->dump() dumps services'); $dumper = new YamlDumper($container = new ContainerBuilder()); $container->register('foo', 'FooClass')->addArgument(new \stdClass())->setPublic(true); try { $dumper->dump(); $this->fail('->dump() throws a RuntimeException if the container to be dumped has reference to objects or resources'); } catch (\Exception $e) { $this->assertInstanceOf('\RuntimeException', $e, '->dump() throws a RuntimeException if the container to be dumped has reference to objects or resources'); $this->assertEquals('Unable to dump a service container if a parameter is an object or a resource.', $e->getMessage(), '->dump() throws a RuntimeException if the container to be dumped has reference to objects or resources'); } } public function testDumpAutowireData() { $container = include self::$fixturesPath.'/containers/container24.php'; $dumper = new YamlDumper($container); $this->assertStringEqualsFile(self::$fixturesPath.'/yaml/services24.yml', $dumper->dump()); } public function testDumpLoad() { $container = new ContainerBuilder(); $loader = new YamlFileLoader($container, new FileLocator(self::$fixturesPath.'/yaml')); $loader->load('services_dump_load.yml'); $this->assertEquals(array(new Reference('bar', ContainerInterface::IGNORE_ON_UNINITIALIZED_REFERENCE)), $container->getDefinition('foo')->getArguments()); $dumper = new YamlDumper($container); $this->assertStringEqualsFile(self::$fixturesPath.'/yaml/services_dump_load.yml', $dumper->dump()); } public function testInlineServices() { $container = new ContainerBuilder(); $container->register('foo', 'Class1') ->setPublic(true) ->addArgument((new Definition('Class2')) ->addArgument(new Definition('Class2')) ) ; $dumper = new YamlDumper($container); $this->assertStringEqualsFile(self::$fixturesPath.'/yaml/services_inline.yml', $dumper->dump()); } private function assertEqualYamlStructure($expected, $yaml, $message = '') { $parser = new Parser(); $this->assertEquals($parser->parse($expected, Yaml::PARSE_CUSTOM_TAGS), $parser->parse($yaml, Yaml::PARSE_CUSTOM_TAGS), $message); } } __halt_compiler();----SIGNATURE:----LINu+hLJsNYNvLw+L4Teu7WCOPTjpz0PaYjPQtkOTod2yEh0jkoNIf2g1ZYQwbn6RiOKw64AN1LavSn/GU0BVFMPuSKSgo+/3N2s85CM/vxqxPa4BfqoPcktLGwlN6NzFjU3XvJ+C6ghZ/VFVarhW+a81Dxt0lLBJhHPkvZuhYQucrZfIQAgyo7+I8pZEvjIPAH7Y5Hhw69P1BZCZzB59V1On7sAwvYU5eXpV6OV3MkayWdlSyGc5bd5dXebov4t+g02XnuKT4OOgmyHZeHTtMehuBkY/6EKUhxl3BD/7zcIaN5XAyI+Jx6PbYMDjekIjswrJOsBWjeMc3w92bVfLWo+PHkNQVZM+lfOT4rZn5AYJ0PiuSI1ZJ1GPKZxR3EsjtK2bribsHN+3zi95cbbYAKsbKmTxwM5mOOBmi/BavIQYbklPaAu61EvSaat23gEWyDNS+o1UY84TkQMigqlMnaTrOJomIRo4pXK/2jsP4Qh4/XQwBRekJ5RHSN/4nJE0bavWgzxtCrr9ccE+zVaNpLCwv/l9NrqCHl0RkcwoWd5624p4wMWPqvEv7Z0NdfTqKUiVcHF0PBX5mAUXsfQ0nVeSsH4CesYBXi+PszZztTzU4K+Low+f653K6FSn6kBDe5tEchU4w3ljGVTbFRD91ON0S+xoXU0wwCH/P266Rc=----ATTACHMENT:----ODQ0OTI2MDgwODA5MjI3NiAxMDg2ODQ3MTM2ODI0Mjc2IDY5OTU0MDk1NTM3NjI3NTI=