123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- <?php
- /*
- * This file is part of the Symfony package.
- * (c) Fabien Potencier <fabien.potencier@symfony-project.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Symfony\Tests\Component\DependencyInjection\Dumper;
- use Symfony\Component\DependencyInjection\ContainerBuilder;
- use Symfony\Component\DependencyInjection\Dumper\PhpDumper;
- use Symfony\Component\DependencyInjection\ParameterBag\ParameterBag;
- use Symfony\Component\DependencyInjection\Reference;
- use Symfony\Component\DependencyInjection\InterfaceInjector;
- class PhpDumperTest extends \PHPUnit_Framework_TestCase
- {
- static protected $fixturesPath;
- static public function setUpBeforeClass()
- {
- self::$fixturesPath = realpath(__DIR__.'/../Fixtures/');
- }
- public function testDump()
- {
- $dumper = new PhpDumper($container = new ContainerBuilder());
- $this->assertStringEqualsFile(self::$fixturesPath.'/php/services1.php', $dumper->dump(), '->dump() dumps an empty container as an empty PHP class');
- $this->assertStringEqualsFile(self::$fixturesPath.'/php/services1-1.php', $dumper->dump(array('class' => 'Container', 'base_class' => 'AbstractContainer')), '->dump() takes a class and a base_class options');
- $container = new ContainerBuilder();
- $dumper = new PhpDumper($container);
- }
- /**
- * @expectedException InvalidArgumentException
- */
- public function testExportParameters()
- {
- $dumper = new PhpDumper($container = new ContainerBuilder(new ParameterBag(array('foo' => new Reference('foo')))));
- $dumper->dump();
- }
- public function testAddParameters()
- {
- $container = include self::$fixturesPath.'/containers/container8.php';
- $dumper = new PhpDumper($container);
- $this->assertStringEqualsFile(self::$fixturesPath.'/php/services8.php', $dumper->dump(), '->dump() dumps parameters');
- }
- public function testAddService()
- {
- $container = include self::$fixturesPath.'/containers/container9.php';
- $dumper = new PhpDumper($container);
- $this->assertEquals(str_replace('%path%', str_replace('\\','\\\\',self::$fixturesPath.DIRECTORY_SEPARATOR.'includes'.DIRECTORY_SEPARATOR), file_get_contents(self::$fixturesPath.'/php/services9.php')), $dumper->dump(), '->dump() dumps services');
- $dumper = new PhpDumper($container = new ContainerBuilder());
- $container->register('foo', 'FooClass')->addArgument(new \stdClass());
- 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() returns a LogicException if the dump() method has not been overriden by a children class');
- $this->assertEquals('Unable to dump a service container if a parameter is an object or a resource.', $e->getMessage(), '->dump() returns a LogicException if the dump() method has not been overriden by a children class');
- }
- }
- public function testOverrideServiceWhenUsingADumpedContainer()
- {
- require_once self::$fixturesPath.'/php/services9.php';
- require_once self::$fixturesPath.'/includes/foo.php';
- $container = new \ProjectServiceContainer();
- $container->set('bar', $bar = new \stdClass());
- $container->setParameter('foo_bar', 'foo_bar');
- $this->assertEquals($bar, $container->get('bar'), '->set() overrides an already defined service');
- }
- public function testOverrideServiceWhenUsingADumpedContainerAndServiceIsUsedFromAnotherOne()
- {
- require_once self::$fixturesPath.'/php/services9.php';
- require_once self::$fixturesPath.'/includes/foo.php';
- require_once self::$fixturesPath.'/includes/classes.php';
- $container = new \ProjectServiceContainer();
- $container->set('bar', $bar = new \stdClass());
- $this->assertSame($bar, $container->get('foo')->bar, '->set() overrides an already defined service');
- }
- public function testInterfaceInjectors()
- {
- $interfaceInjector = new InterfaceInjector('FooClass');
- $interfaceInjector->addMethodCall('setBar', array('someValue'));
- $container = include self::$fixturesPath.'/containers/interfaces1.php';
- $container->addInterfaceInjector($interfaceInjector);
- $dumper = new PhpDumper($container);
- $this->assertStringEqualsFile(self::$fixturesPath.'/php/services_interfaces-1.php', $dumper->dump(), '->dump() dumps interface injectors');
- }
- public function testInterfaceInjectorsAndServiceFactories()
- {
- $interfaceInjector = new InterfaceInjector('BarClass');
- $interfaceInjector->addMethodCall('setFoo', array('someValue'));
- $container = include self::$fixturesPath.'/containers/interfaces2.php';
- $container->addInterfaceInjector($interfaceInjector);
- $dumper = new PhpDumper($container);
- $this->assertStringEqualsFile(self::$fixturesPath.'/php/services_interfaces-2.php', $dumper->dump(), '->dump() dumps interface injectors');
- }
- public function testFrozenContainerInterfaceInjectors()
- {
- $interfaceInjector = new InterfaceInjector('FooClass');
- $interfaceInjector->addMethodCall('setBar', array('someValue'));
- $container = include self::$fixturesPath.'/containers/interfaces1.php';
- $container->addInterfaceInjector($interfaceInjector);
- $container->freeze();
- $dumper = new PhpDumper($container);
- file_put_contents(self::$fixturesPath.'/php/services_interfaces-1-1.php', $dumper->dump());
- $this->assertStringEqualsFile(self::$fixturesPath.'/php/services_interfaces-1-1.php', $dumper->dump(), '->dump() dumps interface injectors');
- }
- }
|