You are here

class InlineServiceDefinitionsPassTest in Service Container 7.2

Same name and namespace in other branches
  1. 7 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Compiler/InlineServiceDefinitionsPassTest.php \Symfony\Component\DependencyInjection\Tests\Compiler\InlineServiceDefinitionsPassTest

Hierarchy

  • class \Symfony\Component\DependencyInjection\Tests\Compiler\InlineServiceDefinitionsPassTest extends \Symfony\Component\DependencyInjection\Tests\Compiler\PHPUnit_Framework_TestCase

Expanded class hierarchy of InlineServiceDefinitionsPassTest

File

modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Compiler/InlineServiceDefinitionsPassTest.php, line 22

Namespace

Symfony\Component\DependencyInjection\Tests\Compiler
View source
class InlineServiceDefinitionsPassTest extends \PHPUnit_Framework_TestCase {
  public function testProcess() {
    $container = new ContainerBuilder();
    $container
      ->register('inlinable.service')
      ->setPublic(false);
    $container
      ->register('service')
      ->setArguments(array(
      new Reference('inlinable.service'),
    ));
    $this
      ->process($container);
    $arguments = $container
      ->getDefinition('service')
      ->getArguments();
    $this
      ->assertInstanceOf('Symfony\\Component\\DependencyInjection\\Definition', $arguments[0]);
    $this
      ->assertSame($container
      ->getDefinition('inlinable.service'), $arguments[0]);
  }
  public function testProcessDoesNotInlineWhenAliasedServiceIsNotOfPrototypeScope() {
    $container = new ContainerBuilder();
    $container
      ->register('foo')
      ->setPublic(false);
    $container
      ->setAlias('moo', 'foo');
    $container
      ->register('service')
      ->setArguments(array(
      $ref = new Reference('foo'),
    ));
    $this
      ->process($container);
    $arguments = $container
      ->getDefinition('service')
      ->getArguments();
    $this
      ->assertSame($ref, $arguments[0]);
  }
  public function testProcessDoesInlineServiceOfPrototypeScope() {
    $container = new ContainerBuilder();
    $container
      ->register('foo')
      ->setScope('prototype');
    $container
      ->register('bar')
      ->setPublic(false)
      ->setScope('prototype');
    $container
      ->setAlias('moo', 'bar');
    $container
      ->register('service')
      ->setArguments(array(
      new Reference('foo'),
      $ref = new Reference('moo'),
      new Reference('bar'),
    ));
    $this
      ->process($container);
    $arguments = $container
      ->getDefinition('service')
      ->getArguments();
    $this
      ->assertEquals($container
      ->getDefinition('foo'), $arguments[0]);
    $this
      ->assertNotSame($container
      ->getDefinition('foo'), $arguments[0]);
    $this
      ->assertSame($ref, $arguments[1]);
    $this
      ->assertEquals($container
      ->getDefinition('bar'), $arguments[2]);
    $this
      ->assertNotSame($container
      ->getDefinition('bar'), $arguments[2]);
  }
  public function testProcessInlinesIfMultipleReferencesButAllFromTheSameDefinition() {
    $container = new ContainerBuilder();
    $a = $container
      ->register('a')
      ->setPublic(false);
    $b = $container
      ->register('b')
      ->addArgument(new Reference('a'))
      ->addArgument(new Definition(null, array(
      new Reference('a'),
    )));
    $this
      ->process($container);
    $arguments = $b
      ->getArguments();
    $this
      ->assertSame($a, $arguments[0]);
    $inlinedArguments = $arguments[1]
      ->getArguments();
    $this
      ->assertSame($a, $inlinedArguments[0]);
  }
  public function testProcessInlinesPrivateFactoryReference() {
    $container = new ContainerBuilder();
    $container
      ->register('a')
      ->setPublic(false);
    $b = $container
      ->register('b')
      ->setPublic(false)
      ->setFactory(array(
      new Reference('a'),
      'a',
    ));
    $container
      ->register('foo')
      ->setArguments(array(
      $ref = new Reference('b'),
    ));
    $this
      ->process($container);
    $inlinedArguments = $container
      ->getDefinition('foo')
      ->getArguments();
    $this
      ->assertSame($b, $inlinedArguments[0]);
  }
  public function testProcessDoesNotInlinePrivateFactoryIfReferencedMultipleTimesWithinTheSameDefinition() {
    $container = new ContainerBuilder();
    $container
      ->register('a');
    $container
      ->register('b')
      ->setPublic(false)
      ->setFactory(array(
      new Reference('a'),
      'a',
    ));
    $container
      ->register('foo')
      ->setArguments(array(
      $ref1 = new Reference('b'),
      $ref2 = new Reference('b'),
    ));
    $this
      ->process($container);
    $args = $container
      ->getDefinition('foo')
      ->getArguments();
    $this
      ->assertSame($ref1, $args[0]);
    $this
      ->assertSame($ref2, $args[1]);
  }
  public function testProcessDoesNotInlineReferenceWhenUsedByInlineFactory() {
    $container = new ContainerBuilder();
    $container
      ->register('a');
    $container
      ->register('b')
      ->setPublic(false)
      ->setFactory(array(
      new Reference('a'),
      'a',
    ));
    $inlineFactory = new Definition();
    $inlineFactory
      ->setPublic(false);
    $inlineFactory
      ->setFactory(array(
      new Reference('b'),
      'b',
    ));
    $container
      ->register('foo')
      ->setArguments(array(
      $ref = new Reference('b'),
      $inlineFactory,
    ));
    $this
      ->process($container);
    $args = $container
      ->getDefinition('foo')
      ->getArguments();
    $this
      ->assertSame($ref, $args[0]);
  }
  public function testProcessInlinesOnlyIfSameScope() {
    $container = new ContainerBuilder();
    $container
      ->addScope(new Scope('foo'));
    $a = $container
      ->register('a')
      ->setPublic(false)
      ->setScope('foo');
    $b = $container
      ->register('b')
      ->addArgument(new Reference('a'));
    $this
      ->process($container);
    $arguments = $b
      ->getArguments();
    $this
      ->assertEquals(new Reference('a'), $arguments[0]);
    $this
      ->assertTrue($container
      ->hasDefinition('a'));
  }
  public function testProcessDoesNotInlineWhenServiceIsPrivateButLazy() {
    $container = new ContainerBuilder();
    $container
      ->register('foo')
      ->setPublic(false)
      ->setLazy(true);
    $container
      ->register('service')
      ->setArguments(array(
      $ref = new Reference('foo'),
    ));
    $this
      ->process($container);
    $arguments = $container
      ->getDefinition('service')
      ->getArguments();
    $this
      ->assertSame($ref, $arguments[0]);
  }
  public function testProcessDoesNotInlineWhenServiceReferencesItself() {
    $container = new ContainerBuilder();
    $container
      ->register('foo')
      ->setPublic(false)
      ->addMethodCall('foo', array(
      $ref = new Reference('foo'),
    ));
    $this
      ->process($container);
    $calls = $container
      ->getDefinition('foo')
      ->getMethodCalls();
    $this
      ->assertSame($ref, $calls[0][1][0]);
  }
  protected function process(ContainerBuilder $container) {
    $repeatedPass = new RepeatedPass(array(
      new AnalyzeServiceReferencesPass(),
      new InlineServiceDefinitionsPass(),
    ));
    $repeatedPass
      ->process($container);
  }

}

Members